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

water.api.H2OModelBuilderErrorV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;


import water.H2OModelBuilderError;

/**
 * Schema which represents a back-end error from the model building process which will be
 * returned to the client.  Such errors may be caused by the user (specifying bad mode
 * building parameters) or due to a failure which is out of the user's control.
 *
 * 

NOTE: parameters, validation_messages and error_count are in the schema in two * places. This is intentional, so that a client can handle it like any other H2OErrorV1 * by just rendering the values map, or like ModelBuilderSchema by looking at those fields * directly. * @see ModelBuilderJobV3 */ public class H2OModelBuilderErrorV3 extends H2OErrorV3 implements SpecifiesHttpResponseCode { @API(help="Model builder parameters.", direction = API.Direction.OUTPUT) public ModelParametersSchema parameters; @API(help="Parameter validation messages", direction=API.Direction.OUTPUT) public ValidationMessageV3 messages[]; @API(help="Count of parameter validation errors", direction=API.Direction.OUTPUT) public int error_count; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy