-
PlantDiseaseModel_best.pth (81 MB)
- Architecture: ResNet34
- Task: Plant disease classification
- Classes: 38 diseases across 14 crop types
- Accuracy: 95%+
-
crop_yield_model_best.pth
- Architecture: Custom Neural Network
- Task: Crop yield prediction (regression)
- Features: 8 input features (soil, weather, farming practices)
- R² Score: 0.92+
-
preprocessing_objects.pkl
- Contains: Label encoders and scalers for crop yield model
- Used for: Feature preprocessing
-
soil_type_model.pth (130 MB)
- Architecture: ResNet18
- Task: Soil type classification
- Classes: 6 soil types (Sandy, Clay, Loamy, Silt, Peat, Chalky)
- Accuracy: 90%+
-
soil_moisture_model.pth (246 MB)
- Architecture: ResNet34
- Task: Soil moisture level classification
- Classes: 3 levels (Dry, Moderate, Wet)
- Accuracy: 93%+
1from huggingface_hub import hf_hub_download
2import torch
3
4# Download a model
5model_path = hf_hub_download(
6 repo_id="watermelon-elite/aaagriculture-models",
7 filename="soil_moisture_model.pth"
8)
9
10# Load the model
11checkpoint = torch.load(model_path, map_location='cpu')
12# ... load into your model architecture
MIT License - Free to use for research and commercial purposes.
@software{aaagriculture2026,
author = {Your Name},
title = {AAAgriculture: ML-Powered Precision Agriculture Platform},
year = {2026},
url = {https://github.com/watermelon-elite/AAAgriculture}
}