Update README.md
Browse files
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 |
-
|
| 126 |
-
|
| 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):
|