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

gov.sandia.cognition.learning.function.regression.Regressor Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * File:            Regressor.java
 * Authors:         Justin Basilico
 * Project:         Cognitive Foundry Learning Core
 * 
 * Copyright 2011 Cognitive Foundry. All rights reserved.
 */

package gov.sandia.cognition.learning.function.regression;

import gov.sandia.cognition.math.ScalarFunction;

/**
 * Defines the functionality of a regression function, which is the model
 * created by regression algorithms. It produces a scalar value as the result
 * of evaluating an input. This class primarily defines a convenience method
 * that helps avoid the creation of new Double objects when using regression
 * functions.
 *
 * @param   
 *      The type of the input to the regressor.
 * @author  Justin Basilico
 * @since   3.3.3
 */
public interface Regressor
    extends ScalarFunction
{
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy