SlideShare une entreprise Scribd logo
1  sur  5
Télécharger pour lire hors ligne
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6215
Hybrid Architecture of Heart Disease Prediction System using
Genetic Neural Network
Kumkum Chaudhary1, Radhika Naidu2, Rhea Rai3, Narendra Gawai4
1,2,3Dept. of Computer Science and Technology, SNDT University, Maharashtra, India
4Professor, Dept. of Computer Science and Technology, SNDT University, Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Data mining techniques have been used in
disease diagnosis, disease risk evaluation, patient
monitoring, robotic handling of surgeries and predicting
effect of new medicines but lack behind in certain factors
such as accuracy, speed, performance etc. This paper
proposes and evaluates Neural Network and Genetic
Algorithm for diagnosing risk of heart disease. Risk factors
viz. Blood Pressure, Blood Chest Pain Type, Heart Rate,
Cholesterol, ECG, Diabetes, Sex, Physical Activity, etc. have
been taken as inputs to the system. The system classifies the
input samples and predicts whether heart disease is present
or absent. The results of proposed system have been
compared with system which was developed by using
traditional algorithms; in terms of Accuracy, Mean Square
Error and Regression and found better. This hybrid system
will predict the presence of heart disease in more efficient
manner.
Keywords - Genetic Algorithm, Neural network, Naive
Bayes, Decision Tree, Mean Square Error, Risk factors.
1. INTRODUCTION
The current scenario for the diagnosis of heart disease
uses clinical dataset having parameters and inputs from
complex tests conducted in labs. None of the present
system predicts heart diseases based on risk factors such
as age, family history, diabetes, hypertension, high
cholesterol, tobacco smoking, alcohol intake, obesity or
physical inactivity, etc. Patient suffering from heart
disease have the above mentioned risk factors in common
which can be used to diagnose diseases effectively.
This paper proposes a system which is computer-based
clinical decision support and can reduce medical errors,
improve patient safety and reduce unnecessary changes in
practice, and improve the prognosis of the patient’s
medical history to integrate patients. The main objective
of this study is to develop a prototype of heart disease
forecasting system using data mining and neural network
concepts. a huge knowledge and accurate data in the field
not only helps users by providing effective treatment, but
also help to reduce the cost of treatment and improve the
visualization and ease of explanation.
There are some methods in the literature individually to
diagnose heart disease such as Decision Tree, Naive Bayes,
K-means, SVM, etc. These algorithms possess many
drawbacks such as they cannot handle large, noisy and
missing data which leads to difficulty in interpreting the
result. There is no automated diagnosis method to
diagnose the disease. The system based on above
mentioned risk factors would not only help medical
professionals but also it would give patients a warning
about the probable presence of heart disease even before
he visits a hospital or goes for costly medical checkups.
Medical organizations invest heavily in this type of activity
in order to focus on the risks involved and possible events.
2. REVIEW OF LITERATURE
Several data mining algorithms are used to find pattern
that can be used for predicting and in decision support
areas. For developing effective and intelligent heart
disease prediction system author Priyanga, P., and N. C.
Naveen(2017) used Naıve Bayes technique for classifying
task of data mining. In this system, patients must provide
values to the attributes for getting precise result. By using
UCI dataset; data was trained. Trained data was compared
with user input value. Traditional data mining techniques
does not yield accurate result but Na¨ıve Baye’s managed
to yield result close to accuracy. For classification purpose
Na¨ıve Bayes was used and result was in the form of low,
average, high and very high. Basically here classification
and prediction both were performed. Accuracy of the
system is dependent on algorithm and database used, and
here Naıve Bayes algorithm got 86% accurate result which
is more than all other traditional data mining
techniques[7]. Purushottam, Kanak Saxena, Richa
Sharma(2015) designed a system using decision tree
algorithm that creates rules for predicting heart disease.
Decision tree algorithm is used for solving regression and
classification problems too. Decision Tree is to create a
training model which can use to predict class. Decision
tree solves problem by using tree representation. In tree
representation internal nodes corresponds to attribute
leaf nodes corresponds to class label. Accuracy of the
system was 90% which was better, depending on its
performance. Reasonable accuracy in result of predicting
system can be provided by using a single data mining
technique. To boost accuracy level hybrid data mining
techniques can be used. Malav, Amita and kalyani
kadam(2017) carried out predictive analysis which was
done on UCI dataset by using K-means and ANN
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6216
algorithms. A model was developed which was used for
classification using ANN and K-means. The aim was to
classify the data according to heart disease better which
will lead to more reliable and efficient diagnosis[4]
3. SYSTEM ARCHITECTURE
The architecture of the proposed system is as displayed in
the figure below. The major components of the
architecture are as follows: patient database,
preprocessing, tokenization, training the model, test the
model, design fitness function, application of genetic
algorithm, results collection and prediction of heart
disease.
Fig -1: System Architecture
1. Patient database
The dataset as provided by University of California, Irvine
Machine Learning Repository is initially imported for the
analysis of this system work. The dataset consists of the
following attributes: age, chest pain, blood pressure,
cholesterol, diabetes, ECG, heart rate, physical activity,
slope, thalassemia, ca and sex. The final predicted
attribute will be specified in ‘num’. The attributes are
further elaborated in Table 1.
2. Preprocessing
Preprocessing is a significant stage in the knowledge
discovery process. Real world data tends to be noisy and
inconsistent. Data processing techniques like data cleaning
etc help in overcoming these drawbacks. Normalization of
the dataset helps in classify the data which further makes
the data to smoothly allow algorithms to execute with
efficient results. To carry out normalization, normalize
function is used. this helps in bifurcating the data into
classes. Then a variable will be created that is ‘num’ which
will hold the predicted attribute.
3. Tokenization
In tokenization, the data will be clubbed into set of
meaning sentences or chunks for further processing. This
will further enhance the efficiency of the data that has
undergone preprocessing.
4. Training the model
In the training part, the backpropagation algorithm as
mentioned above will be implemented. backpropagation
helps in finding a better set of weights in short amount of
time. The training is done on basis of the dataset input to
the system. Herein ‘min max’ function is implemented so
as to gain a matrix of minimum and maximum values as
specified in its argument. This function is applied for
training of the network. The efficiency of the system can
be improved every instance as many times the model is
trained, the number of iterations etc. The whole dataset
provided which consists of 13 attributes and 872 rows will
help the model undergo training. Training can also be
implemented by splitting the data in equalized required
amount of data partitions. In the user interactive GUI, as
the user will select train network option after entering his
data at the backend the .csv file of UCI dataset will be read
and normalization will be carried out so as to classify the
data into classes which becomes easier to be fed onto the
neural network. the neural network that is created here
will be consisting of three layers namely: input layer,
hidden layer and output layer. Hidden layers can be
customized to 2 or 3 as per users requirements. To
generate a network, train() function is implemented so as
to pass the inputs. this network will be stored in .mat file.
After the network is generated, we check for mean square
error.
5. Testing the model
Testing will be conducted so as to determine whether the
model that is trained is providing the desired output. As
the data is entered for testing, the .csv file will be retrieved
to crosscheck and then compare and the results of the
newly entered data will be generated. On basis of how the
model is trained with the help of the dataset, the user will
input values of his choice to the attributes specified and
the results will be generated as the whether there is a risk
of heart disease or not.
6. Design fitness function of genetic algorithm
The genetic algorithm is applied so as to initialize neural
network weight. The genetic algorithm is used to evaluate
and calculate the number of layers in the neural network
along with the total number of weights used and bias. The
initial population is generated at random. Bias is used such
that the output value generated will not be 0 or negative.
On basis of the mean square error calculated during
testing, the fitness function of each chromosome will be
calculated. Ater selection and mutation is carried out in
genetic algorithm, the chromosome consisting of lower
adaptation are replaced with optimizedd one that is better
and fitter chromosomes. If at all, the best fit is not selected
(worst fit is selected) then the process continues until the
best fit is selected. This genetic algorithm concept along
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6217
with Multilayer Feed Forward Network is used to predict
the presence or absence of cardiovascular disease in the
patient.
7. Prediction of heart disease
This component will help in predicting the severity of the
cardiovascular disease. When user will input data, the
weights will be cross checked with the given inputs. The
prediction neural network will consist of 13 nodes as a
part of input layer considering that 13 attribute values will
be input to the system. Then the hidden layer and one
node in the output layer which will provide the result. The
predicted will be generated in the form of a ‘yes’ or ‘no’
format considering all the risk factors whether they lie in
the criteria as per the model is trained.
A. Flowchart
The below diagram depicts basic flow of the system.
Initially, dataset is imported into the matlab software and
selection process is performed. The dataset is then trained
to recognise the pattern using multilayer feed forward
network. Back propagation technique is carried out to
recognize the pattern and genetic algorithm to optimize
the weights. After all the processes are successfully
completed, result is obtained in the form of classifier i.e.
Yes or No.
Fig -2: Genetic Neural Network Flowchart
4. PROPOSED DESIGN AND ARCHITECTURE
A. Dataset
There are many disease prediction systems which do not
use some of the risk factors such as age, sex, blood
pressure, cholesterol, diabetes, etc. Without using these
vital risk factors; result will not be much accurate. In this
paper; 12 important risk factors are used to predict heart
disease in accurate manner. Dataset is imported from UCI
Machine Learning Repository.[1] This system is developed
using MATLAB 2015.
Attribute Description Domain Value
Age Age in years 20-34(-2),
35-50(-1),
51-60(0),
61-79(1),
>79(2)
Chest pain Chest pain type Typical angina(1)
Atypical
angina(2)
Non-anginal(3)
Asymptotic(4)
BP Blood pressure Below 120 mm
Hg-
Low(-1),
120-139 mm Hg-
Normal(0),
Above 139 mm
Hg- High(1)
Cholesterol Cholesterol Below 200
mg/DL-Low(-
1),200-239
mg/DL-
Normal(0),
240 mg/DL and
above -High(1)
Diabetes Blood sugar Yes(1)
No(0)
ECG Resting ECG
result
Normal(0)
ST-T wave
abnormality(1)
LV
hypertrophy(2)
Heart Rate Maximum heart
rate achieved
71 to 202
Physical Exercise induced Yes(1)
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6218
Activity angina No(0)
Oldpeak ST depression
induced by
exercise relative
to rest
0-6.2
Slope Slope of peak
exercise ST
segment
Upsloping(1)
Flat(2)
Downsloping(3)
Ca Number of major
vessels
coloured by
fluoroscopy
0-3
Thal Defect type Normal(3)
Fixed defect(6)
Reversible
defect(7)
Sex Sex Male(1)
Female(0)
Num Heart disease 0-1
Table -1: Heart Disease Patient Dataset
https://archive.ics.uci.edu/ml/datasets/heart+Disease
B. Genetic Algorithm
The technique mentioned in this paper will optimize the
weights of neural network. It deals with the population i.e
individual input string. First it will select the input string
and assign a fitness value. Based on those fitness value a
new offspring will be generated. Then followed by the
crossover process it will generate possibly a fit string so as
to obtain optimized weight. The new string generated at
each stage is possibly a better than the previous one. This
is how the weights are optimized at each stage of genetic
process.
Following steps are used to optimize the weights :-
Step 1: First initial population is randomly selected.
Step 2: Each chromosome is evaluated using fitness
function.
Step 3: A selection process is done using fitness function to
generate new population.
Step 4: New generated population goes through crossover
and mutation process.
Step 5: After all the process are done based on fitness
function it will decide which weight are optimized to feed
into neural network.
C. Artificial Neural Network
After the weights are optimized it is fed into neural
network which uses back propagation technique to train
the network. The process of neural network consist of
activation function which is calculated at hidden layer and
output layer. The weights obtained at output layer will be
compared with the previous weights so as to calculate
error. By calculating the error new weights will be
generated and it will again fed into neural network. This
process will continue until the error function is minimum.
Following steps are used in neural network :
Step 1: In first step weights are initialised.
Step 2: Forward propagate : At this stage we first pass the
input through the layer and straight calculate the output.
Step 3: After output is generated loss function is
calculated.
Loss function is difference between the desired output and
the actual output.
Loss = Desired - Actual
Step 4: Again the weights are optimized to reduce loss
function.
Step 5: This is the step where back propagation takes
place.
The output obtained is again fed into neural network.
Step 6: Weight updation :
New weight = old weight - Derivative Rate *learning
rate
Step 7: It will iterate until weights are converged.
5. COMPARISON
FEATURESA
LGORITHMS
DECISION TREE NAIVE
BAYES
K-
MEANS
ANN
TRAINING OF
DATA SET
LOW LOW LOW HIGH
TYPE OF
DATA IN
DATASET
INTERVAL OR
CATEGORICAL
DATA
NUMERIC CATEGORIC
AL AND
NUMERIC
DATA
ALL
TYPES
OF DATA
RESOURCE
CONSUMPTIO
MEDIUM HIGH MEDIUM HIGH
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6219
N
ESTIMATION
OR
PREDICTION
NO ESTIMATION
BUT
PREDICTION IS
POSSIBLE
YES YES YES
EXPLICITNESS NO NO NO YES
SIZE OF
DATASETS
SMALL SMALL TO
INTERMEDI
ATE
SMALL TO
INTERMEDI
ATE
SMALL
TO
INTERM
EDIATE
ABILITY TO
HANDLE
MISSING DATA
MODERATE MODERATE NO YES
(HIGH
ABILITY
)
TRAINING
SPEED
FAST FAST FAST MODER
ATE
PREDICTION
SPEED
MODERATE MODERATE MODERATE HIGH
AVERAGE
PREDICTIVE
ACCURACY
LOW LOW LOW HIGH
CAN HANDLE
LARGE
AMOUNT OF
DATA
PROCESSINGS
YES NO NO YES
EASY TO
UNDERSTAND
YES YES YES MODER
ATE
Table -2: Comparison between different algorithms
6. RESULT AND DISCUSSION
In this paper, the framework for genetic algorithm and
neural network for analyzing medical information. This
medical data will be analyzed and processed to predict
how much is the severity of having a heart disease. The
dataset also undergoes preprocessing for polishing of the
data. This also helps in classifying the data for further
processing. This data is then classified into classes and
backpropagation algorithm along with genetic algorithm is
implemented onto it. This output helps in generating the
prediction of a cardiovascular disease. Herein all the
attributes are taken into consideration for predicting the
result.
7. CONCLUSION
Hence, we have developed a hybrid system using genetic
and neural network which will predict presence or
absence of heart disease. In real life, many relationships
are non-linear and complex; neural network has an ability
to learn and model such kind of relationships. Thus
making the model generalize and predict unseen data.
System which is developed with the help of algorithm that
learns hidden relationship in the data without imposing
fixed relationships in the data; will definitely yield much
accurate result. As future work, we will work to predict
presence of heart disease with reduced number of risk
factors. Fuzzy Logic whose high precision and rapid
operation is a key feature can be implemented with
genetic and neural network to enhance system.
REFERENCES
[1] UCI Machine Learning Repository: Flags Data Set.
[Online].
Available: https://archive.ics.uci.edu/ml/datasets/heart
Disease. [Accessed: 14-Feb-2019].
[2]. Kanchan, B. Dhomse, and M. Mahale Kishore. ”Study of
machine learning algorithms for special disease prediction
using principal of component analysis.” Global Trends in
Signal Processing, Information Computing and
Communication (ICGTSPICC), 2016 International
Conference on. IEEE, 2016.
[3]. Jabbar, M. Akhil, B. L. Deekshatulu, and Priti Chandra.
”Classification of heart disease using artificial neural
network and feature subset selection.” Global Journal of
Computer Science and Technology Neural and Artificial
Intelligence 13.3 (2013).
[4]. Malav, Amita, and Kalyani Kadam. ”A Hybrid Approach
for Heart Disease Prediction Using Artificial Neural
Network and K-means.”
[5]. Shrivastava, Shiva, and Neeraj Mehta. ”Diagnosis of
Heart Disease using Neural Network.” Blood 1 (2016): 4.
[6]. Saxena, Kanak, and Richa Sharma. ”Efficient heart
disease prediction system using decision tree.” Computing,
Communication and Automation (ICCCA), 2015
International Conference on. IEEE, 2015.
[7]. Priyanga, P., and N. C. Naveen. ”Web Analytics Support
System for Prediction of Heart Disease Using Naive Bayes
[8]. Saxena, K. and Sharma, R. (2019). Efficient heart
disease prediction system using decision tree – IEEE
Conference Publication. [online] Ieeexplore.ieee.org.
Weighted Approach (NBwa).” 2017 Asia Modelling
Symposium (AMS). IEEE, 2017.
[9]. Bhargava, Neeraj, et al. ”An approach for classification
using simple CART algorithm in WEKA.” Intelligent
Systems and Control (ISCO),

