Skip to content

AgroTech AI platform is a comprehensive web-based tool where users can access various machine learning models for making accurate predictions related to agriculture

License

Notifications You must be signed in to change notification settings

shwetzz14/AgroTech-AI

 
 

Repository files navigation

AgroTech AI

image

image

image

AgroTech AI platform is a comprehensive web-based tool where users can access various machine learning models for making accurate predictions related to agriculture. It offers solutions for crop management, soil health assessment, pest control, and more.


Make sure you star the repository and show your love to us💗

Why to Open Source

Contributing in open source increases your opportunities to work with different projects and mentors, getting to know various insights and ideas. It is a platform where contributors grow together with a construvtive and a positive attitude. This repository also provides one such platforms where contributers come over and put their ideas and make our website as interactive as much they can!

Event Logo Event Name Event Description
GSSoC 24 GirlScript Summer of Code 2024 GirlScript Summer of Code is a three-month-long Open Source Program conducted every summer by GirlScript Foundation. It is an initiative to bring more beginners to Open-Source Software Development.

GitHub issues GitHub forks GitHub pull requests GitHub Repo stars GitHub contributors

📌Table of Contents:

  1. Project Description
  2. TechStack
  3. Screenshots
  4. Video
  5. Code of Conduct
  6. Setting Up on your machine
  7. How to Contribute
  8. Our Contributors
  9. License

Project Description

AgroTech AI platform is a comprehensive web-based tool where users can access various machine learning models for making accurate predictions related to agriculture. It offers solutions for crop management, soil health assessment, pest control, and more.

It implements machine learning algorithms to implement 3 basic functionalities:

1. Fertilizer Prediction

Aims to predict the appropriate fertilizer based on environmental and soil conditions. The dataset contains various features like temperature, humidity, moisture, soil type, crop type, and the levels of nitrogen, potassium, and phosphorus in the soil. The model aims to recommend the correct fertilizer to use, improving crop yield and soil health.

Dataset:

Fertilizer Prediction.csv (Uploaded under notebooks)

Model Development :

A Random Forest Classifier was chosen as the primary model due to its robustness and high accuracy in classification tasks. The dataset was split into training and testing sets in an 80:20 ratio. Key steps:

Label Encoding:

Categorical variables (Soil Type, Crop Type, and Fertilizer Name) were encoded using LabelEncoder.

Model Training:

A Random Forest model was trained using the training data.

Hyperparameter Tuning:

A grid search with cross-validation was applied to find the optimal parameters for the Random Forest model.

2. Crop Prediction

Develop a machine learning-based crop recommendation system that uses various classification algorithms to predict the optimal crop for farming based on soil and environmental factors. The model takes inputs such as Nitrogen (N), Phosphorus (P), Potassium (K), temperature, humidity, pH level, and rainfall, and outputs the most suitable crop for specific conditions.

Dataset:

Crop_recommendation.csv

Model Training and Results

Four different models were trained on the dataset to predict the crop: The results of each model are as follows:

  1. Logistic Regression: 96.18%
  2. Decision Tree Classifier: 97.82%
  3. Gaussian Naive Bayes: 99.45%
  4. Random Forest Classifier: 99.45% The final model selected for deployment is the Random Forest Classifier.

3. Soil Quality Prediction

Implements machine learning models to classify soil quality based on various features like nitrogen content, pH levels, organic carbon, and other nutrients. The goal of the model is to predict the quality of soil using logistic regression and a Support Vector Machine (SVM) model.

Dataset:

Soil_Quality.csv (Uploaded under notebooks)

Model Traning and Results

  1. Logistic Regression Logistic Regression is used to model the soil quality based on the provided features. The dataset is split into training and testing sets, and the logistic regression model is trained on the training data.

  2. Support Vector Machine (SVM) A Support Vector Machine with an RBF (Radial Basis Function) kernel is trained as an alternative model. The SVM model aims to find the decision boundary that best separates different soil quality classes.

  3. Performance Evaluation The performance of both models is evaluated using accuracy. The accuracy of each model is calculated by comparing the predicted soil quality labels with the actual labels in the test dataset.

4. Yield Prediction

Aims to develop a machine learning-based model for predicting crop yields based on various environmental and agricultural factors. The primary objective of this project is to create a model that predicts the total crop yield for a given region using data such as Area and type of crop, Year of cultivation, Average rainfall (in mm per year), Pesticide usage (in tonnes), Average temperature (in °C)

Dataset:

yield_df.csv (Uploaded under notebooks)

Model Training and Results

Various machine learning regression algorithms are applied, and the performance is evaluated based on metrics like Mean Squared Error (MSE). The results of the models used are as follows:

  1. Linear Regression Mean Squared Error : 80852.08620158922 Score 0.09879301553673503

  2. K Neighbors Regressor Mean Squared Error : 55183.1146293406 Score 0.5801883304861266

  3. Decision Tree Regressor Mean Squared Error : 13211.190235825037 Score 0.9759383181169221

  4. Random Forest Regressor Mean Squared Error : 10135.46523142438 Score 0.9858378410451943

  5. Gradient Boosting Regressor Mean Squared Error : 34773.822585474634 Score 0.833295640875001

  6. XGB Regressor Mean Squared Error : 13451.947664464684 Score 0.975053338957936Linear Regression Mean Squared Error : 80852.08620158922 Score 0.09879301553673503

The Random Forest Regressor was found to have the lowest MSE, making it the most suitable model for crop yield prediction. This model was selected for deployment and future predictions.

5. Mushroom Edibility Prediction

Develop a machine learning model that predicts whether a mushroom is edible or not, depending on it's physical features and environment. The model takes various inputs regarding the physical characteristics of the mushroom and outputs if the mushroom is edible or poisonous.

Dataset:

mushrooms.csv

Model Training and Results

Five different models were trained on the dataset to predict mushroom edibility. The accuracy of each model are as follows:

  1. Logistic Regression: 0.94
  2. Decision Tree Classifier: 1.0
  3. K Nearest Neighbors: 0.99
  4. Random Forest Classifier: 1.0
  5. XGB Classifier: 1.0

The final model selected for deployment is the XGBoost Classifier as it can handle missing datas better than the other models.

TechStack

  • React
  • Tailwind
  • python - Flask
  • Node
  • MongoDB
  • Express
  • Machine Learning
  • Deep Learning

⚙️ Getting Started / 📥 Installation

Ready to contribute to this fun project? Here's how to set up your development environment:
Make sure you follow our contributing guidlines:- here

  1. Fork this repository 🍴 and clone it to your local machine:
    git clone https://github.com/manikumarreddyu/AgroTech-AI.git

⚙️ Getting Started with Agro Tech AI main website

  1. Install the node modules in frontend directory:
    npm install
  2. Start the react server ⚡:
    npm run dev
  3. Install the node modules for backend directory 🧩:
    npm install
  4. Run the backend server ⚡:
    npm start
  5. Open your browser at http://localhost:5173 to see the project running! 🌟

Code of Conduct

Please note that this project is released with a Code of Conduct. By participating in this project you agree to abide by its terms.

Are Ready to Contribute?

If you would like to contribute to the project then kindly go through Contributing Guidelines to understand everything from setup to necessary instructions.


Our Contributors ❤️

Thank you for contributing to our repository

License:

This project is licensed under the MIT License. See the LICENSE file for more details.


Don't forget to leave a star for this project!

Go to Top

About

AgroTech AI platform is a comprehensive web-based tool where users can access various machine learning models for making accurate predictions related to agriculture

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 79.5%
  • Python 10.5%
  • Jupyter Notebook 7.5%
  • CSS 1.3%
  • HTML 0.7%
  • TypeScript 0.5%