File size: 380 Bytes
edfec38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
tags:
- sklearn
- classification
- wine
---
# Wine Classifier

Trained with MLflow + scikit-learn as part of MLOps Assignment 2.

| Metric | Value |
|--------|-------|
| Accuracy | 1.0 |
| Dataset | Wine (sklearn) |
| Classes | 3 (class_0, class_1, class_2) |

## Usage
```python
import mlflow.sklearn
model = mlflow.sklearn.load_model(".")
predictions = model.predict(X)
```