Contenu connexe

Tendances

Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.SUJIT SHIBAPRASAD MAITY
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSivagowry Shathesh
 
Heart Disease Prediction Using Associative Relational Classification Techniq...
Heart Disease Prediction Using Associative Relational  Classification Techniq...Heart Disease Prediction Using Associative Relational  Classification Techniq...
Heart Disease Prediction Using Associative Relational Classification Techniq...IJMER
 
Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learningmohdshoaibuddin1
 
IRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET Journal
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISijcsit
 
IRJET- Heart Disease Prediction and Recommendation
IRJET-  	  Heart Disease Prediction and RecommendationIRJET-  	  Heart Disease Prediction and Recommendation
IRJET- Heart Disease Prediction and RecommendationIRJET Journal
 
Chronic Kidney Disease Prediction
Chronic Kidney Disease PredictionChronic Kidney Disease Prediction
Chronic Kidney Disease PredictionRajandeep Gill
 
IRJET- Disease Prediction using Machine Learning
IRJET-  	  Disease Prediction using Machine LearningIRJET-  	  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine LearningIRJET Journal
 
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...Sivagowry Shathesh
 
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A SurveyPrediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A Surveyrahulmonikasharma
 
Comparing Data Mining Techniques used for Heart Disease Prediction
Comparing Data Mining Techniques used for Heart Disease PredictionComparing Data Mining Techniques used for Heart Disease Prediction
Comparing Data Mining Techniques used for Heart Disease PredictionIRJET Journal
 
A Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction TechniquesA Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction Techniquesijtsrd
 
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan Phd
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan PhdSMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan Phd
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan PhdHealthcare consultant
 
Propose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseasePropose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseaseIJERA Editor
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine LearningIRJET Journal
 
Heart Disease Prediction Using Data Mining Techniques
Heart Disease Prediction Using Data Mining TechniquesHeart Disease Prediction Using Data Mining Techniques
Heart Disease Prediction Using Data Mining TechniquesIJRES Journal
 
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET-  	  Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET-  	  Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET- Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET Journal
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSivagowry Shathesh
 
Machine learning in disease diagnosis
Machine learning in disease diagnosisMachine learning in disease diagnosis
Machine learning in disease diagnosisSushrutaMishra1
 

Tendances (20)

Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease prediction
 
Heart Disease Prediction Using Associative Relational Classification Techniq...
Heart Disease Prediction Using Associative Relational  Classification Techniq...Heart Disease Prediction Using Associative Relational  Classification Techniq...
Heart Disease Prediction Using Associative Relational Classification Techniq...
 
Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learning
 
IRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning Algorithm
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
 
IRJET- Heart Disease Prediction and Recommendation
IRJET-  	  Heart Disease Prediction and RecommendationIRJET-  	  Heart Disease Prediction and Recommendation
IRJET- Heart Disease Prediction and Recommendation
 
