You are helping a customer start to implement hyper parameter optimization (HPO) with HPE Machine learning Development Environment. An ML engineer is putting together an experiment config file with the desired Adaptive A5HA settings. The engineer asks you questions, such as how many trials will be trained on the max length and what the min length for all trials will be.
What should you explain?
- The engineer should run the "det preview-search" command, referencing the experiment config.
- The engineer should access the HPE Machine Learning Development online calculator and input the mode, max_trials, max_length, divisor, and max_runs.
- The engineer should upload the experiment config to the HPE Machine Learning Development Environment WebUl and view the graph of the experiment plan.
- The engineer should run a preliminary experiment with one tenth the desired number of max trials, assess the results, and then run the full experiment.
Answer(s): B
Explanation:
The engineer should specify the number of trials to train on the max length and the minimum length for all trials in the experiment config file. For example, if the engineer wants to run 10 trials with a max length of 10, the config file should look something like this:
{
"mode": "A5HA",
"max_trials": 10,
"max_length": 10,
"min_length": 1,
"divisor": 2,
"max_runs": 1
}
Once the config file is complete, the engineer should upload it to the HPE Machine Learning Development Environment WebUI and view the graph of the experiment plan. This will allow the engineer to see how the Adaptive A5HA settings will affect the experiment. After that, the engineer can run the experiment and assess the results.
Reveal Solution Next Question