本文整理了Java中cc.mallet.types.Instance.clearSource()
方法的一些代码示例,展示了Instance.clearSource()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Instance.clearSource()
方法的具体详情如下:
包路径:cc.mallet.types.Instance
类名称:Instance
方法名:clearSource
暂无
代码示例来源:origin: cc.mallet/mallet
/** Sets the "source" field to <code>null</code> in all instances. This will often save memory when
the raw data had been placed in that field. */
public void removeSources()
{
for (int i = 0; i < this.size(); i++)
get(i).clearSource();
}
代码示例来源:origin: de.julielab/jcore-mallet-2.0.9
/** Sets the "source" field to <code>null</code> in all instances. This will often save memory when
the raw data had been placed in that field. */
public void removeSources()
{
for (int i = 0; i < this.size(); i++)
get(i).clearSource();
}
代码示例来源:origin: com.github.steveash.mallet/mallet
/** Sets the "source" field to <code>null</code> in all instances. This will often save memory when
the raw data had been placed in that field. */
public void removeSources()
{
for (int i = 0; i < this.size(); i++)
get(i).clearSource();
}
内容来源于网络,如有侵权,请联系作者删除!