Course
machine-learning-zoomcamp
Question
The homework instructions say that Docker file has a new pipeline. Do I need to do any changes in my code to reflect it?
Answer
Replace opening pipeline_v1.bin with pipeline_v2.bin:
with open('pipeline_v2.bin', 'rb') as f_in:
pipeline = pickle.load(f_in)
Checklist