Questions
- You want to get the best model trained by an AutoML run. Which code is correct?
a.
model = run.get_output()[0]
b.
model = run.get_output()[1]
c.
model = run.get_outputs()[0]
d.
model = run.get_outputs()[1]
- You want to run a forecasting AutoML experiment on top of data you receive from a sensor. You receive one record every day from the sensor. You want to be able to predict the values for 5 days. Which of the following parameters should you pass to the
ForecastingParameters
class?a. forecast_horizon = 5 * 1
b. forecast_horizon = 5 * 24
c. forecast_horizon = 5 * 12