nehulagrawal commited on
Commit
1db8d21
·
verified ·
1 Parent(s): 9e94e28

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -122,8 +122,8 @@ import numpy as np
122
  2. Load the pre-trained model and label encoder:
123
 
124
  ```python
125
- model = joblib.load('model.joblib')
126
- le = joblib.load('label.joblib')
127
  ```
128
 
129
  3. Define the feature extraction function (make sure this matches the function used during training):
 
122
  2. Load the pre-trained model and label encoder:
123
 
124
  ```python
125
+ loaded_model = joblib.load('model.joblib')
126
+ loaded_le = joblib.load('label.joblib')
127
  ```
128
 
129
  3. Define the feature extraction function (make sure this matches the function used during training):