public class ModelOutputSchema<O extends Model.Output,S extends ModelOutputSchema<O,S>> extends Schema<O,S>
Schema.Meta
Modifier and Type | Field and Description |
---|---|
KeyV3.FrameKeyV3 |
cross_validation_fold_assignment_frame_id |
KeyV3.FrameKeyV3 |
cross_validation_holdout_predictions_frame_id |
KeyV3.ModelKeyV3[] |
cross_validation_models |
KeyV3.FrameKeyV3[] |
cross_validation_predictions |
java.lang.String[][] |
domains |
long |
end_time |
IcedHashMap.IcedHashMapStringString |
help |
hex.ModelCategory |
model_category |
java.lang.String[] |
names |
long |
run_time |
long |
start_time |
java.lang.String |
status |
Constructor and Description |
---|
ModelOutputSchema() |
Modifier and Type | Method and Description |
---|---|
S |
fillFromImpl(O impl)
Fill this Schema from the given implementation object.
|
createAndFillImpl, createImpl, fillFromParms, fillFromParms, fillImpl, get__meta, getExperimentalVersion, getHighestSupportedVersion, getImplClass, getImplClass, getLatestVersion, getSchemaVersion, init_meta, markdown, markdown, newInstance, newInstance, registerAllSchemasIfNecessary, schema, schema, schemaClass, schemaClass, schemas, setField
asBytes, clone, copyOver, frozenType, read, readExternal, readJSON, reloadFromBytes, toJsonString, write, writeExternal, writeJSON
@API(help="Domains for categorical columns", direction=OUTPUT, level=expert) public java.lang.String[][] domains
@API(help="Cross-validation models (model ids)", direction=OUTPUT, level=expert) public KeyV3.ModelKeyV3[] cross_validation_models
@API(help="Cross-validation predictions, one per cv model (deprecated, use cross_validation_holdout_predictions_frame_id instead)", direction=OUTPUT, level=expert) public KeyV3.FrameKeyV3[] cross_validation_predictions
@API(help="Cross-validation holdout predictions (full out-of-sample predictions on training data)", direction=OUTPUT, level=expert) public KeyV3.FrameKeyV3 cross_validation_holdout_predictions_frame_id
@API(help="Cross-validation fold assignment (each row is assigned to one holdout fold)", direction=OUTPUT, level=expert) public KeyV3.FrameKeyV3 cross_validation_fold_assignment_frame_id
@API(help="Category of the model (e.g., Binomial)", values={"Unknown","Binomial","Multinomial","Regression","Clustering","AutoEncoder","DimReduction"}, direction=OUTPUT) public hex.ModelCategory model_category
@API(help="Start time in milliseconds", direction=OUTPUT, level=secondary) public long start_time
@API(help="End time in milliseconds", direction=OUTPUT, level=secondary) public long end_time
@API(help="Runtime in milliseconds", direction=OUTPUT, level=secondary) public long run_time
@API(help="Help information for output fields", direction=OUTPUT) public IcedHashMap.IcedHashMapStringString help
public S fillFromImpl(O impl)
Schema
fillFromImpl
in class Schema<O extends Model.Output,S extends ModelOutputSchema<O,S>>