rajistics commited on
Commit
9d328f1
1 Parent(s): 3aa4df1

Fixed model pointer

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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(decision-tree-playground-kaggle/model.pkl, 'rb') as file:
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