SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 801
AI Based Irrigation Schedule Generator for Efficient Automation
Aditya A. Desai
B. Tech (Electrical),
Rajarambapu Institute of Technology (RIT), Rajaramnagar
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - This research pioneers a transformative
approach in precision agriculture by leveraging machine
learning and innovative technologies to predict optimal
irrigation schedules for greenhouse cultivation. The project
seamlessly integrates a multidisciplinary collaboration
between agriculture, data science, and technology. A robust
dataset, meticulously curated through extensive surveys and
consultations, captures diverse crops and their attributes. The
implementation involves the development and evaluation ofa
Decision Tree Regression model, chosenafteracomprehensive
comparative analysis of supervised learning models.
Leveraging technologies such as Flask, themodelincorporates
key attributes like temperature, humidity, andgrowthstageto
accurately predict crop water requirements. Rigorous data
preprocessing and validation strategies are employed,
ensuring the model's reliability. Practical application is
demonstrated through the creation of precise irrigation
schedules, optimizing resource utilizationandenhancingcrop
yield. The project culminates in a sophisticated irrigation
scheduling system, consideringfactorslike weatherconditions,
soil moisture, and plant growth stages. The integration of
Flask technology facilitates a user-friendly interface,
enhancing accessibility. The findings underscore the model's
accuracy, interpretability, and adaptability, showcasing the
transformative potential of machine learning and technology
in addressing critical challenges in modern farming practices.
This research not only advances precision agriculturebutalso
exemplifies the synergy betweenmachinelearningalgorithms,
Flask technology, and sustainable agricultural innovation.
Key Words: Machine Learning, SQL, Dataset creation, Flask,
Supervised Learning, Decision Tree Regression, Schedule
Generator, Artificial Intelligence, EDA, MLOps, Irrigation
Automation
1.INTRODUCTION
In recent years, the intersection of agriculture and
technology has paved the way for transformative
advancements in farming practices. One such innovation
involves the integration of automation and artificial
intelligence (AI) into traditional irrigationsystems,aimingto
enhance efficiency and resource utilization. In our previous
work, as presented in [1], we successfully implemented a
fully automated irrigation system by merging a preexisting
timer-based setup with a moisture-based control
mechanism. The system demonstrated remarkable results,
particularly when a customized watering schedule was
employed for a specific crop's entire growth cycle. Thework
presented in [1] not only showcased the efficacy of our
integrated system but also revealed a significant leap in
efficiency—surpassing existing methods by a substantial
margin, approximately 50 percent. This success, however,
unveiled a challenge: the scalability of the manual approach
used to generate crop-specific irrigation schedules. The
process, which took two months for a single crop, became
impractical when considering the diverse and expansive
nature of agricultural operations.
Recognizing the need for a more streamlined and scalable
solution, our current researchfocusesonthedevelopmentof
an AI-based irrigation schedule generator. This automated
system aims to simplify the interaction betweenfarmersand
technology, requiring nothing more than the input of the
crop's name to provide a comprehensive and optimized
irrigation plan for the entire croplifecycle.Theobjectiveisto
empower farmers with a tool that not only enhances
precision but also significantly reduces the time and effort
traditionally associated with developing intricate irrigation
schedules.
In this paper, we delve into the architecture, methodologies,
and results of our AI-based irrigation schedule generator.
We anticipate that this innovative approach will
revolutionize farming practices by bringing forth a solution
that marries technology with agriculture, promoting
sustainability, resource conservation, and increased crop
yields.
2. Methodology
2.1.1 Dataset Creation
The dataset utilized in this research represents a meticulous
and comprehensive compilation of agricultural data,
specifically curated to model and predict crop water
requirements in a greenhousecontext.Theprocessofdataset
preparation involved the collaboration of interdisciplinary
teams, including agricultural experts, data scientists, and
domain specialists. To ensure the dataset's richness and
relevance, information was gathered on a diverse array of
crops, ranging from staple grains to fruits and cash crops.
Each entry in the dataset is characterized by a set of features
crucial forunderstanding theintricaterelationshipsbetween
crops and their environmental conditions. The features
include the crop type, climate zone, soil type, ideal
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 802
temperature, humidity preferences, water requirements
measured in millimeters, and the typical lifespan or growth
cycle duration of the crops. To enhance the dataset's
accuracy, inputs were sourced through extensive surveys
conducted among agriculture students, consultations with
farmers, and the integration of existing agricultural
knowledge. This collaborative and multidisciplinary
approach ensured that the dataset encapsulates the nuanced
requirements of variouscrops,layingthegroundworkforthe
development of a robust decision tree regression model that
accurately predictswaterneedsandfacilitatesthegeneration
of tailored irrigation schedules for optimized greenhouse
cultivation.
Fig. 1: Dataset Created
2.1.1 Data Preprocessing
In the preparatory phase of this project, meticulous data
preprocessing played a pivotal role in refining the raw
agricultural dataset, ensuring its suitability for training the
decision tree regression model. The dataset underwent a
thorough examination for missing values, with strategic
imputation or removal of incompleteentriestopreservedata
integrity. Outlier detection and treatment strategies were
implemented to address potential anomalies that could
impact model training. Numerical features underwent
standardizationthroughscalingtechniques,ensuringuniform
influence during model training. Categorical variables were
encoded into numerical representations, facilitating the
model's interpretation of such data. The dataset was
strategically split into training and validation sets, enabling
robust model training and evaluation. Feature selection
methods were employed to identify the most influential
variables, streamlining the dataset for optimal model
performance. Additionally, the target variable representing
water requirements underwent normalization for
consistency and improved model convergence during
training. This comprehensive data preprocessing approach
resulted in a refined and well-structured dataset, laying a
solid foundation for the subsequent training and evaluation
of the decision tree regression model.
2.2 Machine Learning Model
2.2.1 Model Selection
The comparative analysis conducted for model selection in
this project involved evaluating various supervised learning
models to determine the most effective approach for
predicting optimal irrigation schedules. Commonly
consideredmodelsinthiscomparativeanalysismightinclude
LinearRegression, Support Vector Machines(SVM),Random
Forest, and Decision Tree Regression. The evaluationcriteria
encompassed factors such as predictive accuracy,
computational efficiency, interpretability, and the model's
ability to handle the complex relationships inherent in
predicting water requirements for diverse crops.
Additionally, consideration was given to the specific
characteristics of the dataset, including the number of
features, the nature of the target variable, and the potential
presence of non-linear relationships. Performance metrics,
such as Mean Squared Error (MSE), Mean Absolute Error
(MAE), and R-squared, were employed to quantitatively
assessthemodels'predictivecapabilities.Theinterpretability
of each model was qualitatively evaluated, recognizing the
importance of transparent decision-making, particularly in
agricultural applications.
Ultimately, the Decision Tree Regression model wasselected
based on its favorable balance of predictive accuracy,
interpretability, and suitability forhandling the complexand
non-linear relationships involved in predicting water
requirements for crops in a greenhouse environment. This
choice was made after a thorough examination of the
strengths and weaknesses of each model through the lens of
the specific requirementsandcharacteristicsoftheirrigation
scheduling prediction task.
2.2.2 Training and Validation
In the training and validation phase of this project, the
decision tree regression algorithm played a pivotal role in
creating a model capable of predicting water requirements
for various crops in a greenhouse setting. The dataset,
comprising information on temperature, humidity, soil type,
and other attributes relevant to crop growth, was divided
into training and validation sets. The training set was
employed to teach the model patterns within the data,
enabling it to establish relationships between input features
and the correspondingwaterrequirements.Thedecisiontree
model was fine-tuned during training to enhance its
predictive accuracy.
To ensure the model's generalizability and prevent
overfitting to the training data, a validation set was utilized.
This set, distinct from the training data, enabled the
assessment of the model's performance on unseen data. By
iteratively adjusting model parameters and evaluating its
performance on the validation set, we aimed to strike a
balance between predictive power and avoiding overly
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 803
complex models that might not generalize well.Thisiterative
process of training,validation,andadjustmentwascrucialfor
refining the decision tree model, ensuringitsrobustness,and
ultimately producing an accurate and practical tool for
predictingcropwaterrequirementsandgeneratingirrigation
schedules in a greenhouse environment.
2.2.3 Real-time Adaptation
Integration with real-timedata streams enables themodelto
adapt continually. Environmentalsensorsprovideup-to-the-
minute information, allowing the system to make dynamic
adjustments
2.3 User Interaction
In the user interaction phase of this project, a user-friendly
interface was developed using a Flask-based graphical user
interface (GUI) application. The user ispromptedtoinputthe
name of the crop for which they seek irrigation
recommendations. As shown in figure 2. Upon entering the
crop name, the system fetches relevantdatafromthedataset,
providing the user with optimal weather conditions for
Subsequently, the user receives two key outputs. First, they
are presented with a comprehensive CSV file detailing the
This schedule includes the daily water requirement and the
corresponding duration the irrigation motor should run to
meet these needs efficiently. As shown in figure 3. This CSV
file serves as a practical guide for greenhouse management,
facilitating streamlined and resource-efficient crop
cultivation.
The CSV file generated from the output can be
downloaded. As shown in Figure 4, it contains the
entire watering schedule, including daily water
requirements in liters and the amount of time needed
to keep the motor on to fulfill that requirement. This is
dependent upon the area of irrigation, and the size of
the motor is provided.
Fig. 4: Output CSV file
3. CONCLUSIONS
This schedule generator (Phase 2 of Techno green Project)
combined with the Automated IrrigationSystemforEfficient
and Portable Farming (Phase 1 of techno green published in
2023 International Conference on Power, Instrumentation,
Control and Computing (PICC)) provides a truly fully
automated and efficient solution which is more efficient
than any other existing irrigation system. The model
presented is capable of generate full life irrigation schedule
for any Indian crop quickly and precisely. The GUI provides
the easy way of interacting with model forfarmers havingno
knowledge of coding. In conclusion, this researchintroduces
a decision tree regression model designed to revolutionize
greenhouse irrigation practices.Throughmeticulousdataset
construction, model training, and validation, the proposed
model demonstrated commendable accuracy, evidenced by
low Mean Absolute Error (MAE),MeanSquaredError(MSE),
and a high R-squared (R2) score. The model's robustness
and interpretability were affirmed through cross-validation
and feature importance analysis.
REFERENCES
[1] A. A. Desai, R. A. Metri, S. R. Patil, A. A. Nagargoje and D.
S. Desai, "Automated Irrigation System for Efficient and
Portable Farming," 2023 International Conference on
Power, Instrumentation, Control andComputing(PICC),
Thrissur, India, 2023, pp. 1-6, doi:
10.1109/PICC57976.2023.10142376.M. Young, The
Technical Writer’s Handbook. Mill Valley,CA:University
Science, 1989.
cultivating the selected crop.
Fig. 2: Input page
day-to-day irrigation schedule for the specified crop.
Fig. 3: Output page
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 804
[2] S. Pathak, I. Mishra and A. Swetapadma, "AnAssessment
of Decision Tree based Classification and Regression
Algorithms," 2018 3rd International Conference on
Inventive Computation Technologies (ICICT),
Coimbatore, India, 2018, pp. 92-95, doi:
10.1109/ICICT43934.2018.9034296.
[3] I. V. Chugunkov, D. V. Kabak, V. N. Vyunnikov and R. E.
Aslanov, "Creation of datasets from opensources,"2018
IEEE Conference of Russian Young Researchers in
Electrical and Electronic Engineering (EIConRus),
Moscow and St. Petersburg, Russia, 2018, pp. 295-297,
doi: 10.1109/EIConRus.2018.8317091.
[4] K. M P and D. N R, "Crop Prediction Based on Influencing
Parameters for Different States in India- The Data
Mining Approach," 2021 5th International Conference
on Intelligent Computing and Control Systems (ICICCS),
Madurai, India, 2021, pp. 1785-1791, doi:
10.1109/ICICCS51141.2021.9432247.

More Related Content

Similar to AI Based Irrigation Schedule Generator for Efficient Automation

IRJET- Agricultural Data Modeling and Yield Forecasting using Data Mining...
IRJET-  	  Agricultural Data Modeling and Yield Forecasting using Data Mining...IRJET-  	  Agricultural Data Modeling and Yield Forecasting using Data Mining...
IRJET- Agricultural Data Modeling and Yield Forecasting using Data Mining...IRJET Journal
 
IRJET- IoT based Smart Greenhouse Automation System
IRJET-  	  IoT based Smart Greenhouse Automation SystemIRJET-  	  IoT based Smart Greenhouse Automation System
IRJET- IoT based Smart Greenhouse Automation SystemIRJET Journal
 
Climate Monitoring and Prediction using Supervised Machine Learning
Climate Monitoring and Prediction using Supervised Machine LearningClimate Monitoring and Prediction using Supervised Machine Learning
Climate Monitoring and Prediction using Supervised Machine LearningIRJET Journal
 
Crop yield prediction.pdf
Crop yield prediction.pdfCrop yield prediction.pdf
Crop yield prediction.pdfssuserb22f5a
 
Generator Maintenance Scheduling Of Power System Using Hybrid Technique
Generator Maintenance Scheduling Of Power System Using Hybrid TechniqueGenerator Maintenance Scheduling Of Power System Using Hybrid Technique
Generator Maintenance Scheduling Of Power System Using Hybrid TechniqueIRJET Journal
 
