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

com.enterprisemath.math.prediction.CategoryPredictor Maven / Gradle / Ivy

The newest version!
package com.enterprisemath.math.prediction;

import java.util.List;

/**
 * Interface which can predict categories.
 * 
 * @author radek.hecl
 */
public interface CategoryPredictor {

    /**
     * Returns predicted category for the given observation.
     * 
     * @param observations input observations
     * @return result after category prediction
     */
    public CategoryPredictionResult predictCategory(List observations);
}