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

ml.regression.NonLinearRegressor Maven / Gradle / Ivy

The newest version!
package ml.regression;

import datasets.DenseMatrixSet;
import maths.functions.NonLinearVectorPolynomial;
import maths.functions.ScalarMonomial;

public class NonLinearRegressor> extends RegressorBase {

    /**
     * Constructor
     */
    public NonLinearRegressor(ScalarMonomial...terms){
        super(new NonLinearVectorPolynomial(terms));
    }

    /**
     * Constructor
     */
    public NonLinearRegressor(NonLinearVectorPolynomial hypothesis){
        super(hypothesis);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy