Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

unicode - Using Markov models to convert all-caps to mixed-case and related problems -


i've been thinking using markov techniques restore missing information natural language text.

  • restore all-caps text mixed-case.
  • restore accents / diacritics languages should have them have been converted plain ascii.
  • convert rough phonetic transcriptions native alphabets.

that seems in order of least difficult difficult. problem resolving ambiguities based on context.

i can use wiktionary dictionary , wikipedia corpus using n-grams , hidden markov models resolve ambiguities.

am on right track? there services, libraries, or tools sort of thing?

examples

  • george lost sim card in bush   ⇨   george lost sim card in bush
  • tantot il rit gorge deployee   ⇨   tantôt il rit à gorge déployée

i think can use markov models (hmms) 3 tasks, take @ more modern models such conditional random fields (crfs). also, here's boost google-fu:

  • restore mixed case text in caps

this called truecasing.

  • restore accents / diacritics languages should have them have been converted plain ascii

i suspect markov models going have hard time on this. otoh, labelled training data free since can take bunch of accented text in target language , strip accents. see next answer.

  • convert rough phonetic transcriptions native alphabets

this seems related machine transliteration, has been tried using pair hmms (from bioinformatics/genome work).


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -