public interface Grids
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<GridSchemaV99> |
fetch(java.lang.String grid_id) |
retrofit2.Call<GridSchemaV99> |
fetch(java.lang.String grid_id,
java.lang.String sort_by,
boolean decreasing,
java.lang.String[] model_ids)
Return the specified grid search result.
|
retrofit2.Call<GridsV99> |
list()
Return all grids from H2O distributed K/V store.
|
@GET(value="/99/Grids/{grid_id}")
retrofit2.Call<GridSchemaV99> fetch(@Path(value="grid_id")
java.lang.String grid_id,
@Field(value="sort_by")
java.lang.String sort_by,
@Field(value="decreasing")
boolean decreasing,
@Field(value="model_ids")
java.lang.String[] model_ids)
grid_id - Grid idsort_by - Model performance metric to sort by. Examples: logloss, residual_deviance, mse, rmse, mae,rmsle,
auc, r2, f1, recall, precision, accuracy, mcc, err, err_count, lift_top_group, max_per_class_errordecreasing - Specify whether sort order should be decreasing.model_ids - Model IDs built by a grid search@GET(value="/99/Grids/{grid_id}")
retrofit2.Call<GridSchemaV99> fetch(@Path(value="grid_id")
java.lang.String grid_id)
@GET(value="/99/Grids") retrofit2.Call<GridsV99> list()