
gr.demokritos.iit.jinsect.structs.IDocumentSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JInsect Show documentation
Show all versions of JInsect Show documentation
The JINSECT toolkit is a Java-based toolkit and library that supports and demonstrates the use of n-gram graphs within Natural Language Processing applications, ranging from summarization and summary evaluation to text classification and indexing.
The newest version!
/*
* IDocumentSet.java
*
* Created on July 13, 2007, 5:12 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package gr.demokritos.iit.jinsect.structs;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author ggianna
*/
public interface IDocumentSet {
public List getCategories();
public void createSets();
public ArrayList getFilesFromCategory(String sCategoryName);
public ArrayList getTrainingSet();
public ArrayList getTestSet();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy