Ultimate access to all questions.
In a regression AutoML task, if you wish to store the generated notebooks and experiments in a specific directory, which parameter should you utilize?
Explanation:
The correct answer is C. experiment_dir. This parameter allows you to specify a directory where AutoML will store the generated notebooks and experiment files, enabling a structured workspace for easy access and analysis.
How to use experiment_dir:
from databricks import automl
# Assuming your regression dataset is a Spark DataFrame named ‘data‘
automl_model = automl.regression(
data=data,
target_col=“target_column“, # Column containing the target values to predict
experiment_dir=“/dbfs/my_experiments/regression_run“, # Specify the experiment directory
# … other AutoML parameters
)
Incorrect Options:
Key Points:
Benefits of using experiment_dir: