File size: 664 Bytes
0f30e69 25e9a95 0f30e69 b9b5291 0f30e69 b9b5291 0f30e69 |
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 42 43 44 45 46 47 48 |
---
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/iris_test/iris_svm.joblib")
iris = load_iris()
X = iris.data[:3]
Y = iris.target[:3]
labels = model.predict(X)
```
#### Eval
```python
model.score(X, Y)
``` |