Package cc.mallet.fst

Examples of cc.mallet.fst.FeatureTransducer


  double seqWeight;

  public void setUp ()
  {
    System.out.println ("Setup");
    transducer = new FeatureTransducer ();
    FeatureTransducer t = transducer;
    t.addState ("0", 0, Transducer.IMPOSSIBLE_WEIGHT,
                new String[] {"a", "b"},
                new String[] {"x", "y"},
                new double[] {44, 66},
                new String[] {"0", "1"});
    t.addState ("1", Transducer.IMPOSSIBLE_WEIGHT, Transducer.IMPOSSIBLE_WEIGHT,
                new String[] {"c", "d", "d"},
                new String[] {"x", "y", "z"},
                new double[] {44, 11, 66},
                new String[] {"1", "1", "2"});
    t.addState ("2", Transducer.IMPOSSIBLE_WEIGHT, 8,
                new String[] {"e"},
                new String[] {"z"},
                new double[] {11},
                new String[] {"2"});
View Full Code Here

TOP

Related Classes of cc.mallet.fst.FeatureTransducer

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.