You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fit(X, Y, Modeltype, Hyperparameters) → trained model
Predict(X) →Y
Optimize(Model, HyperparameterBoundaries, SearchStrategy) → Optimized model (via Hyperparameter optimization)
I propose adding a new BO (or extending existing PythonOperation) to automatically train/use the models, by providing these high-level requests:
FitRequest
PredictRequest
ValidateRequest
Questions:
Passing X, Y is trivial but what about hyperparams? I can write/extract a list of params for each supported model but how to make it convenient for user?
This is also a departure from our current approach of Python code being written by user into a low-code territory. What do you think about it?
Uh oh!
There was an error while loading. Please reload this page.
A lot of models conform to the same interface:
Fit(X, Y, Modeltype, Hyperparameters)
→ trained modelPredict(X)
→Y
Optimize(Model, HyperparameterBoundaries, SearchStrategy)
→ Optimized model (via Hyperparameter optimization)I propose adding a new BO (or extending existing
PythonOperation
) to automatically train/use the models, by providing these high-level requests:FitRequest
PredictRequest
ValidateRequest
Questions:
X
,Y
is trivial but what about hyperparams? I can write/extract a list of params for each supported model but how to make it convenient for user?Ideas? @lukyanchikov, @bdeboe, @tom-dyar
The text was updated successfully, but these errors were encountered: