Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
id: 0b60cbb594
question: The homework instructions say Docker file has a new pipeline. Do I need
to do any changes in my code to reflect it?
sort_order: 4
---

Yes. Since the homework specifies a new pipeline file, update your code to load pipeline_v2.bin instead of pipeline_v1.bin. Use the following snippet:

```python
with open('pipeline_v2.bin', 'rb') as f_in:
pipeline = pickle.load(f_in)
```