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

water.bindings.pojos.ModelMetricsRegressionGLMV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.11
Show newest version
package water.bindings.pojos;

import com.google.gson.Gson;
public class ModelMetricsRegressionGLMV3 extends ModelMetricsRegressionV3 {
    /** residual deviance */
    public double residual_deviance;

    /** null deviance */
    public double null_deviance;

    /** AIC */
    public double AIC;

    /** null DOF */
    public long null_degrees_of_freedom;

    /** residual DOF */
    public long residual_degrees_of_freedom;

    /* INHERITED: The R^2 for this scoring run. 
     * public double r2;
     */

    /* INHERITED: The mean residual deviance for this scoring run. 
     * public double mean_residual_deviance;
     */

    /* INHERITED: The model used for this scoring run. 
     * public ModelKeyV3 model;
     */

    /* INHERITED: The checksum for the model used for this scoring run. 
     * public long model_checksum;
     */

    /* INHERITED: The frame used for this scoring run. 
     * public FrameKeyV3 frame;
     */

    /* INHERITED: The checksum for the frame used for this scoring run. 
     * public long frame_checksum;
     */

    /* INHERITED: Optional description for this scoring run (to note out-of-bag, sampled data, etc.) 
     * public String description;
     */

    /* INHERITED: The category (e.g., Clustering) for the model used for this scoring run. 
     * public ModelCategory model_category;
     */

    /* INHERITED: The time in mS since the epoch for the start of this scoring run. 
     * public long scoring_time;
     */

    /* INHERITED: Predictions Frame. 
     * public FrameV3 predictions;
     */

    /* INHERITED: The Mean Squared Error of the prediction for this scoring run. 
     * public double MSE;
     */

    /** Return the contents of this object as a JSON String. */
    @Override
    public String toString() {
        return new Gson().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy