Fixed model pointer
Browse files
README.md
CHANGED
@@ -242,7 +242,7 @@ Use the code below to get started with the model.
|
|
242 |
|
243 |
```python
|
244 |
import pickle
|
245 |
-
with open(
|
246 |
clf = pickle.load(file)
|
247 |
```
|
248 |
|
|
|
242 |
|
243 |
```python
|
244 |
import pickle
|
245 |
+
with open(model.pkl, 'rb') as file:
|
246 |
clf = pickle.load(file)
|
247 |
```
|
248 |
|