public interface Predictions
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<ModelMetricsListSchemaV3> |
predict(java.lang.String model,
java.lang.String frame,
java.lang.String predictions_frame,
boolean reconstruction_error,
boolean reconstruction_error_per_feature,
int deep_features_hidden_layer,
boolean reconstruct_train,
boolean project_archetypes,
boolean reverse_transform,
boolean leaf_node_assignment,
int exemplar_index,
java.lang.String _exclude_fields)
Score (generate predictions) for the specified Frame with the specified Model.
|
retrofit2.Call<JobV3> |
predict2(java.lang.String model,
java.lang.String frame,
java.lang.String predictions_frame,
boolean reconstruction_error,
boolean reconstruction_error_per_feature,
int deep_features_hidden_layer,
boolean reconstruct_train,
boolean project_archetypes,
boolean reverse_transform,
boolean leaf_node_assignment,
int exemplar_index,
java.lang.String _exclude_fields)
Score (generate predictions) for the specified Frame with the specified Model.
|
@FormUrlEncoded
@POST(value="/3/Predictions/models/{model}/frames/{frame}")
retrofit2.Call<ModelMetricsListSchemaV3> predict(@Path(value="model")
java.lang.String model,
@Path(value="frame")
java.lang.String frame,
@Field(value="predictions_frame")
java.lang.String predictions_frame,
@Field(value="reconstruction_error")
boolean reconstruction_error,
@Field(value="reconstruction_error_per_feature")
boolean reconstruction_error_per_feature,
@Field(value="deep_features_hidden_layer")
int deep_features_hidden_layer,
@Field(value="reconstruct_train")
boolean reconstruct_train,
@Field(value="project_archetypes")
boolean project_archetypes,
@Field(value="reverse_transform")
boolean reverse_transform,
@Field(value="leaf_node_assignment")
boolean leaf_node_assignment,
@Field(value="exemplar_index")
int exemplar_index,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
@FormUrlEncoded
@POST(value="/4/Predictions/models/{model}/frames/{frame}")
retrofit2.Call<JobV3> predict2(@Path(value="model")
java.lang.String model,
@Path(value="frame")
java.lang.String frame,
@Field(value="predictions_frame")
java.lang.String predictions_frame,
@Field(value="reconstruction_error")
boolean reconstruction_error,
@Field(value="reconstruction_error_per_feature")
boolean reconstruction_error_per_feature,
@Field(value="deep_features_hidden_layer")
int deep_features_hidden_layer,
@Field(value="reconstruct_train")
boolean reconstruct_train,
@Field(value="project_archetypes")
boolean project_archetypes,
@Field(value="reverse_transform")
boolean reverse_transform,
@Field(value="leaf_node_assignment")
boolean leaf_node_assignment,
@Field(value="exemplar_index")
int exemplar_index,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)