How to solve the multi class must be 'ovr or ovo'?
I have a dataset and want to apply ax multi objective optimization. The target 'y' is a multi-class, I know how to solve it in ML models but in here it gives error in this line:
mobo_data = initialize_experiment(mobo_experiment)
Here is the function of the 'initialize_experiment()
def initialize_experiment(experiment): sobol = Models.SOBOL(search_space=experiment.search_space)
for _ in range(N_INIT):
experiment.new_trial(sobol.gen(1)).run()
return experiment.fetch_data()
Can you please let me know how to train it on multi-class.

Not sure I fully understand the issue here. Are you trying to train a multiclass classification model and optimize the hyperparameters for the training job? Can you provide some more detail on your experiment setup (what exactly is the search space, and what are the metrics)?
Closing as inactive. @ghezalahmad, please reopen the issue if you do follow up on it!