Analysis of crop yield prediction using data mining techniques
Analysis of crop yield prediction using data mining techniquesAnalysis of crop yield prediction using data mining techniques
Analysis of crop yield prediction using data mining techniqueseSAT Journals
 
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...IRJET Journal
 
Decision support system for precision agriculture
Decision support system for precision agricultureDecision support system for precision agriculture
Decision support system for precision agricultureeSAT Publishing House
 
Energy audit for a waste water treatment process
Energy audit for a waste water treatment processEnergy audit for a waste water treatment process
Energy audit for a waste water treatment processIRJET Journal
 
IRJET- Agricultural Productivity System
IRJET- Agricultural Productivity SystemIRJET- Agricultural Productivity System
IRJET- Agricultural Productivity SystemIRJET Journal
 
DEMETER H2020 project overview
DEMETER H2020 project overviewDEMETER H2020 project overview
DEMETER H2020 project overviewH2020 DEMETER
 
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNING
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNINGPREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNING
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNINGIRJET Journal
 
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...IRJET Journal
 
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)IRJET Journal
 
BHARATH KISAN HELPLINE
BHARATH KISAN HELPLINEBHARATH KISAN HELPLINE
BHARATH KISAN HELPLINEIRJET Journal
 
IRJET - Enlightening Farmers on Crop Yield
IRJET -  	  Enlightening Farmers on Crop YieldIRJET -  	  Enlightening Farmers on Crop Yield
IRJET - Enlightening Farmers on Crop YieldIRJET Journal
 
IRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET Journal
 
IRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET Journal
 
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey PaperIRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey PaperIRJET Journal
 

Similar to AI Based Irrigation Schedule Generator for Efficient Automation (20)

IRJET- Agricultural Data Modeling and Yield Forecasting using Data Mining...
IRJET-  	  Agricultural Data Modeling and Yield Forecasting using Data Mining...IRJET-  	  Agricultural Data Modeling and Yield Forecasting using Data Mining...
IRJET- Agricultural Data Modeling and Yield Forecasting using Data Mining...
 
IRJET- IoT based Smart Greenhouse Automation System
IRJET-  	  IoT based Smart Greenhouse Automation SystemIRJET-  	  IoT based Smart Greenhouse Automation System
IRJET- IoT based Smart Greenhouse Automation System
 
Climate Monitoring and Prediction using Supervised Machine Learning
Climate Monitoring and Prediction using Supervised Machine LearningClimate Monitoring and Prediction using Supervised Machine Learning
Climate Monitoring and Prediction using Supervised Machine Learning
 
Crop yield prediction.pdf
Crop yield prediction.pdfCrop yield prediction.pdf
Crop yield prediction.pdf
 
Generator Maintenance Scheduling Of Power System Using Hybrid Technique
Generator Maintenance Scheduling Of Power System Using Hybrid TechniqueGenerator Maintenance Scheduling Of Power System Using Hybrid Technique
Generator Maintenance Scheduling Of Power System Using Hybrid Technique
 
Analysis of crop yield prediction using data mining techniques
Analysis of crop yield prediction using data mining techniquesAnalysis of crop yield prediction using data mining techniques
Analysis of crop yield prediction using data mining techniques
 
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...
Application Of Machine Learning in Modern Agriculture for Crop Yield Predicti...
 
Decision support system for precision agriculture
Decision support system for precision agricultureDecision support system for precision agriculture
Decision support system for precision agriculture
 
Energy audit for a waste water treatment process
Energy audit for a waste water treatment processEnergy audit for a waste water treatment process
Energy audit for a waste water treatment process
 
IRJET- Agricultural Productivity System
IRJET- Agricultural Productivity SystemIRJET- Agricultural Productivity System
IRJET- Agricultural Productivity System
 
DEMETER H2020 project overview
DEMETER H2020 project overviewDEMETER H2020 project overview
DEMETER H2020 project overview
 
DEMETER Overview
DEMETER OverviewDEMETER Overview
DEMETER Overview
 
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNING
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNINGPREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNING
PREDICT THE QUALITY OF FRESHWATER USING MACHINE LEARNING
 
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...
Crop Recommendation System to Maximize Crop Yield using Machine Learning Tech...
 
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)
Agro-Farm Care – Crop, Fertilizer & Disease Prediction (Web App)
 
BHARATH KISAN HELPLINE
BHARATH KISAN HELPLINEBHARATH KISAN HELPLINE
BHARATH KISAN HELPLINE
 
IRJET - Enlightening Farmers on Crop Yield
IRJET -  	  Enlightening Farmers on Crop YieldIRJET -  	  Enlightening Farmers on Crop Yield
IRJET - Enlightening Farmers on Crop Yield
 
IRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart Farming
 
IRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart FarmingIRJET- A Novel Approach to Smart Farming
IRJET- A Novel Approach to Smart Farming
 
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey PaperIRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 

Recently uploaded (20)

DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 

