ByteFarm-Ai farm Intelligence

Заказчик: AI | Опубликовано: 18.04.2026

ByteFarm/ ├── ML/ # Machine Learning pipeline │ ├── src/ # Inference, weather client, decision engine │ ├── data/ # Soil CSV, district data │ ├── models/ # Trained .pkl models (gitignored) │ └── config/ # Crop calendars, soil profiles ├── backend/ # FastAPI REST API │ ├── main.py # App entry point │ ├── routes/ # /recommend, /predict-yield, /profile, etc. │ ├── services/ # Model service, business logic │ └── database.py # PostgreSQL via psycopg2 ├── frontend/ # Flutter app (Web + Android) │ └── lib/ │ ├── main.dart # App entry │ ├── screens/ # Dashboard, Login, Results │ ├── services/ # Auth (direct HTTP to Supabase) │ ├── api_service.dart # Backend API calls │ └── models.dart # Data models ├── database/ # SQL schema for Supabase ├── .env.example # Environment variable template ├── requirements.txt # Python dependencies └── README.md