Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -53,19 +53,19 @@ This model is made for the purposes of showing how to use Highwind only.
|
|
| 53 |
# How to Get Started with the Model
|
| 54 |
|
| 55 |
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
|
| 70 |
# Model Card Authors
|
| 71 |
|
|
|
|
| 53 |
# How to Get Started with the Model
|
| 54 |
|
| 55 |
|
| 56 |
+
```python
|
| 57 |
+
import joblib
|
| 58 |
+
from huggingface_hub import hf_hub_download
|
| 59 |
+
|
| 60 |
+
# Feature scaler
|
| 61 |
+
hf_hub_download("MelioAI/iris-classifier", "scaler.joblib")
|
| 62 |
+
scaler = joblib.load("scaler.joblib")
|
| 63 |
+
|
| 64 |
+
# Classifier model
|
| 65 |
+
hf_hub_download("MelioAI/iris-classifier", "model.joblib")
|
| 66 |
+
model = joblib.load("model.joblib")
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
|
| 70 |
# Model Card Authors
|
| 71 |
|