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

📄 tokeninstanceoccurrence.java

📁 wekaUT是 university texas austin 开发的基于weka的半指导学习(semi supervised learning)的分类器
💻 JAVA
字号:
package weka.deduping.blocking;/** A lightweight object for storing information about an occurrence of a token (a.k.a word, term) * in a record. * * @author Ray Mooney */public class TokenInstanceOccurrence {    /** A reference to the Document where it occurs */    public InstanceReference instanceRef = null;    /** The number of times it occurs in the Document */    public int count = 0;    /** Create an occurrence with these values */    public TokenInstanceOccurrence(InstanceReference instanceRef, int count) {	this.instanceRef = instanceRef;	this.count = count;    }}

⌨️ 快捷键说明

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