
Explanation:
The correct answer is B. timeout_minutes. This parameter is specifically designed to set a time limit for AutoML runs, ensuring they don't exceed a specified duration. It's crucial for managing resource usage and scheduling, especially in shared environments or when dealing with time constraints.
Example Usage:
from databricks import automl
automl_classifier = automl.classify(
target_col="label",
data=data,
timeout_minutes=60 # Set a 60-minute timeout
)
from databricks import automl
automl_classifier = automl.classify(
target_col="label",
data=data,
timeout_minutes=60 # Set a 60-minute timeout
)
Key Points:
timeout_minutes is essential for controlling AutoML run time and preventing excessive resource consumption.Ultimate access to all questions.
No comments yet.