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

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

There is a newer version: 4.0.1
Show newest version
/*
 * 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();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy