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

water.bindings.pojos.ModelMetricsBase 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 ModelMetricsBase extends Schema {
    /** The model used for this scoring run. */
    public ModelKeyV3 model;

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

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

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

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

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

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

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

    /** 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