📄 datasequence.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -