File size: 631 Bytes
60abf7d 8ba5ac7 cd94cb6 8ba5ac7 df0b625 7cad7b5 04cbf2f 84d5bea 04cbf2f 84d5bea 04cbf2f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
---
datasets:
- scikit-learn/iris
widget:
structuredData:
SepalLengthCm:
- 5.1
- 4.9
- 6.2
SepalWidthCm:
- 3.5
- 3
- 3.4
PetalLengthCm:
- 1.4
- 1.4
- 5.4
PetalWidthCm:
- 0.2
- 0.2
- 2.3
tags:
- tabular-classification
- sklearn
---
### How to use
```python
import joblib
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
REPO_ID = "d2i-pti-iu/test_svc_model"
FILENAME = "iris_svm.joblib"
model = joblib.load("/d2i-pti-iu/test_svc_model/iris_svm.joblib")
iris = load_iris()
X = iris.data[:3]
labels = model.predict(X)
``` |