Views
No views yet
| Metric | Score |
|---|---|
| Accuracy | 0.9004 |
| F1 Score | 0.8834 |
| Precision | 0.9809 |
| Recall | 0.8035 |
| ROC AUC | 0.9676 |
crop_type (string) - one of the supported cropssoil_moisture (float, 0-100%)temperature (float, Celsius)humidity (float, 0-100%)wind_speed (float, m/s)pressure (float, hPa)1import joblib
2from huggingface_hub import hf_hub_download
3
4model = joblib.load(hf_hub_download("dimeshanthoney/govicare", "crop_risk_model.joblib"))
5scaler = joblib.load(hf_hub_download("dimeshanthoney/govicare", "scaler.joblib"))
6encoder = joblib.load(hf_hub_download("dimeshanthoney/govicare", "encoder.joblib"))