| 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) | |
| ``` | |