All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gr.demokritos.iit.jinsect.structs.IDocumentSet Maven / Gradle / Ivy

Go to download

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