datasequence.java

来自「CRF分类器,是一个很好的研究工具.用于中文信息处理的很好的工具」· Java 代码 · 共 16 行

JAVA
16
字号
package iitb.CRF;/** * A basic training/test instance needs to support the DataSequence interface. * @author Sunita Sarawagi * */ public interface DataSequence {    public int length();    public int y(int i);    /** The type of x is never interpreted by the CRF package. This could be useful for your FeatureGenerator class */     public Object x(int i);    public void set_y(int i, int label);};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?