⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datasequence.java

📁 CRF1.2
💻 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 + -