Chronic Kidney Disease Prediction
Chronic Kidney Disease PredictionChronic Kidney Disease Prediction
Chronic Kidney Disease Prediction
 
IRJET- Disease Prediction using Machine Learning
IRJET-  	  Disease Prediction using Machine LearningIRJET-  	  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
 
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...
PSO-An Intellectual Technique for Feature Reduction on Heart Malady Anticipat...
 
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A SurveyPrediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
 
Comparing Data Mining Techniques used for Heart Disease Prediction
Comparing Data Mining Techniques used for Heart Disease PredictionComparing Data Mining Techniques used for Heart Disease Prediction
Comparing Data Mining Techniques used for Heart Disease Prediction
 
A Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction TechniquesA Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction Techniques
 
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan Phd
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan PhdSMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan Phd
SMART HEALTH PREDICTION USING DATA MINING by Dr.Mahboob Khan Phd
 
Propose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseasePropose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart Disease
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
 
Heart Disease Prediction Using Data Mining Techniques
Heart Disease Prediction Using Data Mining TechniquesHeart Disease Prediction Using Data Mining Techniques
Heart Disease Prediction Using Data Mining Techniques
 
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET-  	  Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET-  	  Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease prediction
 
Machine learning in disease diagnosis
Machine learning in disease diagnosisMachine learning in disease diagnosis
Machine learning in disease diagnosis
 

Similaire à IRJET- Hybrid Architecture of Heart Disease Prediction System using Genetic Neural Network

IRJET- Disease Prediction System
IRJET- Disease Prediction SystemIRJET- Disease Prediction System
IRJET- Disease Prediction SystemIRJET Journal
 
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUE
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUEDESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUE
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUEIRJET Journal
 
heart final last sem.pptx
heart final last sem.pptxheart final last sem.pptx
heart final last sem.pptxrakshashadu
 
Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningIRJET Journal
 
IRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET Journal
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET Journal
 
IRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET Journal
 
Heart Disease Prediction Using Random Forest Algorithm
Heart Disease Prediction Using Random Forest AlgorithmHeart Disease Prediction Using Random Forest Algorithm
Heart Disease Prediction Using Random Forest AlgorithmIRJET Journal
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...IRJET Journal
 
Performance evaluation of random forest with feature selection methods in pre...
Performance evaluation of random forest with feature selection methods in pre...Performance evaluation of random forest with feature selection methods in pre...
Performance evaluation of random forest with feature selection methods in pre...IJECEIAES
 
IRJET- GDPS - General Disease Prediction System
IRJET- GDPS - General Disease Prediction SystemIRJET- GDPS - General Disease Prediction System
IRJET- GDPS - General Disease Prediction SystemIRJET Journal
 
Heart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsHeart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsIRJET Journal
 
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONPREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONIRJET Journal
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...IRJET Journal
 
Prediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachPrediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachIRJET Journal
 
IRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of DiabetesIRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of DiabetesIRJET Journal
 
Smart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine LearningSmart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine LearningIRJET Journal
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
Heart Failure Prediction using Different MachineLearning Techniques
Heart Failure Prediction using Different MachineLearning TechniquesHeart Failure Prediction using Different MachineLearning Techniques
Heart Failure Prediction using Different MachineLearning TechniquesIRJET Journal
 
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET Journal
 

Similaire à IRJET- Hybrid Architecture of Heart Disease Prediction System using Genetic Neural Network (20)

IRJET- Disease Prediction System
IRJET- Disease Prediction SystemIRJET- Disease Prediction System
IRJET- Disease Prediction System
 
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUE
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUEDESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUE
DESIGN AND IMPLEMENTATION OF CARDIAC DISEASE USING NAIVE BAYES TECHNIQUE
 
heart final last sem.pptx
heart final last sem.pptxheart final last sem.pptx
heart final last sem.pptx
 
Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data Mining
 
IRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease Prediction
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data Mining
 
IRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction System
 
Heart Disease Prediction Using Random Forest Algorithm
Heart Disease Prediction Using Random Forest AlgorithmHeart Disease Prediction Using Random Forest Algorithm
Heart Disease Prediction Using Random Forest Algorithm
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
 
Performance evaluation of random forest with feature selection methods in pre...
Performance evaluation of random forest with feature selection methods in pre...Performance evaluation of random forest with feature selection methods in pre...
Performance evaluation of random forest with feature selection methods in pre...
 
IRJET- GDPS - General Disease Prediction System
IRJET- GDPS - General Disease Prediction SystemIRJET- GDPS - General Disease Prediction System
IRJET- GDPS - General Disease Prediction System
 
Heart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsHeart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning Algorithms
 
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONPREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
 
Prediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachPrediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability Approach
 
IRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of DiabetesIRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of Diabetes
 
Smart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine LearningSmart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine Learning
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
Heart Failure Prediction using Different MachineLearning Techniques
Heart Failure Prediction using Different MachineLearning TechniquesHeart Failure Prediction using Different MachineLearning Techniques
Heart Failure Prediction using Different MachineLearning Techniques
 
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
 

Plus de 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
 

Plus de 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...
 

Dernier

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfRagavanV2
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 

Dernier (20)

Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 

IRJET- Hybrid Architecture of Heart Disease Prediction System using Genetic Neural Network

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6215 Hybrid Architecture of Heart Disease Prediction System using Genetic Neural Network Kumkum Chaudhary1, Radhika Naidu2, Rhea Rai3, Narendra Gawai4 1,2,3Dept. of Computer Science and Technology, SNDT University, Maharashtra, India 4Professor, Dept. of Computer Science and Technology, SNDT University, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Data mining techniques have been used in disease diagnosis, disease risk evaluation, patient monitoring, robotic handling of surgeries and predicting effect of new medicines but lack behind in certain factors such as accuracy, speed, performance etc. This paper proposes and evaluates Neural Network and Genetic Algorithm for diagnosing risk of heart disease. Risk factors viz. Blood Pressure, Blood Chest Pain Type, Heart Rate, Cholesterol, ECG, Diabetes, Sex, Physical Activity, etc. have been taken as inputs to the system. The system classifies the input samples and predicts whether heart disease is present or absent. The results of proposed system have been compared with system which was developed by using traditional algorithms; in terms of Accuracy, Mean Square Error and Regression and found better. This hybrid system will predict the presence of heart disease in more efficient manner. Keywords - Genetic Algorithm, Neural network, Naive Bayes, Decision Tree, Mean Square Error, Risk factors. 1. INTRODUCTION The current scenario for the diagnosis of heart disease uses clinical dataset having parameters and inputs from complex tests conducted in labs. None of the present system predicts heart diseases based on risk factors such as age, family history, diabetes, hypertension, high cholesterol, tobacco smoking, alcohol intake, obesity or physical inactivity, etc. Patient suffering from heart disease have the above mentioned risk factors in common which can be used to diagnose diseases effectively. This paper proposes a system which is computer-based clinical decision support and can reduce medical errors, improve patient safety and reduce unnecessary changes in practice, and improve the prognosis of the patient’s medical history to integrate patients. The main objective of this study is to develop a prototype of heart disease forecasting system using data mining and neural network concepts. a huge knowledge and accurate data in the field not only helps users by providing effective treatment, but also help to reduce the cost of treatment and improve the visualization and ease of explanation. There are some methods in the literature individually to diagnose heart disease such as Decision Tree, Naive Bayes, K-means, SVM, etc. These algorithms possess many drawbacks such as they cannot handle large, noisy and missing data which leads to difficulty in interpreting the result. There is no automated diagnosis method to diagnose the disease. The system based on above mentioned risk factors would not only help medical professionals but also it would give patients a warning about the probable presence of heart disease even before he visits a hospital or goes for costly medical checkups. Medical organizations invest heavily in this type of activity in order to focus on the risks involved and possible events. 2. REVIEW OF LITERATURE Several data mining algorithms are used to find pattern that can be used for predicting and in decision support areas. For developing effective and intelligent heart disease prediction system author Priyanga, P., and N. C. Naveen(2017) used Naıve Bayes technique for classifying task of data mining. In this system, patients must provide values to the attributes for getting precise result. By using UCI dataset; data was trained. Trained data was compared with user input value. Traditional data mining techniques does not yield accurate result but Na¨ıve Baye’s managed to yield result close to accuracy. For classification purpose Na¨ıve Bayes was used and result was in the form of low, average, high and very high. Basically here classification and prediction both were performed. Accuracy of the system is dependent on algorithm and database used, and here Naıve Bayes algorithm got 86% accurate result which is more than all other traditional data mining techniques[7]. Purushottam, Kanak Saxena, Richa Sharma(2015) designed a system using decision tree algorithm that creates rules for predicting heart disease. Decision tree algorithm is used for solving regression and classification problems too. Decision Tree is to create a training model which can use to predict class. Decision tree solves problem by using tree representation. In tree representation internal nodes corresponds to attribute leaf nodes corresponds to class label. Accuracy of the system was 90% which was better, depending on its performance. Reasonable accuracy in result of predicting system can be provided by using a single data mining technique. To boost accuracy level hybrid data mining techniques can be used. Malav, Amita and kalyani kadam(2017) carried out predictive analysis which was done on UCI dataset by using K-means and ANN
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6216 algorithms. A model was developed which was used for classification using ANN and K-means. The aim was to classify the data according to heart disease better which will lead to more reliable and efficient diagnosis[4] 3. SYSTEM ARCHITECTURE The architecture of the proposed system is as displayed in the figure below. The major components of the architecture are as follows: patient database, preprocessing, tokenization, training the model, test the model, design fitness function, application of genetic algorithm, results collection and prediction of heart disease. Fig -1: System Architecture 1. Patient database The dataset as provided by University of California, Irvine Machine Learning Repository is initially imported for the analysis of this system work. The dataset consists of the following attributes: age, chest pain, blood pressure, cholesterol, diabetes, ECG, heart rate, physical activity, slope, thalassemia, ca and sex. The final predicted attribute will be specified in ‘num’. The attributes are further elaborated in Table 1. 2. Preprocessing Preprocessing is a significant stage in the knowledge discovery process. Real world data tends to be noisy and inconsistent. Data processing techniques like data cleaning etc help in overcoming these drawbacks. Normalization of the dataset helps in classify the data which further makes the data to smoothly allow algorithms to execute with efficient results. To carry out normalization, normalize function is used. this helps in bifurcating the data into classes. Then a variable will be created that is ‘num’ which will hold the predicted attribute. 3. Tokenization In tokenization, the data will be clubbed into set of meaning sentences or chunks for further processing. This will further enhance the efficiency of the data that has undergone preprocessing. 4. Training the model In the training part, the backpropagation algorithm as mentioned above will be implemented. backpropagation helps in finding a better set of weights in short amount of time. The training is done on basis of the dataset input to the system. Herein ‘min max’ function is implemented so as to gain a matrix of minimum and maximum values as specified in its argument. This function is applied for training of the network. The efficiency of the system can be improved every instance as many times the model is trained, the number of iterations etc. The whole dataset provided which consists of 13 attributes and 872 rows will help the model undergo training. Training can also be implemented by splitting the data in equalized required amount of data partitions. In the user interactive GUI, as the user will select train network option after entering his data at the backend the .csv file of UCI dataset will be read and normalization will be carried out so as to classify the data into classes which becomes easier to be fed onto the neural network. the neural network that is created here will be consisting of three layers namely: input layer, hidden layer and output layer. Hidden layers can be customized to 2 or 3 as per users requirements. To generate a network, train() function is implemented so as to pass the inputs. this network will be stored in .mat file. After the network is generated, we check for mean square error. 5. Testing the model Testing will be conducted so as to determine whether the model that is trained is providing the desired output. As the data is entered for testing, the .csv file will be retrieved to crosscheck and then compare and the results of the newly entered data will be generated. On basis of how the model is trained with the help of the dataset, the user will input values of his choice to the attributes specified and the results will be generated as the whether there is a risk of heart disease or not. 6. Design fitness function of genetic algorithm The genetic algorithm is applied so as to initialize neural network weight. The genetic algorithm is used to evaluate and calculate the number of layers in the neural network along with the total number of weights used and bias. The initial population is generated at random. Bias is used such that the output value generated will not be 0 or negative. On basis of the mean square error calculated during testing, the fitness function of each chromosome will be calculated. Ater selection and mutation is carried out in genetic algorithm, the chromosome consisting of lower adaptation are replaced with optimizedd one that is better and fitter chromosomes. If at all, the best fit is not selected (worst fit is selected) then the process continues until the best fit is selected. This genetic algorithm concept along
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6217 with Multilayer Feed Forward Network is used to predict the presence or absence of cardiovascular disease in the patient. 7. Prediction of heart disease This component will help in predicting the severity of the cardiovascular disease. When user will input data, the weights will be cross checked with the given inputs. The prediction neural network will consist of 13 nodes as a part of input layer considering that 13 attribute values will be input to the system. Then the hidden layer and one node in the output layer which will provide the result. The predicted will be generated in the form of a ‘yes’ or ‘no’ format considering all the risk factors whether they lie in the criteria as per the model is trained. A. Flowchart The below diagram depicts basic flow of the system. Initially, dataset is imported into the matlab software and selection process is performed. The dataset is then trained to recognise the pattern using multilayer feed forward network. Back propagation technique is carried out to recognize the pattern and genetic algorithm to optimize the weights. After all the processes are successfully completed, result is obtained in the form of classifier i.e. Yes or No. Fig -2: Genetic Neural Network Flowchart 4. PROPOSED DESIGN AND ARCHITECTURE A. Dataset There are many disease prediction systems which do not use some of the risk factors such as age, sex, blood pressure, cholesterol, diabetes, etc. Without using these vital risk factors; result will not be much accurate. In this paper; 12 important risk factors are used to predict heart disease in accurate manner. Dataset is imported from UCI Machine Learning Repository.[1] This system is developed using MATLAB 2015. Attribute Description Domain Value Age Age in years 20-34(-2), 35-50(-1), 51-60(0), 61-79(1), >79(2) Chest pain Chest pain type Typical angina(1) Atypical angina(2) Non-anginal(3) Asymptotic(4) BP Blood pressure Below 120 mm Hg- Low(-1), 120-139 mm Hg- Normal(0), Above 139 mm Hg- High(1) Cholesterol Cholesterol Below 200 mg/DL-Low(- 1),200-239 mg/DL- Normal(0), 240 mg/DL and above -High(1) Diabetes Blood sugar Yes(1) No(0) ECG Resting ECG result Normal(0) ST-T wave abnormality(1) LV hypertrophy(2) Heart Rate Maximum heart rate achieved 71 to 202 Physical Exercise induced Yes(1)
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6218 Activity angina No(0) Oldpeak ST depression induced by exercise relative to rest 0-6.2 Slope Slope of peak exercise ST segment Upsloping(1) Flat(2) Downsloping(3) Ca Number of major vessels coloured by fluoroscopy 0-3 Thal Defect type Normal(3) Fixed defect(6) Reversible defect(7) Sex Sex Male(1) Female(0) Num Heart disease 0-1 Table -1: Heart Disease Patient Dataset https://archive.ics.uci.edu/ml/datasets/heart+Disease B. Genetic Algorithm The technique mentioned in this paper will optimize the weights of neural network. It deals with the population i.e individual input string. First it will select the input string and assign a fitness value. Based on those fitness value a new offspring will be generated. Then followed by the crossover process it will generate possibly a fit string so as to obtain optimized weight. The new string generated at each stage is possibly a better than the previous one. This is how the weights are optimized at each stage of genetic process. Following steps are used to optimize the weights :- Step 1: First initial population is randomly selected. Step 2: Each chromosome is evaluated using fitness function. Step 3: A selection process is done using fitness function to generate new population. Step 4: New generated population goes through crossover and mutation process. Step 5: After all the process are done based on fitness function it will decide which weight are optimized to feed into neural network. C. Artificial Neural Network After the weights are optimized it is fed into neural network which uses back propagation technique to train the network. The process of neural network consist of activation function which is calculated at hidden layer and output layer. The weights obtained at output layer will be compared with the previous weights so as to calculate error. By calculating the error new weights will be generated and it will again fed into neural network. This process will continue until the error function is minimum. Following steps are used in neural network : Step 1: In first step weights are initialised. Step 2: Forward propagate : At this stage we first pass the input through the layer and straight calculate the output. Step 3: After output is generated loss function is calculated. Loss function is difference between the desired output and the actual output. Loss = Desired - Actual Step 4: Again the weights are optimized to reduce loss function. Step 5: This is the step where back propagation takes place. The output obtained is again fed into neural network. Step 6: Weight updation : New weight = old weight - Derivative Rate *learning rate Step 7: It will iterate until weights are converged. 5. COMPARISON FEATURESA LGORITHMS DECISION TREE NAIVE BAYES K- MEANS ANN TRAINING OF DATA SET LOW LOW LOW HIGH TYPE OF DATA IN DATASET INTERVAL OR CATEGORICAL DATA NUMERIC CATEGORIC AL AND NUMERIC DATA ALL TYPES OF DATA RESOURCE CONSUMPTIO MEDIUM HIGH MEDIUM HIGH
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 6219 N ESTIMATION OR PREDICTION NO ESTIMATION BUT PREDICTION IS POSSIBLE YES YES YES EXPLICITNESS NO NO NO YES SIZE OF DATASETS SMALL SMALL TO INTERMEDI ATE SMALL TO INTERMEDI ATE SMALL TO INTERM EDIATE ABILITY TO HANDLE MISSING DATA MODERATE MODERATE NO YES (HIGH ABILITY ) TRAINING SPEED FAST FAST FAST MODER ATE PREDICTION SPEED MODERATE MODERATE MODERATE HIGH AVERAGE PREDICTIVE ACCURACY LOW LOW LOW HIGH CAN HANDLE LARGE AMOUNT OF DATA PROCESSINGS YES NO NO YES EASY TO UNDERSTAND YES YES YES MODER ATE Table -2: Comparison between different algorithms 6. RESULT AND DISCUSSION In this paper, the framework for genetic algorithm and neural network for analyzing medical information. This medical data will be analyzed and processed to predict how much is the severity of having a heart disease. The dataset also undergoes preprocessing for polishing of the data. This also helps in classifying the data for further processing. This data is then classified into classes and backpropagation algorithm along with genetic algorithm is implemented onto it. This output helps in generating the prediction of a cardiovascular disease. Herein all the attributes are taken into consideration for predicting the result. 7. CONCLUSION Hence, we have developed a hybrid system using genetic and neural network which will predict presence or absence of heart disease. In real life, many relationships are non-linear and complex; neural network has an ability to learn and model such kind of relationships. Thus making the model generalize and predict unseen data. System which is developed with the help of algorithm that learns hidden relationship in the data without imposing fixed relationships in the data; will definitely yield much accurate result. As future work, we will work to predict presence of heart disease with reduced number of risk factors. Fuzzy Logic whose high precision and rapid operation is a key feature can be implemented with genetic and neural network to enhance system. REFERENCES [1] UCI Machine Learning Repository: Flags Data Set. [Online]. Available: https://archive.ics.uci.edu/ml/datasets/heart Disease. [Accessed: 14-Feb-2019]. [2]. Kanchan, B. Dhomse, and M. Mahale Kishore. ”Study of machine learning algorithms for special disease prediction using principal of component analysis.” Global Trends in Signal Processing, Information Computing and Communication (ICGTSPICC), 2016 International Conference on. IEEE, 2016. [3]. Jabbar, M. Akhil, B. L. Deekshatulu, and Priti Chandra. ”Classification of heart disease using artificial neural network and feature subset selection.” Global Journal of Computer Science and Technology Neural and Artificial Intelligence 13.3 (2013). [4]. Malav, Amita, and Kalyani Kadam. ”A Hybrid Approach for Heart Disease Prediction Using Artificial Neural Network and K-means.” [5]. Shrivastava, Shiva, and Neeraj Mehta. ”Diagnosis of Heart Disease using Neural Network.” Blood 1 (2016): 4. [6]. Saxena, Kanak, and Richa Sharma. ”Efficient heart disease prediction system using decision tree.” Computing, Communication and Automation (ICCCA), 2015 International Conference on. IEEE, 2015. [7]. Priyanga, P., and N. C. Naveen. ”Web Analytics Support System for Prediction of Heart Disease Using Naive Bayes [8]. Saxena, K. and Sharma, R. (2019). Efficient heart disease prediction system using decision tree – IEEE Conference Publication. [online] Ieeexplore.ieee.org. Weighted Approach (NBwa).” 2017 Asia Modelling Symposium (AMS). IEEE, 2017. [9]. Bhargava, Neeraj, et al. ”An approach for classification using simple CART algorithm in WEKA.” Intelligent Systems and Control (ISCO),