Skip to content

Commit 16b19bd

Browse files
github-actions[bot]FAQ Bot
andauthored
NEW: The homework instructions say Docker file has a new pipeline. Do I need (#30)
Co-authored-by: FAQ Bot <[email protected]>
1 parent d87c2cd commit 16b19bd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
id: 0b60cbb594
3+
question: The homework instructions say Docker file has a new pipeline. Do I need
4+
to do any changes in my code to reflect it?
5+
sort_order: 4
6+
---
7+
8+
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:
9+
10+
```python
11+
with open('pipeline_v2.bin', 'rb') as f_in:
12+
pipeline = pickle.load(f_in)
13+
```

0 commit comments

Comments
 (0)