本文整理汇总了Java中cc.mallet.fst.FeatureTransducer.addState方法的典型用法代码示例。如果您正苦于以下问题:Java FeatureTransducer.addState方法的具体用法?Java FeatureTransducer.addState怎么用?Java FeatureTransducer.addState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cc.mallet.fst.FeatureTransducer
的用法示例。
在下文中一共展示了FeatureTransducer.addState方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import cc.mallet.fst.FeatureTransducer; //导入方法依赖的package包/类
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"});
seq = new ArrayListSequence ();
Alphabet dict = transducer.getInputAlphabet ();
seq.add ("a");
seq.add ("a");
seq.add ("b");
seq.add ("c");
seq.add ("d");
seq.add ("e");
seqWeight = 0 + 44 + 44 + 66 + 44 + 66 + 11 + 8;
}