You are managing an Azure Machine Learning workspace and need to ensure that model training jobs are reproducible across environments. Which feature should be configured to capture the exact environment state, including Python packages and system dependencies?
Environment objects define the exact dependencies, ensuring the same environment is used across local, compute instance, and cluster training.
Why this answer
Conda or Docker environments are the standard for reproducibility in Azure ML. Environment objects define the exact dependencies required for a job.