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

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

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

import com.google.gson.Gson;
import java.util.Map;


public class GridSearchSchema extends Schema {
    /** Basic model builder parameters. */
    public ModelParametersSchema parameters;

    /** Grid search parameters. */
    public Map hyper_parameters;

    /** Destination id for this grid; auto-generated if not specified. */
    public GridKeyV3 grid_id;

    /** Hyperparameter search criteria, including strategy and early stopping directives.  If it is not given, exhaustive Cartesian is used. */
    public HyperSpaceSearchCriteriaV99 search_criteria;

    /** Number of all models generated by grid search. */
    public int total_models;

    /** Job Key. */
    public JobV3 job;

    public GridSearchSchema() {
        parameters = null;
        hyper_parameters = null;
        grid_id = null;
        search_criteria = null;
        total_models = 0;
        job = null;
    }

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