SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3041
Pressure Prediction System in Lung Circuit using Deep Learning and
Machine Learning
Dr. Vinod Wadne, Onkar Wanve, Anjali Singh, Yash Hanabar, Siddhesh Wable
UG Student, Department of Computer Engineering,
JSPM’s Imperial College of Engineering & Research, Pune, India
--------------------------------------------------------------------***---------------------------------------------------------------------
Abstract -A massive numberofpatientsinfectedwithSARS-
CoV2 and Delta variant of COVID-19 have generated acute
respiratory distress syndrome (ARDS) which needs intensive
care, which includes mechanical ventilation. But due to the
huge no of patients, the workload and stress on healthcare
infrastructure and related personnel have grown
exponentially. Thishasresultedinhugedemandfor innovation
in the field of automated healthcare whichcanhelpreducethe
stress on the current healthcare infrastructure. This work
gives a solution for the issue of Pressure prediction in
mechanical ventilation. The algorithm suggested by the
researchers tries to predict the pressure in the respiratory
circuit for various lung conditions. Prediction of pressure in
the lungs is a type of sequence prediction problem. LSTM
(Long Short-Term Memory) is themostefficientsolutiontothe
sequence prediction problem. Due to its ability to selectively
remember patterns over the long term, LSTMhasanedgeover
normal RNN. RNN is good for short-term patterns but for
sequence prediction problems LSTM is preferred.
Key Words: Machine Learning, RNN, LSTM, Pytorch,COVID-
19 Pandemic
1. INTRODUCTION
Many diseases, such as pneumonia, heart failure, COVID-19,
etc., lead to lung failure for many different reasons. A person
who cannot breathe on his own or has difficulty breathing
needs to be given some external support to help with
breathing. This help is provided to the patient with the help
of a mechanical ventilator, and once the patient is stable,
they are weaned off the ventilator.Amechanical ventilatoris
a machine that helps pump oxygen into a person’s body
through a tube that goes in the mouth and down to the
windpipe. According to the patient's condition and needs,
the doctor programs the ventilator to push air when the
patient needs help.
Mechanical ventilators use a PID (proportional-integral-
derivative) control algorithm to automatically adjust the
oxygen concentration in the patient according to the
patient's requirements. These controllers use several
physiological data pointsofthepatient,suchasthebreathing
frequency, oxygen level, etc., to help the patient get stable
and provide an appropriate amount of oxygen. The input to
the system includes the carbon dioxide level, oxygen level,
and air resistance. These ventilators help adjust the
breathing frequency in a clinically appropriate manner in
response to the changes in thepatient'sbreathingfrequency.
Mechanical ventilators are clinicallycontrolledandoperated
by doctors and nurses who are trained to handle them.
However, PID controllers have certain limitations. When it
comes to a process that is integrated and has a large time
delay, performance is poor. Small changes or deviations are
not reflected easily. The purpose of the given system is to
eliminate these limitations. Using the concepts of deep
learning, these limitations can be almost eliminated and the
system can work with greater efficiency. Giventechnologyis
budget-friendly for hospitals. The amount of manpower
required to ventilate a single patient will be reduced, which
can be an enormous benefit, especially in pandemic
situations.
According to the resource Virus Centre of Johns Hopkins
Medicine, 2.2% out of total worldwide COVID-19 affected
people are died due to the acute respiratory syndrome
analyzed since November 2019.GroundGlassOpacity(GGO)
has been observed that the COVID-19 variants especially
delta one cause pneumonia inboththelungs.Alargenumber
of people infected with Delta and other variants have acute
respiratory distress syndrome (ARDS) and they need high-
level medical facilities like invasive mechanical ventilation.
The effect of COVID-19 variants on the immune system,
ground-glass opacity, and the differentneoplasticchangesin
the lungs due to SARS-CoV2 and other variants attacksisthe
key focused area.
2. LITERATURE SURVEY
In this paper [1] author tries to suggest that it is convenient
to use HMMs algorithm to predict the pressureofventilators
in sedated patients and to results that the given threshold
value of asynchrony events has such a probability. Unlike
other studies based on very limited observation periods in
patients with specificconditions,authorsanalyzedthe whole
period of mechanical ventilation in a different wide range of
the population of ICU patients with a different variety of
critical illnesses.
In this paper [2], different settings of mechanical ventilation
of ventilators are analysed depending on the particular
patient's lungs condition, and the determination of these
parameters depends on the observed patient's past medical
history and the experience of the clinicians involved in their
practice. In the research, they have used Graded Particle
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3042
Swarm Optimizer (GPSO) for the analysis of patients'
medical data. The main limitation of the current study is, all
the data of patients were recorded manually, and these
readings of ventilator parameters were taken at random
intervals of time that are not continuous readings.
In this paper [3] author suggests a retrospectivemulticentre
study of all patients with COVID-19 patients, who were
presented to the ER clinician at Beaumont Health, which is
the largest health care system in Michigan. The author has
developed two separate decision-tree-based, which is an
ensemble to ML algorithm. This study has two objectives,
one is a prediction of mechanical ventilation and the second
one is Mortality.
In this paper [4] author designed the end-to-endpipelinefor
learning a PID controller, alsotheimprovementisdoneupon
PID controllers for tracking ventilator pressure waveforms.
All the improvements measures are considered concerning
the ISO standards for better performance of ventilator
support parameters.
3. PROPOSED SYSTEM
Feature engineering means the process of using domain
knowledge for the purpose to extract the data and convert
the most relevant variables from raw data while building a
predictive model using supervisedlearning,deeplearning or
statistical modeling. The main need of the feature
engineering phase is to enhancetheperformanceofmachine
learning (ML) and deep learning (DL) algorithms.
Figure 1: Feature engineering framework
4. METHODOLOGY
4.1 Recurrent Neural Networks
RNN is a progression on the feedforward type of neural
networks where the output from the last computation is
supplied as input for the next computation and this is where
the word recurrent comes from. InRNNstheoutputfrom the
last computation is copied and stored as a hidden state. For
the next computation, the input for that step andthevaluein
the hidden state is taken into consideration. With us dataset
contains data in the form of a sequence, and RNN is found to
be one of the better models for dealing with such sequential
data.
4.2Long Short-Term Memory Network
LSTM network is a modern version of recurrent neural
networks, which has a memory so it makes it easier for it to
compute a large sequence of data. The problem of
insufficient memory or storage to remember previously
stored data in hidden states for a long term in RNN is solved
here. The LSTM operates a bit similar to the logic circuit and
it has three gates that help it in its decision-making process.
4.3MLP Multilayer Perceptron
Understanding the multilayer perceptron network helps us
to get information about the underlying reasons in the high-
level models of deep learning. Simple regression problems
can be easily solved with the help of MLP. A multilayer
perceptron tries to remember patterns in sequential data,
because of this to process a multidimensional dataset we
require a large number of parameters in the dataset.
4.4 K-Fold technique
K-Fold is a validation technique in which the data
are divided into k subsets and the holdout methodisapplied
k times. In the process, every set of subsets is used as a test
set and the other remaining subsets are used forthetraining
purpose. Then the mean value error is calculated from all
these k outcomes, which is more reliable as compared to the
standard handout method. Group K-Fold is an advanced
version of the k-fold technique whichvalidatesthatthesame
sample group data is not represented in both thetestsetand
train set.
4.4.1 Cross-validation
It is not a good practice to swat the parameters of training
data and test it on the same. A model which is trained and
built by just repeating the labels of the samplesofdata thatit
has just seen would give perfect results but with the unseen
data, it may fail to predict anything useful. Such kind of
problem is known as over fitting.To overcome this over
fitting, it is suggested to divide available test dataset data
into two parts such as X-test and Y-test while performing a
supervised learning experiment. Now comes the most
important part which is training the model and
experimenting on it, because the experiment phase is an
integral part of model development. Even commercially
machine learning usually starts experimentally.
4.5 DATASET DESCRIPTION
These are the data parameters we have used in our model:
• Breath_id: unique id for each breath
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3043
• R: lung attribute indicating how restricted the
airway is
• C: lung attribute indicating how compliant the lung
is
• Time_step : Time stamp
• U_in: control input for inspiratory valve. Range 0-
100 percentage
• U_out: control input for expiratory valve Range 0-1
closed or open
• Pressure: pressure in the respiratory circuit
Figure 2: Dataset components
4.6 OUTCOME
The predicted pressure as a output for a unique idofPatient:
5. ALGORITHM
Step 1: Start
Step 2: Login activity validates the user data.
Step 3: Enter patients Lung attribute Parametres (R &C)
Step 4: enter the Time stamp and u_in, u_out Parmeters
Step 5: Raw data send to server application, and input data
to trained Model
Step 6: Output data (predicted pressure) sent from server
displayed on the screen
Step 7: Plot graph for u_in u_out and predicted pressure
Step 8: Exit
6. IMPLEMENTATION
What do doctors do when a patient has trouble breathing?
They use a ventilator to pump oxygen into a sedated
patient's lungs via a tube in the windpipe. Our project aims
for mechanical ventilation control by Machine Learning. We
believe that neural networks and deep learning can better
generalize across lungs with varying characteristicsthanthe
current industry standard of PID controllers.
Typically workflow of machine learning projects is
expressed by following figure.
Figure 3: Workflow of ML Model
Matplotlib in python is a powerful tool usedforthegraphical
representation of data with the help of other libraries like
pandas and NumPy. It is like performing MATLAB functions
and methods in python. It is used for generating statistical
interferences and plotting 2D graphs of arrays and
sometimes 3D also. Matplotlib was used to create the graph.
The graph describes the u_in, u_out,andpressurevariance of
a particular patient over different time steps. Figure 5
depicts a graph plotting example using Matplotlib.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3044
Figure 3: Change in u_in, u_out and pressure for particular
patient over different time stamp
MAE(Mean Absolute Error):
Mean Absolute Error, also known as MAE, is one of the many
metrics for summarizing and assessing the quality of a
machine learning model.
7. OBJECTIVES
 To predict the Ventilator pressure using machine
learning model with the help of LSTM algorithm.
 To predict the pressure in respiratory circuit for
different lung conditions
 To implement the project using web development.
8. CONCLUSIONS
This study will help us develop an algorithm and machine
learning that will help cliniciansinpredictingpressurelevels
in the lungs of patients with varying different body
conditions while putting them on mechanical ventilation.
This will reduce the workload from the healthcare workers,
which is present like conditions like pandemics are
increasing. The predictions for mechanical ventilation get
easier with parameters such as age, resistance in the
respiratory tract, and compliancy of lungs this helps the
clinician in their decision-making process.
9. REFERENCES
1. Marchuk, Y., Magrans, R., Sales, B., Montanya, J., López-
Aguilar, J., de Haro, C., Gomà, G., Subirà, C., Fernández,R.,
Kacmarek, R., Blanch, L.: Predicting Patient-ventilator
Asynchronies with Hidden Markov Models. Scientific
Reports. 8, (2018).
2. Oruganti Venkata, S., Koenig,A., Pidaparti,R.:Mechanical
Ventilator Parameter Estimation for Lung Health
through Machine Learning.Bioengineering.8,60(2021).
3. Yu, L., Halalau, A., Dalal, B., Abbas, A., Ivascu, F., Amin,M.,
Nair, G.: Machine learning methods to predict
mechanical ventilation and mortality in patients with
COVID-19. PLOS ONE. 16, e0249285 (2021).
4. Sayed, M., Riaño, D., Villar, J.: Predicting Duration of
Mechanical Ventilation in Acute Respiratory Distress
Syndrome Using Supervised Machine Learning. Journal
of Clinical Medicine. 10, 3824 (2021).
5. Data Set: Google Brain - Ventilator Pressure Prediction |
Kaggle
6. https://www.worldometers.info/coronavirus/
Coronavirus Stats
7. Parums, D.: Editorial: Revised World Health
Organization (WHO) Terminology for Variants of
Concern and Variants of Interest ofSARS-CoV-2.Medical
Science Monitor. 27, (2021).
8. Parikshit N. Mahalle1, Nilesh P. Sable2, Namita P.
Mahalle3, Gitanjali R. Shinde4, " Predictive Analytics of
COVID-19 using Information, Communication, and
Technologies", doi:10.20944/preprints202004.0257.v1
9. Ghodke, S.V., Sikhwal, A. And Sable, D.N., 2021. Novel
Approach of Automatic Disease Prediction and Regular
Check-Up System using Ml/Dl. Design Engineering,
Pp.2885-2896

More Related Content

Similar to Pressure Prediction System in Lung Circuit using Deep Learning and Machine Learning

A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNINGA SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
IRJET Journal
 
Principal component analysis based approach for fault diagnosis in pneumatic ...
Principal component analysis based approach for fault diagnosis in pneumatic ...Principal component analysis based approach for fault diagnosis in pneumatic ...
Principal component analysis based approach for fault diagnosis in pneumatic ...
eSAT Publishing House
 
Deep Learning Approach for Unprecedented Lung Disease Prognosis
Deep Learning Approach for Unprecedented Lung Disease PrognosisDeep Learning Approach for Unprecedented Lung Disease Prognosis
Deep Learning Approach for Unprecedented Lung Disease Prognosis
IRJET Journal
 
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMAAN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
IRJET Journal
 
Care expert assistant for Medicare system using Machine learning
Care expert assistant for Medicare system using Machine learningCare expert assistant for Medicare system using Machine learning
Care expert assistant for Medicare system using Machine learning
IRJET Journal
 
Lung Cancer Detection using Convolutional Neural Network
Lung Cancer Detection using Convolutional Neural NetworkLung Cancer Detection using Convolutional Neural Network
Lung Cancer Detection using Convolutional Neural Network
IRJET Journal
 
Pneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network WritersPneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network Writers
IRJET Journal
 
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray ScansDeep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
IRJET Journal
 
Lung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask IntegrationLung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask Integration
IRJET Journal
 
Covid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray ImagesCovid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray Images
IRJET Journal
 
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
IJECEIAES
 
IoT Based Intelligent Medicine Box with Assistance
IoT Based Intelligent Medicine Box with AssistanceIoT Based Intelligent Medicine Box with Assistance
IoT Based Intelligent Medicine Box with Assistance
IRJET Journal
 
IRJET- IoT based Advanced Healthcare Architecture: A New Approach
IRJET- IoT based Advanced Healthcare Architecture: A New ApproachIRJET- IoT based Advanced Healthcare Architecture: A New Approach
IRJET- IoT based Advanced Healthcare Architecture: A New Approach
IRJET Journal
 
A Review Paper on Doctorless Intelligent Covid Center
A Review Paper on Doctorless Intelligent Covid CenterA Review Paper on Doctorless Intelligent Covid Center
A Review Paper on Doctorless Intelligent Covid Center
IRJET Journal
 
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERYLIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
IRJET Journal
 
Development of Diagnostic Tools for Pathologies of Respiratory System using P...
Development of Diagnostic Tools for Pathologies of Respiratory System using P...Development of Diagnostic Tools for Pathologies of Respiratory System using P...
Development of Diagnostic Tools for Pathologies of Respiratory System using P...
IRJET Journal
 
IRJET- A Prediction Engine for Influenza Pandemic using Healthcare Analysis
IRJET- A Prediction Engine for Influenza  Pandemic using Healthcare AnalysisIRJET- A Prediction Engine for Influenza  Pandemic using Healthcare Analysis
IRJET- A Prediction Engine for Influenza Pandemic using Healthcare Analysis
IRJET Journal
 
Patient Privacy Control for Health Care in Cloud Computing System
Patient Privacy Control for Health Care in Cloud Computing  SystemPatient Privacy Control for Health Care in Cloud Computing  System
Patient Privacy Control for Health Care in Cloud Computing System
IRJET Journal
 
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEMA COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
IRJET Journal
 
IRJET - Review on Classi?cation and Prediction of Dengue and Malaria Dise...
IRJET -  	  Review on Classi?cation and Prediction of Dengue and Malaria Dise...IRJET -  	  Review on Classi?cation and Prediction of Dengue and Malaria Dise...
IRJET - Review on Classi?cation and Prediction of Dengue and Malaria Dise...
IRJET Journal
 

Similar to Pressure Prediction System in Lung Circuit using Deep Learning and Machine Learning (20)

A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNINGA SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
A SURVEY ON BLOOD DISEASE DETECTION USING MACHINE LEARNING
 
Principal component analysis based approach for fault diagnosis in pneumatic ...
Principal component analysis based approach for fault diagnosis in pneumatic ...Principal component analysis based approach for fault diagnosis in pneumatic ...
Principal component analysis based approach for fault diagnosis in pneumatic ...
 
Deep Learning Approach for Unprecedented Lung Disease Prognosis
Deep Learning Approach for Unprecedented Lung Disease PrognosisDeep Learning Approach for Unprecedented Lung Disease Prognosis
Deep Learning Approach for Unprecedented Lung Disease Prognosis
 
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMAAN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
AN ADVANCED MONITORING AND HEALTH CARE FOR ASTHMA
 
Care expert assistant for Medicare system using Machine learning
Care expert assistant for Medicare system using Machine learningCare expert assistant for Medicare system using Machine learning
Care expert assistant for Medicare system using Machine learning
 
Lung Cancer Detection using Convolutional Neural Network
Lung Cancer Detection using Convolutional Neural NetworkLung Cancer Detection using Convolutional Neural Network
Lung Cancer Detection using Convolutional Neural Network
 
Pneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network WritersPneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network Writers
 
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray ScansDeep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
 
Lung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask IntegrationLung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask Integration
 
Covid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray ImagesCovid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray Images
 
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
Real-time Heart Pulse Monitoring Technique Using Wireless Sensor Network and ...
 
IoT Based Intelligent Medicine Box with Assistance
IoT Based Intelligent Medicine Box with AssistanceIoT Based Intelligent Medicine Box with Assistance
IoT Based Intelligent Medicine Box with Assistance
 
IRJET- IoT based Advanced Healthcare Architecture: A New Approach
IRJET- IoT based Advanced Healthcare Architecture: A New ApproachIRJET- IoT based Advanced Healthcare Architecture: A New Approach
IRJET- IoT based Advanced Healthcare Architecture: A New Approach
 
A Review Paper on Doctorless Intelligent Covid Center
A Review Paper on Doctorless Intelligent Covid CenterA Review Paper on Doctorless Intelligent Covid Center
A Review Paper on Doctorless Intelligent Covid Center
 
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERYLIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
 
Development of Diagnostic Tools for Pathologies of Respiratory System using P...
Development of Diagnostic Tools for Pathologies of Respiratory System using P...Development of Diagnostic Tools for Pathologies of Respiratory System using P...
Development of Diagnostic Tools for Pathologies of Respiratory System using P...
 
IRJET- A Prediction Engine for Influenza Pandemic using Healthcare Analysis
IRJET- A Prediction Engine for Influenza  Pandemic using Healthcare AnalysisIRJET- A Prediction Engine for Influenza  Pandemic using Healthcare Analysis
IRJET- A Prediction Engine for Influenza Pandemic using Healthcare Analysis
 
Patient Privacy Control for Health Care in Cloud Computing System
Patient Privacy Control for Health Care in Cloud Computing  SystemPatient Privacy Control for Health Care in Cloud Computing  System
Patient Privacy Control for Health Care in Cloud Computing System
 
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEMA COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
A COMPREHENSIVE SURVEY ON CARDIAC ARREST RISK LEVEL PREDICTION SYSTEM
 
IRJET - Review on Classi?cation and Prediction of Dengue and Malaria Dise...
IRJET -  	  Review on Classi?cation and Prediction of Dengue and Malaria Dise...IRJET -  	  Review on Classi?cation and Prediction of Dengue and Malaria Dise...
IRJET - Review on Classi?cation and Prediction of Dengue and Malaria Dise...
 

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 STRUCTURE
IRJET 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 Characteristics
IRJET 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 ADAS
IRJET 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 Pro
IRJET 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 System
IRJET 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 bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET 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 Design
IRJET 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

Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 

Recently uploaded (20)

Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 

Pressure Prediction System in Lung Circuit using Deep Learning and Machine Learning

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3041 Pressure Prediction System in Lung Circuit using Deep Learning and Machine Learning Dr. Vinod Wadne, Onkar Wanve, Anjali Singh, Yash Hanabar, Siddhesh Wable UG Student, Department of Computer Engineering, JSPM’s Imperial College of Engineering & Research, Pune, India --------------------------------------------------------------------***--------------------------------------------------------------------- Abstract -A massive numberofpatientsinfectedwithSARS- CoV2 and Delta variant of COVID-19 have generated acute respiratory distress syndrome (ARDS) which needs intensive care, which includes mechanical ventilation. But due to the huge no of patients, the workload and stress on healthcare infrastructure and related personnel have grown exponentially. Thishasresultedinhugedemandfor innovation in the field of automated healthcare whichcanhelpreducethe stress on the current healthcare infrastructure. This work gives a solution for the issue of Pressure prediction in mechanical ventilation. The algorithm suggested by the researchers tries to predict the pressure in the respiratory circuit for various lung conditions. Prediction of pressure in the lungs is a type of sequence prediction problem. LSTM (Long Short-Term Memory) is themostefficientsolutiontothe sequence prediction problem. Due to its ability to selectively remember patterns over the long term, LSTMhasanedgeover normal RNN. RNN is good for short-term patterns but for sequence prediction problems LSTM is preferred. Key Words: Machine Learning, RNN, LSTM, Pytorch,COVID- 19 Pandemic 1. INTRODUCTION Many diseases, such as pneumonia, heart failure, COVID-19, etc., lead to lung failure for many different reasons. A person who cannot breathe on his own or has difficulty breathing needs to be given some external support to help with breathing. This help is provided to the patient with the help of a mechanical ventilator, and once the patient is stable, they are weaned off the ventilator.Amechanical ventilatoris a machine that helps pump oxygen into a person’s body through a tube that goes in the mouth and down to the windpipe. According to the patient's condition and needs, the doctor programs the ventilator to push air when the patient needs help. Mechanical ventilators use a PID (proportional-integral- derivative) control algorithm to automatically adjust the oxygen concentration in the patient according to the patient's requirements. These controllers use several physiological data pointsofthepatient,suchasthebreathing frequency, oxygen level, etc., to help the patient get stable and provide an appropriate amount of oxygen. The input to the system includes the carbon dioxide level, oxygen level, and air resistance. These ventilators help adjust the breathing frequency in a clinically appropriate manner in response to the changes in thepatient'sbreathingfrequency. Mechanical ventilators are clinicallycontrolledandoperated by doctors and nurses who are trained to handle them. However, PID controllers have certain limitations. When it comes to a process that is integrated and has a large time delay, performance is poor. Small changes or deviations are not reflected easily. The purpose of the given system is to eliminate these limitations. Using the concepts of deep learning, these limitations can be almost eliminated and the system can work with greater efficiency. Giventechnologyis budget-friendly for hospitals. The amount of manpower required to ventilate a single patient will be reduced, which can be an enormous benefit, especially in pandemic situations. According to the resource Virus Centre of Johns Hopkins Medicine, 2.2% out of total worldwide COVID-19 affected people are died due to the acute respiratory syndrome analyzed since November 2019.GroundGlassOpacity(GGO) has been observed that the COVID-19 variants especially delta one cause pneumonia inboththelungs.Alargenumber of people infected with Delta and other variants have acute respiratory distress syndrome (ARDS) and they need high- level medical facilities like invasive mechanical ventilation. The effect of COVID-19 variants on the immune system, ground-glass opacity, and the differentneoplasticchangesin the lungs due to SARS-CoV2 and other variants attacksisthe key focused area. 2. LITERATURE SURVEY In this paper [1] author tries to suggest that it is convenient to use HMMs algorithm to predict the pressureofventilators in sedated patients and to results that the given threshold value of asynchrony events has such a probability. Unlike other studies based on very limited observation periods in patients with specificconditions,authorsanalyzedthe whole period of mechanical ventilation in a different wide range of the population of ICU patients with a different variety of critical illnesses. In this paper [2], different settings of mechanical ventilation of ventilators are analysed depending on the particular patient's lungs condition, and the determination of these parameters depends on the observed patient's past medical history and the experience of the clinicians involved in their practice. In the research, they have used Graded Particle
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3042 Swarm Optimizer (GPSO) for the analysis of patients' medical data. The main limitation of the current study is, all the data of patients were recorded manually, and these readings of ventilator parameters were taken at random intervals of time that are not continuous readings. In this paper [3] author suggests a retrospectivemulticentre study of all patients with COVID-19 patients, who were presented to the ER clinician at Beaumont Health, which is the largest health care system in Michigan. The author has developed two separate decision-tree-based, which is an ensemble to ML algorithm. This study has two objectives, one is a prediction of mechanical ventilation and the second one is Mortality. In this paper [4] author designed the end-to-endpipelinefor learning a PID controller, alsotheimprovementisdoneupon PID controllers for tracking ventilator pressure waveforms. All the improvements measures are considered concerning the ISO standards for better performance of ventilator support parameters. 3. PROPOSED SYSTEM Feature engineering means the process of using domain knowledge for the purpose to extract the data and convert the most relevant variables from raw data while building a predictive model using supervisedlearning,deeplearning or statistical modeling. The main need of the feature engineering phase is to enhancetheperformanceofmachine learning (ML) and deep learning (DL) algorithms. Figure 1: Feature engineering framework 4. METHODOLOGY 4.1 Recurrent Neural Networks RNN is a progression on the feedforward type of neural networks where the output from the last computation is supplied as input for the next computation and this is where the word recurrent comes from. InRNNstheoutputfrom the last computation is copied and stored as a hidden state. For the next computation, the input for that step andthevaluein the hidden state is taken into consideration. With us dataset contains data in the form of a sequence, and RNN is found to be one of the better models for dealing with such sequential data. 4.2Long Short-Term Memory Network LSTM network is a modern version of recurrent neural networks, which has a memory so it makes it easier for it to compute a large sequence of data. The problem of insufficient memory or storage to remember previously stored data in hidden states for a long term in RNN is solved here. The LSTM operates a bit similar to the logic circuit and it has three gates that help it in its decision-making process. 4.3MLP Multilayer Perceptron Understanding the multilayer perceptron network helps us to get information about the underlying reasons in the high- level models of deep learning. Simple regression problems can be easily solved with the help of MLP. A multilayer perceptron tries to remember patterns in sequential data, because of this to process a multidimensional dataset we require a large number of parameters in the dataset. 4.4 K-Fold technique K-Fold is a validation technique in which the data are divided into k subsets and the holdout methodisapplied k times. In the process, every set of subsets is used as a test set and the other remaining subsets are used forthetraining purpose. Then the mean value error is calculated from all these k outcomes, which is more reliable as compared to the standard handout method. Group K-Fold is an advanced version of the k-fold technique whichvalidatesthatthesame sample group data is not represented in both thetestsetand train set. 4.4.1 Cross-validation It is not a good practice to swat the parameters of training data and test it on the same. A model which is trained and built by just repeating the labels of the samplesofdata thatit has just seen would give perfect results but with the unseen data, it may fail to predict anything useful. Such kind of problem is known as over fitting.To overcome this over fitting, it is suggested to divide available test dataset data into two parts such as X-test and Y-test while performing a supervised learning experiment. Now comes the most important part which is training the model and experimenting on it, because the experiment phase is an integral part of model development. Even commercially machine learning usually starts experimentally. 4.5 DATASET DESCRIPTION These are the data parameters we have used in our model: • Breath_id: unique id for each breath
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3043 • R: lung attribute indicating how restricted the airway is • C: lung attribute indicating how compliant the lung is • Time_step : Time stamp • U_in: control input for inspiratory valve. Range 0- 100 percentage • U_out: control input for expiratory valve Range 0-1 closed or open • Pressure: pressure in the respiratory circuit Figure 2: Dataset components 4.6 OUTCOME The predicted pressure as a output for a unique idofPatient: 5. ALGORITHM Step 1: Start Step 2: Login activity validates the user data. Step 3: Enter patients Lung attribute Parametres (R &C) Step 4: enter the Time stamp and u_in, u_out Parmeters Step 5: Raw data send to server application, and input data to trained Model Step 6: Output data (predicted pressure) sent from server displayed on the screen Step 7: Plot graph for u_in u_out and predicted pressure Step 8: Exit 6. IMPLEMENTATION What do doctors do when a patient has trouble breathing? They use a ventilator to pump oxygen into a sedated patient's lungs via a tube in the windpipe. Our project aims for mechanical ventilation control by Machine Learning. We believe that neural networks and deep learning can better generalize across lungs with varying characteristicsthanthe current industry standard of PID controllers. Typically workflow of machine learning projects is expressed by following figure. Figure 3: Workflow of ML Model Matplotlib in python is a powerful tool usedforthegraphical representation of data with the help of other libraries like pandas and NumPy. It is like performing MATLAB functions and methods in python. It is used for generating statistical interferences and plotting 2D graphs of arrays and sometimes 3D also. Matplotlib was used to create the graph. The graph describes the u_in, u_out,andpressurevariance of a particular patient over different time steps. Figure 5 depicts a graph plotting example using Matplotlib.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3044 Figure 3: Change in u_in, u_out and pressure for particular patient over different time stamp MAE(Mean Absolute Error): Mean Absolute Error, also known as MAE, is one of the many metrics for summarizing and assessing the quality of a machine learning model. 7. OBJECTIVES  To predict the Ventilator pressure using machine learning model with the help of LSTM algorithm.  To predict the pressure in respiratory circuit for different lung conditions  To implement the project using web development. 8. CONCLUSIONS This study will help us develop an algorithm and machine learning that will help cliniciansinpredictingpressurelevels in the lungs of patients with varying different body conditions while putting them on mechanical ventilation. This will reduce the workload from the healthcare workers, which is present like conditions like pandemics are increasing. The predictions for mechanical ventilation get easier with parameters such as age, resistance in the respiratory tract, and compliancy of lungs this helps the clinician in their decision-making process. 9. REFERENCES 1. Marchuk, Y., Magrans, R., Sales, B., Montanya, J., López- Aguilar, J., de Haro, C., Gomà, G., Subirà, C., Fernández,R., Kacmarek, R., Blanch, L.: Predicting Patient-ventilator Asynchronies with Hidden Markov Models. Scientific Reports. 8, (2018). 2. Oruganti Venkata, S., Koenig,A., Pidaparti,R.:Mechanical Ventilator Parameter Estimation for Lung Health through Machine Learning.Bioengineering.8,60(2021). 3. Yu, L., Halalau, A., Dalal, B., Abbas, A., Ivascu, F., Amin,M., Nair, G.: Machine learning methods to predict mechanical ventilation and mortality in patients with COVID-19. PLOS ONE. 16, e0249285 (2021). 4. Sayed, M., Riaño, D., Villar, J.: Predicting Duration of Mechanical Ventilation in Acute Respiratory Distress Syndrome Using Supervised Machine Learning. Journal of Clinical Medicine. 10, 3824 (2021). 5. Data Set: Google Brain - Ventilator Pressure Prediction | Kaggle 6. https://www.worldometers.info/coronavirus/ Coronavirus Stats 7. Parums, D.: Editorial: Revised World Health Organization (WHO) Terminology for Variants of Concern and Variants of Interest ofSARS-CoV-2.Medical Science Monitor. 27, (2021). 8. Parikshit N. Mahalle1, Nilesh P. Sable2, Namita P. Mahalle3, Gitanjali R. Shinde4, " Predictive Analytics of COVID-19 using Information, Communication, and Technologies", doi:10.20944/preprints202004.0257.v1 9. Ghodke, S.V., Sikhwal, A. And Sable, D.N., 2021. Novel Approach of Automatic Disease Prediction and Regular Check-Up System using Ml/Dl. Design Engineering, Pp.2885-2896