AI Based Irrigation Schedule Generator for Efficient Automation

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 801 AI Based Irrigation Schedule Generator for Efficient Automation Aditya A. Desai B. Tech (Electrical), Rajarambapu Institute of Technology (RIT), Rajaramnagar ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - This research pioneers a transformative approach in precision agriculture by leveraging machine learning and innovative technologies to predict optimal irrigation schedules for greenhouse cultivation. The project seamlessly integrates a multidisciplinary collaboration between agriculture, data science, and technology. A robust dataset, meticulously curated through extensive surveys and consultations, captures diverse crops and their attributes. The implementation involves the development and evaluation ofa Decision Tree Regression model, chosenafteracomprehensive comparative analysis of supervised learning models. Leveraging technologies such as Flask, themodelincorporates key attributes like temperature, humidity, andgrowthstageto accurately predict crop water requirements. Rigorous data preprocessing and validation strategies are employed, ensuring the model's reliability. Practical application is demonstrated through the creation of precise irrigation schedules, optimizing resource utilizationandenhancingcrop yield. The project culminates in a sophisticated irrigation scheduling system, consideringfactorslike weatherconditions, soil moisture, and plant growth stages. The integration of Flask technology facilitates a user-friendly interface, enhancing accessibility. The findings underscore the model's accuracy, interpretability, and adaptability, showcasing the transformative potential of machine learning and technology in addressing critical challenges in modern farming practices. This research not only advances precision agriculturebutalso exemplifies the synergy betweenmachinelearningalgorithms, Flask technology, and sustainable agricultural innovation. Key Words: Machine Learning, SQL, Dataset creation, Flask, Supervised Learning, Decision Tree Regression, Schedule Generator, Artificial Intelligence, EDA, MLOps, Irrigation Automation 1.INTRODUCTION In recent years, the intersection of agriculture and technology has paved the way for transformative advancements in farming practices. One such innovation involves the integration of automation and artificial intelligence (AI) into traditional irrigationsystems,aimingto enhance efficiency and resource utilization. In our previous work, as presented in [1], we successfully implemented a fully automated irrigation system by merging a preexisting timer-based setup with a moisture-based control mechanism. The system demonstrated remarkable results, particularly when a customized watering schedule was employed for a specific crop's entire growth cycle. Thework presented in [1] not only showcased the efficacy of our integrated system but also revealed a significant leap in efficiency—surpassing existing methods by a substantial margin, approximately 50 percent. This success, however, unveiled a challenge: the scalability of the manual approach used to generate crop-specific irrigation schedules. The process, which took two months for a single crop, became impractical when considering the diverse and expansive nature of agricultural operations. Recognizing the need for a more streamlined and scalable solution, our current researchfocusesonthedevelopmentof an AI-based irrigation schedule generator. This automated system aims to simplify the interaction betweenfarmersand technology, requiring nothing more than the input of the crop's name to provide a comprehensive and optimized irrigation plan for the entire croplifecycle.Theobjectiveisto empower farmers with a tool that not only enhances precision but also significantly reduces the time and effort traditionally associated with developing intricate irrigation schedules. In this paper, we delve into the architecture, methodologies, and results of our AI-based irrigation schedule generator. We anticipate that this innovative approach will revolutionize farming practices by bringing forth a solution that marries technology with agriculture, promoting sustainability, resource conservation, and increased crop yields. 2. Methodology 2.1.1 Dataset Creation The dataset utilized in this research represents a meticulous and comprehensive compilation of agricultural data, specifically curated to model and predict crop water requirements in a greenhousecontext.Theprocessofdataset preparation involved the collaboration of interdisciplinary teams, including agricultural experts, data scientists, and domain specialists. To ensure the dataset's richness and relevance, information was gathered on a diverse array of crops, ranging from staple grains to fruits and cash crops. Each entry in the dataset is characterized by a set of features crucial forunderstanding theintricaterelationshipsbetween crops and their environmental conditions. The features include the crop type, climate zone, soil type, ideal
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 802 temperature, humidity preferences, water requirements measured in millimeters, and the typical lifespan or growth cycle duration of the crops. To enhance the dataset's accuracy, inputs were sourced through extensive surveys conducted among agriculture students, consultations with farmers, and the integration of existing agricultural knowledge. This collaborative and multidisciplinary approach ensured that the dataset encapsulates the nuanced requirements of variouscrops,layingthegroundworkforthe development of a robust decision tree regression model that accurately predictswaterneedsandfacilitatesthegeneration of tailored irrigation schedules for optimized greenhouse cultivation. Fig. 1: Dataset Created 2.1.1 Data Preprocessing In the preparatory phase of this project, meticulous data preprocessing played a pivotal role in refining the raw agricultural dataset, ensuring its suitability for training the decision tree regression model. The dataset underwent a thorough examination for missing values, with strategic imputation or removal of incompleteentriestopreservedata integrity. Outlier detection and treatment strategies were implemented to address potential anomalies that could impact model training. Numerical features underwent standardizationthroughscalingtechniques,ensuringuniform influence during model training. Categorical variables were encoded into numerical representations, facilitating the model's interpretation of such data. The dataset was strategically split into training and validation sets, enabling robust model training and evaluation. Feature selection methods were employed to identify the most influential variables, streamlining the dataset for optimal model performance. Additionally, the target variable representing water requirements underwent normalization for consistency and improved model convergence during training. This comprehensive data preprocessing approach resulted in a refined and well-structured dataset, laying a solid foundation for the subsequent training and evaluation of the decision tree regression model. 2.2 Machine Learning Model 2.2.1 Model Selection The comparative analysis conducted for model selection in this project involved evaluating various supervised learning models to determine the most effective approach for predicting optimal irrigation schedules. Commonly consideredmodelsinthiscomparativeanalysismightinclude LinearRegression, Support Vector Machines(SVM),Random Forest, and Decision Tree Regression. The evaluationcriteria encompassed factors such as predictive accuracy, computational efficiency, interpretability, and the model's ability to handle the complex relationships inherent in predicting water requirements for diverse crops. Additionally, consideration was given to the specific characteristics of the dataset, including the number of features, the nature of the target variable, and the potential presence of non-linear relationships. Performance metrics, such as Mean Squared Error (MSE), Mean Absolute Error (MAE), and R-squared, were employed to quantitatively assessthemodels'predictivecapabilities.Theinterpretability of each model was qualitatively evaluated, recognizing the importance of transparent decision-making, particularly in agricultural applications. Ultimately, the Decision Tree Regression model wasselected based on its favorable balance of predictive accuracy, interpretability, and suitability forhandling the complexand non-linear relationships involved in predicting water requirements for crops in a greenhouse environment. This choice was made after a thorough examination of the strengths and weaknesses of each model through the lens of the specific requirementsandcharacteristicsoftheirrigation scheduling prediction task. 2.2.2 Training and Validation In the training and validation phase of this project, the decision tree regression algorithm played a pivotal role in creating a model capable of predicting water requirements for various crops in a greenhouse setting. The dataset, comprising information on temperature, humidity, soil type, and other attributes relevant to crop growth, was divided into training and validation sets. The training set was employed to teach the model patterns within the data, enabling it to establish relationships between input features and the correspondingwaterrequirements.Thedecisiontree model was fine-tuned during training to enhance its predictive accuracy. To ensure the model's generalizability and prevent overfitting to the training data, a validation set was utilized. This set, distinct from the training data, enabled the assessment of the model's performance on unseen data. By iteratively adjusting model parameters and evaluating its performance on the validation set, we aimed to strike a balance between predictive power and avoiding overly
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 803 complex models that might not generalize well.Thisiterative process of training,validation,andadjustmentwascrucialfor refining the decision tree model, ensuringitsrobustness,and ultimately producing an accurate and practical tool for predictingcropwaterrequirementsandgeneratingirrigation schedules in a greenhouse environment. 2.2.3 Real-time Adaptation Integration with real-timedata streams enables themodelto adapt continually. Environmentalsensorsprovideup-to-the- minute information, allowing the system to make dynamic adjustments 2.3 User Interaction In the user interaction phase of this project, a user-friendly interface was developed using a Flask-based graphical user interface (GUI) application. The user ispromptedtoinputthe name of the crop for which they seek irrigation recommendations. As shown in figure 2. Upon entering the crop name, the system fetches relevantdatafromthedataset, providing the user with optimal weather conditions for Subsequently, the user receives two key outputs. First, they are presented with a comprehensive CSV file detailing the This schedule includes the daily water requirement and the corresponding duration the irrigation motor should run to meet these needs efficiently. As shown in figure 3. This CSV file serves as a practical guide for greenhouse management, facilitating streamlined and resource-efficient crop cultivation. The CSV file generated from the output can be downloaded. As shown in Figure 4, it contains the entire watering schedule, including daily water requirements in liters and the amount of time needed to keep the motor on to fulfill that requirement. This is dependent upon the area of irrigation, and the size of the motor is provided. Fig. 4: Output CSV file 3. CONCLUSIONS This schedule generator (Phase 2 of Techno green Project) combined with the Automated IrrigationSystemforEfficient and Portable Farming (Phase 1 of techno green published in 2023 International Conference on Power, Instrumentation, Control and Computing (PICC)) provides a truly fully automated and efficient solution which is more efficient than any other existing irrigation system. The model presented is capable of generate full life irrigation schedule for any Indian crop quickly and precisely. The GUI provides the easy way of interacting with model forfarmers havingno knowledge of coding. In conclusion, this researchintroduces a decision tree regression model designed to revolutionize greenhouse irrigation practices.Throughmeticulousdataset construction, model training, and validation, the proposed model demonstrated commendable accuracy, evidenced by low Mean Absolute Error (MAE),MeanSquaredError(MSE), and a high R-squared (R2) score. The model's robustness and interpretability were affirmed through cross-validation and feature importance analysis. REFERENCES [1] A. A. Desai, R. A. Metri, S. R. Patil, A. A. Nagargoje and D. S. Desai, "Automated Irrigation System for Efficient and Portable Farming," 2023 International Conference on Power, Instrumentation, Control andComputing(PICC), Thrissur, India, 2023, pp. 1-6, doi: 10.1109/PICC57976.2023.10142376.M. Young, The Technical Writer’s Handbook. Mill Valley,CA:University Science, 1989. cultivating the selected crop. Fig. 2: Input page day-to-day irrigation schedule for the specified crop. Fig. 3: Output page
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 804 [2] S. Pathak, I. Mishra and A. Swetapadma, "AnAssessment of Decision Tree based Classification and Regression Algorithms," 2018 3rd International Conference on Inventive Computation Technologies (ICICT), Coimbatore, India, 2018, pp. 92-95, doi: 10.1109/ICICT43934.2018.9034296. [3] I. V. Chugunkov, D. V. Kabak, V. N. Vyunnikov and R. E. Aslanov, "Creation of datasets from opensources,"2018 IEEE Conference of Russian Young Researchers in Electrical and Electronic Engineering (EIConRus), Moscow and St. Petersburg, Russia, 2018, pp. 295-297, doi: 10.1109/EIConRus.2018.8317091. [4] K. M P and D. N R, "Crop Prediction Based on Influencing Parameters for Different States in India- The Data Mining Approach," 2021 5th International Conference on Intelligent Computing and Control Systems (ICICCS), Madurai, India, 2021, pp. 1785-1791, doi: 10.1109/ICICCS51141.2021.9432247.