Recall & Review
beginner
What is MLflow?
MLflow is an open-source platform that helps manage the machine learning lifecycle, including experimentation, reproducibility, deployment, and a central model registry.
Click to reveal answer
beginner
Which command installs MLflow using pip?
Use
pip install mlflow to install MLflow in your Python environment.Click to reveal answer
beginner
How do you start the MLflow tracking server locally?
Run
mlflow ui in your terminal to start the MLflow tracking UI on your local machine at http://localhost:5000.Click to reveal answer
beginner
What is the purpose of MLflow Tracking?
MLflow Tracking records and queries experiments: it logs parameters, code versions, metrics, and output files to help compare different runs.
Click to reveal answer
intermediate
Name the four main components of MLflow.
The four main components are: MLflow Tracking, MLflow Projects, MLflow Models, and MLflow Model Registry.
Click to reveal answer
Which command starts the MLflow UI?
✗ Incorrect
The command
mlflow ui launches the MLflow tracking user interface.What does MLflow Tracking primarily help with?
✗ Incorrect
MLflow Tracking is designed to log parameters, metrics, and artifacts to compare experiments.
Which Python package do you install to use MLflow?
✗ Incorrect
MLflow is installed via
pip install mlflow.Where does MLflow UI run by default after starting?
✗ Incorrect
By default, MLflow UI runs on port 5000 at localhost.
Which MLflow component manages model versioning and lifecycle?
✗ Incorrect
The Model Registry component manages model versions and lifecycle stages.
Explain how to set up MLflow tracking on your local machine.
Think about installation, starting the UI, and logging runs.
You got /4 concepts.
Describe the main components of MLflow and their roles.
Focus on the four core parts and what each does.
You got /4 concepts.