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

hex.genmodel.algos.rulefit.MojoRule Maven / Gradle / Ivy

There is a newer version: 3.46.0.5
Show newest version
package hex.genmodel.algos.rulefit;

import java.io.Serializable;

public class MojoRule implements Serializable {
    MojoCondition[] _conditions;
    double _predictionValue;
    String _languageRule;
    double _coefficient;
    String _varName;
    double _support;

    public void map(double[] cs, byte[] out) {
        for (MojoCondition c : _conditions) {
            c.map(cs, out);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy