MLOPS - 4 Interview questions
Orchestration in MLOps orchestrates all the tasks in a machine learning workflow, which is a series of automated steps from data ingestion to model deployment and monitoring. Orchestration tools help define, schedule, and manage complex ML pipelines, ensuring that tasks run in the correct order and are reproducible. Orchestration (Q1-Q20) ⚙️ Q: What is the main goal of orchestration in MLOps? A: To automate and manage the entire machine learning pipeline. It ensures that complex, multi-step workflows are executed reliably and in the correct order. Q: What is a DAG in the context of orchestration? A: A DAG (Directed Acyclic Graph) is a visual representation of a pipeline. It defines a series of tasks and the dependencies between them, ensuring they run in a specific, non-circular order. Q: Name three popular orchestration tools. A: Apache Airflow , Kubeflow Pipelines , and Prefect . Q: What is the difference between a "task" and a "pipeline" in orchestration? ...