Grid Search (ML_GRID)
This function exhaustively searches for the optimal combination of hyperparameter values for a machine learning model.
Sample Request
{
"project_id": 13,
"parent_id": 3,
"block_id": 4,
"function_code": "ML_GRID",
"args": {
"model_name": "RandomForest",
"param_grid": [
{
"n_estimators": [
5,
10,
60,
100
]
},
{
"random_state": [
0,
42,
60
],
"criterion": [
"gini",
"entropy"
]
}
]
}
}Grid Search
Request Body
Name
Type
Description
Last updated