Package com.sun.speech.freetts.en

Examples of com.sun.speech.freetts.en.PartOfSpeechTagger


      (getResource("prefix_fsm.txt"));
  PronounceableFSM suffixFSM = new SuffixFSM
      (getResource("suffix_fsm.txt"));
       
  processors.add(new TokenToWords(numbersCart, prefixFSM, suffixFSM));
  processors.add(new PartOfSpeechTagger());
  processors.add(new Phraser(phrasingCart));
  processors.add(new Segmenter());
  processors.add(new PauseGenerator());
  processors.add(new Intonator(accentCart, toneCart));
  processors.add(getPostLexicalAnalyzer());
View Full Code Here

TOP

Related Classes of com.sun.speech.freetts.en.PartOfSpeechTagger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.