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,
java.lang.String _exclude_fields)
Return the specified grid search result.
|
retrofit2.Call<GridsV99> |
list() |
retrofit2.Call<GridsV99> |
list(java.lang.String _exclude_fields)
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,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
grid_id - Grid idsort_by - Model performance metric to sort by. Examples: logloss, residual_deviance, mse, 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_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@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(@Field(value="_exclude_fields") java.lang.String _exclude_fields)
_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/99/Grids") retrofit2.Call<GridsV99> list()