Challenge - 5 Problems
ML Workflow Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Identify the correct order of ML workflow steps
Which of the following lists the steps of a typical machine learning workflow in the correct order?
Attempts:
2 left
❓ Predict Output
intermediate2:00remaining
Output of data preparation step
Given the following Python code snippet for data preparation, what is the output of the variable
prepared_data?ML Python
raw_data = [10, 20, None, 30, None, 40] prepared_data = [x for x in raw_data if x is not None]
Attempts:
2 left
❓ Model Choice
advanced2:00remaining
Choosing the right model for classification
You have a dataset with labeled images of cats and dogs. Which model type is best suited for this classification task?
Attempts:
2 left
❓ Metrics
advanced2:00remaining
Evaluating model performance with accuracy
A model predicted 80 correct labels out of 100 total samples. What is the accuracy of the model?
Attempts:
2 left
🔧 Debug
expert2:00remaining
Debugging deployment code error
You have this Python code to deploy a trained model, but it raises an error. What error does it raise?
ML Python
def deploy_model(model): model.save('model_path') trained_model = None deploy_model(trained_model)
Attempts:
2 left