Complete the code to name the first stage of the ML lifecycle.
stage = "[1]" # First stage in ML lifecycle
The first stage in the ML lifecycle is Data Collection. This is where raw data is gathered for training the model.
Complete the code to name the stage where the model learns from data.
stage = "[1]" # Stage where model learns
The Model Training stage is where the machine learning model learns patterns from the data.
Fix the error in naming the stage where the model's performance is checked.
stage = "[1]" # Stage to check model performance
The Evaluation stage is where the model's accuracy and performance are tested using test data.
Fill both blanks to name the stages for preparing data and putting the model into use.
stages = ["[1]", "[2]"] # Data prep and model use stages
Data Preprocessing is preparing data for training, and Deployment is putting the trained model into real use.
Fill all three blanks to complete the dictionary showing model name, accuracy, and status.
model_info = {"name": "[1]", "accuracy": [2], "status": "[3]"}The model is named RandomForest, has an accuracy of 0.92, and its status is deployed.