ruanmelio commited on
Commit
959c2e1
1 Parent(s): 592f4b0

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -13
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
- ```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
 
 
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