Views
No views yet
| Hyperparameter | Value |
|---|---|
| C | 1 |
| class_weight | |
| dual | False |
| fit_intercept | True |
| intercept_scaling | 1 |
| l1_ratio | |
| max_iter | 100 |
| multi_class | auto |
| n_jobs | |
| penalty | l2 |
| random_state | 42 |
| solver | lbfgs |
| tol | 0.0001 |
| verbose | 0 |
| warm_start | False |
1import joblib
2from huggingface_hub import hf_hub_download
3
4# Feature scaler
5hf_hub_download("MelioAI/iris-classifier", "scaler.joblib")
6scaler = joblib.load("scaler.joblib")
7
8# Classifier model
9hf_hub_download("MelioAI/iris-classifier", "model.joblib")
10model = joblib.load("model.joblib")[More Information Needed]