gov.sandia.cognition.learning.function.regression.AbstractRegressor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognitive-foundry Show documentation
Show all versions of cognitive-foundry Show documentation
A single jar with all the Cognitive Foundry components.
/*
* File: AbstractRegressor.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.AbstractScalarFunction;
/**
* An abstract implementation of the {@code Regressor} interface.
*
* @param
* The type of the input to the regressor.
* @author Justin Basilico
* @since 3.3.3
*/
public abstract class AbstractRegressor
extends AbstractScalarFunction
{
/**
* Creates a new {@code AbstractRegressor}.
*/
public AbstractRegressor()
{
super();
}
}