
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
)
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:
Ultimate access to all questions.
No comments yet.