SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler offline
@ IJTSRD | Available Online @ www.ijtsrd.com
ISSN No: 2456
International
Research
K-Nearest Neighbours based diagnosis of hyperglycemia
Department of Computer S
University of Jammu, Jammu, India
ABSTRACT
AI or artificial intelligence is the simulation of human
intelligence processes by machines, especially
computer systems. These processes include learning
(the acquisition of information and rules for using the
information), reasoning (using the rules to reach
approximate or definite conclusions), and self
correction. As a result, Artificial Intelligence is
gaining Importance in science and engineering fields.
The use of Artificial Intelligence in medical diagnosis
too is becoming increasingly common and has been
used widely in the diagnosis of cancers, tumors,
hepatitis, lung diseases, etc... The main aim of this
paper is to build an Artificial Intelligent System that
after analysis of certain parameters can predict that
whether a person is diabetic or not. Diabetes is the
name used to describe a metabolic condit
higher than normal blood sugar levels.
becoming increasingly more common throughout the
world, due to increased obesity - which can lead to
metabolic syndrome or pre-diabetes leading to higher
incidences of type 2 diabetes. Authors have identified
10 parameters that play an important role in diabetes
and prepared a rich database of training data which
served as the backbone of the prediction algorithm.
Keeping in view this training data authors developed a
system that uses the artificial neural networks
algorithm to serve the purpose. These are capable of
predicting new observations (on specific variables)
from previous observations (on the same or other
variables) after executing a process of so
learning from existing training data (Haykin
1998).The results indicate that the performance of
KNN method when compared with the medical
diagnosis system was found to be 91%. This system
can be used to assist medical programs especially in
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017
ISSN No: 2456 - 6470 | www.ijtsrd.com | Volume
International Journal of Trend in Scientific
Research and Development (IJTSRD)
International Open Access Journal
Nearest Neighbours based diagnosis of hyperglycemia
Abid Sarwar
Department of Computer Science & IT (Bhaderwah Campus)
University of Jammu, Jammu, India
AI or artificial intelligence is the simulation of human
intelligence processes by machines, especially
computer systems. These processes include learning
(the acquisition of information and rules for using the
information), reasoning (using the rules to reach
approximate or definite conclusions), and self-
As a result, Artificial Intelligence is
gaining Importance in science and engineering fields.
The use of Artificial Intelligence in medical diagnosis
too is becoming increasingly common and has been
used widely in the diagnosis of cancers, tumors,
epatitis, lung diseases, etc... The main aim of this
paper is to build an Artificial Intelligent System that
after analysis of certain parameters can predict that
Diabetes is the
name used to describe a metabolic condition of having
higher than normal blood sugar levels. Diabetes is
becoming increasingly more common throughout the
which can lead to
diabetes leading to higher
s have identified
10 parameters that play an important role in diabetes
and prepared a rich database of training data which
served as the backbone of the prediction algorithm.
Keeping in view this training data authors developed a
ficial neural networks
algorithm to serve the purpose. These are capable of
predicting new observations (on specific variables)
from previous observations (on the same or other
variables) after executing a process of so-called
ng data (Haykin
1998).The results indicate that the performance of
KNN method when compared with the medical
diagnosis system was found to be 91%. This system
can be used to assist medical programs especially in
geographically remote areas where expert hum
diagnosis not possible with an advantage of minimal
expenses and faster results.
Keywords: Artificial Intelligence, metabolic, Machine
Learning, Diabetes, K-nearest neighbors, Medical
Diagnosis
I. INTRODUCTION
Diabetes, often referred to by doctors as diabetes
mellitus, describes a group of metabolic diseases in
which the person has high blood glucose (blood
sugar), either because insulin production is
inadequate, or because the body's cells do not respond
properly to insulin, or both. Patients with high blood
sugar will typically experience polyuria (frequent
urination), they will become increasingly thirsty
(polydipsia) and hungry (polyphagia). Diabetes can
mainly be of 3 types: Type
diabetes and Gestational diabetes. Type
results from non-production of insulin & Type
diabetes results from development of resistance of
insulin, as a result of which the insulin produced is
not able to metabolize the sugar levels properly.
Gestational diabetes occurs in pregnant women, who
develop a high blood glucose level during pregnancy
who never had any previous such history. It may be
preceded by development of type
reported by WHO & International Diabetic Federation
in year 2010, the toll of diabetic patients was 285
million and this number is expected to grow to 483
million by 2030. WHO estimates that between 2010
to 2030 there will be an increase of 69% in adult
diabetic population in developing countries and 20%
Dec 2017 Page: 611
| www.ijtsrd.com | Volume - 2 | Issue – 1
Scientific
(IJTSRD)
International Open Access Journal
Nearest Neighbours based diagnosis of hyperglycemia
geographically remote areas where expert human
diagnosis not possible with an advantage of minimal
Artificial Intelligence, metabolic, Machine
nearest neighbors, Medical
Diabetes, often referred to by doctors as diabetes
mellitus, describes a group of metabolic diseases in
which the person has high blood glucose (blood
sugar), either because insulin production is
inadequate, or because the body's cells do not respond
rly to insulin, or both. Patients with high blood
sugar will typically experience polyuria (frequent
urination), they will become increasingly thirsty
(polydipsia) and hungry (polyphagia). Diabetes can
mainly be of 3 types: Type-1 diabetes, Type-2
and Gestational diabetes. Type-1 diabetes
production of insulin & Type-2
diabetes results from development of resistance of
insulin, as a result of which the insulin produced is
not able to metabolize the sugar levels properly.
l diabetes occurs in pregnant women, who
develop a high blood glucose level during pregnancy
who never had any previous such history. It may be
preceded by development of type-2 diabetes. As
reported by WHO & International Diabetic Federation
the toll of diabetic patients was 285
million and this number is expected to grow to 483
million by 2030. WHO estimates that between 2010
to 2030 there will be an increase of 69% in adult
diabetic population in developing countries and 20%
International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 612
increase of the same in developed countries. India
having 50.8 million patients of this disease leads the
world & is followed by China (43.2), United States
(26.8). In 2010 diabetes caused 3.9 million deaths
worldwide. The primary concern of AI in medicine is
the construction of AI programs that can assert a
medical doctor in performing expert diagnosis. These
programs by making use of various computational
sciences such as statistics and probability find out the
hidden patterns from the training data and using these
patterns they classify the test data into one the
possible categories. The backbones of these AI
programs are the various data sets prepared from
various clinical cases which act as practical examples
in training the system. The decision and
recommendation prepared from these systems can be
illustrated to the subjects after combining them with
the experience of human expert.
2. METHODOLOGY
K-nearest neighbor (KNN) is an instance-based
classification algorithm which classifies the test
objects on the basis of number of closest training
examples. It is a nonparametric algorithm which
means that it does not make any assumption on the
underlying data distribution. It is also classified as a
lazy learning algorithm. In this method, the Euclidean
distance is calculated between the test data and all the
samples in the training data which is followed by
classifying the test data into a class which most of k-
closest neighbors of training data belong to. K is a
positive integer usually very small. Larger the value
of K more difficult, it is to distinguish between the
various classes. Various heuristic techniques such as
cross-validation are used to make a good choice of K.
This algorithm assumes that all the data correspond to
points in N-dimensional space. Letthe test datumxi be
represented by a feature vector [xi1, xi2,xi3….xin],
where xik represents the kth attribute of test datum xi
and xi0 represents the transpose of xi. The distance
between xi and xj is defined by
𝑑(𝑥𝑖, 𝑥𝑗) = (𝑥𝑗 − 𝑥𝑖)
If the number of training samples is equal to n, then n
such distances will be calculated and the closest K
training data are identified as neighbors. If K = 1, then
the class label of test datum is equal to the closest
training datum. If there is a tie, then the tie is resolved
arbitrarily
3.PREVIOUS WORK
It has been noted that the machine learning algorithms
are increasingly being used in solving problems in
Medical Domains such as in Oncology (Lisboa and
Taktak 2006; Catto et al. 2003; Anagnostou et al.
2003; Bratko and Kononenko 1987), Urology
(Anagnostou et al. 2003), Liver Pathology (Lesmo et
al. 1983), Cardiology (Catlett 1991; Clark and
Boswell 1991), Gynecology (Nunez 1990),Thyroid
disorders (Hojker et al. 1998; Horn et al. 1985), and
Perinatology (Kern et al. 1990). Numerous
researchers have used AI and data mining-based
algorithms to solve problems in the field of medicine.
Bharat Rao et al. (2007) have proposed an artificially
intelligent system (LungCAD) thathelps in the
detection of lung cancer. They have applied a
classification algorithm for detecting solid pulmonary
nodules from CT thorax studies. The LungCAD
system was clinically tested by a number of
radiologists and was found to deliver significantly
greater accuracy both in detecting the affected
nodules and in identifying the potentially actionable
nodules. LungCAD was approved by FDA in 2006.
4.PARAMETERS USED IN ESTIMATION
Since India is having the highest Diabetic population
in the world so it was easy to collect the data about
the patients who suffered from this disease. After a
detailed study, authors identified ten best
physiological parameters for the study which were so
chosen that the values for them could be easily
determined and could be assigned discrete values, for
the sake of maintaining consistency. Table-I
summaries the parameters chosen and their allowed
values. A dataset of 415 cases was prepared by
collecting the data randomly from different sections
of the society with an aim to have a variety in the
dataset. To maintain accuracy and to avoid errors,
considerable care was taken to ensure that the
database had correct values.
International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 613
Table-I: Various parameters used and their allowed values
Parameter Description Allowed Values
Age Age of the subject Discrete Integer Values
Family History Whether any family member of the subject is suffering/
was suffering from diabetes.
Yes or No
Sex Whether male or female Male or Female
Smoking Whether the subject does smoking or not. Yes or No
Drinking Whether the subject does drinking or not. Yes or No
Fatigue Does a person feel tired after doing a little work? Yes or No
Thurst Whether the subject frequently feels a strong desire to
drink water. i.e how many times the subject drinks water.
Discrete Integer values
Frequency of
urination
How many times the subject passes urine in a day Discrete Integer values
Height Height of the subject Discrete floating point
values
Weight Weight of the subject Discrete floating point
values
5. IMPLEMENTATION
For implementing the K-nearest neighbor algorithm,
an application was developed in Matlab 7.6.0. The
data collected for the study were divided into two
parts viz training data and testing data which
comprised of 90 and 10 %, respectively. The value of
K was taken to be 5. Euclidean distance was
calculated between the test data and each of the
training data. The distance matrix thus obtained was
then sorted. After sorting, we selected the first k items
from the distance matrix, and these are those entries in
trainingdata that are most likely to have the same
symptoms of diabetes as that of our test data. This
was followed by taking the votes of these k items, and
the test data were classified into one of the
corresponding category, that is, diabetic and not
diabetic.
Fig. 1 MATLAB Program in execution
International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 614
6. CONCLUSION
This K-nearest neighbor based system is very useful
for diagnosis of diabetes. The reliability of the system
was evaluated by predicting new observations (on
specific variables) from previous observations (on the
same or other variables) after executing a process of
so-called learning from existing training data. The
results suggest that this system can perform good
prediction with least error and finally this technique
could be an important tool for supplementing the
medical doctors in performing expert diagnosis. In
this method the efficiency of Forecasting was found to
be around 91%. Its performance can be further
improved by identifying & incorporating various
other parameters and increasing the size of training
data.
REFERENCE
1) Bharat Rao R, Bi J, Obuchowski N, Naidich D
(2007) LungCAD: a clinically approved, machine
learning system for lung cancer detection. In:
International conference on knowledge discovery
and data mining 2007, San Jose, California, USA,
ACM 978-1-59593-609-7/07/0008
2) Bonham GS, Brock DB (1985) The relationship of
diabetes with race, sex, and obesity. Am J
ClinNutr 41:776–783
3) Bratko I, Kononenko I (1987) Learning rules from
incomplete and noisy data. In: Phelip B (ed)
Interactions in artificial intelligence and statistical
methods. Technical Press, Hampshire
4) Caruana R, Niculescu-Mizil A (2006) An
empirical comparison of supervised learning
algorithms. In: ICML ‘06 Proceedings of the 23rd
international conference on machine learning, pp
161–168
5) Catlett J (1991) On changing continuous attributes
into ordered discrete attributes. In: Proceedings of
European working session on learning-91,
Portugal, 4–6 Mar 1991, pp 164–178
6) Catto JWF, Linkens DA, Abbod MF, Chen M,
Burton JL, Feeley KM, Hamdy FC (2003)
Artificial intelligence in predicting bladder cancer
outcome: a comparison of neuro-fuzzy modeling
and artificial neural networks. Clin Cancer Res
9:4172
7) Chan JM, Rimm EB, Colditz GA, Stampfer MJ,
Willett WC (1994) Obesity, fat distribution, and
weight gain as risk factors for clinical diabetes in
men. Diabetes Care 17(9):961–969
8) Chang C-L,HsuM-Y(2009) The study that applies
artificial intelligence and logistic regression for
assistance in differential diagnostic of pancreatic
cancer. Expert SystAppl 36(7):10663–10672
9) Chiu J-S, Wang Y-F, Su Y-C,Wei L-H, Liao J-G,
LiY-C (2008)Artificial neural network to predict
skeletal metastasis in patients with prostate
cancer. Springer science ?Business Media, May
2008
10) Clark P, Boswell R (1991) Rule Induction with
CN2: some recent improvements. In: Proceedings
of European working session on learning-91,
Portugal, Mar 1991, pp 151–163
11) Lesmo L, Saitta L, Torasso P (1983) Fuzzy
production rules: a learning methodology. In:
Advances in fuzzy sets, possibility theory and
applications. pp 181–198
12) Lindley CA (2012) Neurobiological computation
and synthetic intelligence. In: Artificial
intelligence and simulation of behavior,
AISB/IACAP world congress 2012, Birmingham,
UK, 2–6 July 2012, pp 20–25
13) Mahamud K, Abu BakarA, Norwawi NM (1999)
Multilayer perceptron modeling in housing
market. Malays Manage J 3:61–69 Nunez M
(1990) Decision tree induction using domain
knowledge. In:
14) Wielinga B, Boose J, Gaines B, Schreiberg G,
Someren Van M (eds) Current trends in
knowledge acquisition. IOS Press, Amsterdam

Mais conteúdo relacionado

Mais procurados

Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...
Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...
Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...IJARIIT
 
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...ijdms
 
Estimating the Statistical Significance of Classifiers used in the Predictio...
Estimating the Statistical Significance of Classifiers used in the  Predictio...Estimating the Statistical Significance of Classifiers used in the  Predictio...
Estimating the Statistical Significance of Classifiers used in the Predictio...IOSR Journals
 
Ai in diabetes management
Ai in diabetes managementAi in diabetes management
Ai in diabetes managementGOPAL KHODVE
 
Artificial Intelligence and Diabetes
Artificial Intelligence and DiabetesArtificial Intelligence and Diabetes
Artificial Intelligence and DiabetesIris Thiele Isip-Tan
 
IRJET- Diabetes Prediction by Machine Learning over Big Data from Healthc...
IRJET-  	  Diabetes Prediction by Machine Learning over Big Data from Healthc...IRJET-  	  Diabetes Prediction by Machine Learning over Big Data from Healthc...
IRJET- Diabetes Prediction by Machine Learning over Big Data from Healthc...IRJET Journal
 
prediction of heart disease using machine learning algorithms
prediction of heart disease using machine learning algorithmsprediction of heart disease using machine learning algorithms
prediction of heart disease using machine learning algorithmsINFOGAIN PUBLICATION
 
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...IJECEIAES
 
Machine learning and operations research to find diabetics at risk for readmi...
Machine learning and operations research to find diabetics at risk for readmi...Machine learning and operations research to find diabetics at risk for readmi...
Machine learning and operations research to find diabetics at risk for readmi...John Frias Morales, DrBA, MS
 
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDS
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDSARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDS
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDSIJCSES Journal
 
Current issues - International Journal of Computer Science and Engineering Su...
Current issues - International Journal of Computer Science and Engineering Su...Current issues - International Journal of Computer Science and Engineering Su...
Current issues - International Journal of Computer Science and Engineering Su...IJCSES Journal
 
IRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET 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
 
A decision support system for tuberculosis
A decision support system for tuberculosisA decision support system for tuberculosis
A decision support system for tuberculosisijsc
 
Development and Problems in the Field of Medical Information Reporting
Development and Problems in the Field of Medical Information ReportingDevelopment and Problems in the Field of Medical Information Reporting
Development and Problems in the Field of Medical Information ReportingYogeshIJTSRD
 
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017MLconf
 
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...ijcsa
 
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...MLconf
 
IRJET - Prediction and Analysis of Multiple Diseases using Machine Learni...
IRJET -  	  Prediction and Analysis of Multiple Diseases using Machine Learni...IRJET -  	  Prediction and Analysis of Multiple Diseases using Machine Learni...
IRJET - Prediction and Analysis of Multiple Diseases using Machine Learni...IRJET Journal
 
IRJET- Survey on Risk Estimation of Chronic Disease using Machine Learning
IRJET- Survey on Risk Estimation of Chronic Disease using Machine LearningIRJET- Survey on Risk Estimation of Chronic Disease using Machine Learning
IRJET- Survey on Risk Estimation of Chronic Disease using Machine LearningIRJET Journal
 

Mais procurados (20)

Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...
Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...
Diabetes Prediction by Supervised and Unsupervised Approaches with Feature Se...
 
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...
PERFORMANCE OF DATA MINING TECHNIQUES TO PREDICT IN HEALTHCARE CASE STUDY: CH...
 
Estimating the Statistical Significance of Classifiers used in the Predictio...
Estimating the Statistical Significance of Classifiers used in the  Predictio...Estimating the Statistical Significance of Classifiers used in the  Predictio...
Estimating the Statistical Significance of Classifiers used in the Predictio...
 
Ai in diabetes management
Ai in diabetes managementAi in diabetes management
Ai in diabetes management
 
Artificial Intelligence and Diabetes
Artificial Intelligence and DiabetesArtificial Intelligence and Diabetes
Artificial Intelligence and Diabetes
 
IRJET- Diabetes Prediction by Machine Learning over Big Data from Healthc...
IRJET-  	  Diabetes Prediction by Machine Learning over Big Data from Healthc...IRJET-  	  Diabetes Prediction by Machine Learning over Big Data from Healthc...
IRJET- Diabetes Prediction by Machine Learning over Big Data from Healthc...
 
prediction of heart disease using machine learning algorithms
prediction of heart disease using machine learning algorithmsprediction of heart disease using machine learning algorithms
prediction of heart disease using machine learning algorithms
 
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...
Performance Analysis of Data Mining Methods for Sexually Transmitted Disease ...
 
Machine learning and operations research to find diabetics at risk for readmi...
Machine learning and operations research to find diabetics at risk for readmi...Machine learning and operations research to find diabetics at risk for readmi...
Machine learning and operations research to find diabetics at risk for readmi...
 
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDS
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDSARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDS
ARTIFICIAL NEURAL NETWORKS FOR MEDICAL DIAGNOSIS: A REVIEW OF RECENT TRENDS
 
Current issues - International Journal of Computer Science and Engineering Su...
Current issues - International Journal of Computer Science and Engineering Su...Current issues - International Journal of Computer Science and Engineering Su...
Current issues - International Journal of Computer Science and Engineering Su...
 
IRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction SystemIRJET- Heart Disease Prediction System
IRJET- Heart Disease Prediction System
 
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
 
A decision support system for tuberculosis
A decision support system for tuberculosisA decision support system for tuberculosis
A decision support system for tuberculosis
 
Development and Problems in the Field of Medical Information Reporting
Development and Problems in the Field of Medical Information ReportingDevelopment and Problems in the Field of Medical Information Reporting
Development and Problems in the Field of Medical Information Reporting
 
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017
Xavier Amatriain, Cofounder & CTO, Curai at MLconf SF 2017
 
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...
COMPARISON AND EVALUATION DATA MINING TECHNIQUES IN THE DIAGNOSIS OF HEART DI...
 
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...
Jessica Rudd, PhD Student, Analytics and Data Science, Kennesaw State Univers...
 
IRJET - Prediction and Analysis of Multiple Diseases using Machine Learni...
IRJET -  	  Prediction and Analysis of Multiple Diseases using Machine Learni...IRJET -  	  Prediction and Analysis of Multiple Diseases using Machine Learni...
IRJET - Prediction and Analysis of Multiple Diseases using Machine Learni...
 
IRJET- Survey on Risk Estimation of Chronic Disease using Machine Learning
IRJET- Survey on Risk Estimation of Chronic Disease using Machine LearningIRJET- Survey on Risk Estimation of Chronic Disease using Machine Learning
IRJET- Survey on Risk Estimation of Chronic Disease using Machine Learning
 

Semelhante a KNN based AI system predicts hyperglycemia

Predictive machine learning applying cross industry standard process for data...
Predictive machine learning applying cross industry standard process for data...Predictive machine learning applying cross industry standard process for data...
Predictive machine learning applying cross industry standard process for data...IAESIJAI
 
Machine learning approach for predicting heart and diabetes diseases using da...
Machine learning approach for predicting heart and diabetes diseases using da...Machine learning approach for predicting heart and diabetes diseases using da...
Machine learning approach for predicting heart and diabetes diseases using da...IAESIJAI
 
A Systematic Review Of Type-2 Diabetes By Hadoop Map-Reduce
A Systematic Review Of Type-2 Diabetes By Hadoop Map-ReduceA Systematic Review Of Type-2 Diabetes By Hadoop Map-Reduce
A Systematic Review Of Type-2 Diabetes By Hadoop Map-ReduceFinni Rice
 
Diabetes Prediction Using ML
Diabetes Prediction Using MLDiabetes Prediction Using ML
Diabetes Prediction Using MLIRJET Journal
 
ML In Predicting Diabetes In The Early Stage
ML In Predicting Diabetes In The Early StageML In Predicting Diabetes In The Early Stage
ML In Predicting Diabetes In The Early StageIRJET Journal
 
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...ijtsrd
 
Multiple Disease Prediction System: A Review
Multiple Disease Prediction System: A ReviewMultiple Disease Prediction System: A Review
Multiple Disease Prediction System: A ReviewIRJET Journal
 
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...BRNSSPublicationHubI
 
Clinical Data Science and its Future
Clinical Data Science and its FutureClinical Data Science and its Future
Clinical Data Science and its FutureEditorIJTSRD1
 
Multiple disease prediction using Machine Learning Algorithms
Multiple disease prediction using Machine Learning AlgorithmsMultiple disease prediction using Machine Learning Algorithms
Multiple disease prediction using Machine Learning AlgorithmsIRJET Journal
 
Health Analyzer System
Health Analyzer SystemHealth Analyzer System
Health Analyzer SystemIRJET Journal
 
Multi Disease Detection using Deep Learning
Multi Disease Detection using Deep LearningMulti Disease Detection using Deep Learning
Multi Disease Detection using Deep LearningIRJET Journal
 
Diabetes prediction using machine learning
Diabetes prediction using machine learningDiabetes prediction using machine learning
Diabetes prediction using machine learningdataalcott
 
Big data approaches to healthcare systems
Big data approaches to healthcare systemsBig data approaches to healthcare systems
Big data approaches to healthcare systemsShubham Jain
 
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...IRJET Journal
 
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUE
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUEDIABETES PREDICTOR USING ENSEMBLE TECHNIQUE
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUEIRJET Journal
 
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEM
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEMAN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEM
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEMijaia
 
Predictive and Preventive Care: Metabolic Diseases
Predictive and Preventive Care: Metabolic DiseasesPredictive and Preventive Care: Metabolic Diseases
Predictive and Preventive Care: Metabolic Diseasesasclepiuspdfs
 

Semelhante a KNN based AI system predicts hyperglycemia (20)

Predictive machine learning applying cross industry standard process for data...
Predictive machine learning applying cross industry standard process for data...Predictive machine learning applying cross industry standard process for data...
Predictive machine learning applying cross industry standard process for data...
 
Machine learning approach for predicting heart and diabetes diseases using da...
Machine learning approach for predicting heart and diabetes diseases using da...Machine learning approach for predicting heart and diabetes diseases using da...
Machine learning approach for predicting heart and diabetes diseases using da...
 
50120140506011
5012014050601150120140506011
50120140506011
 
C0344023028
C0344023028C0344023028
C0344023028
 
A Systematic Review Of Type-2 Diabetes By Hadoop Map-Reduce
A Systematic Review Of Type-2 Diabetes By Hadoop Map-ReduceA Systematic Review Of Type-2 Diabetes By Hadoop Map-Reduce
A Systematic Review Of Type-2 Diabetes By Hadoop Map-Reduce
 
Diabetes Prediction Using ML
Diabetes Prediction Using MLDiabetes Prediction Using ML
Diabetes Prediction Using ML
 
ML In Predicting Diabetes In The Early Stage
ML In Predicting Diabetes In The Early StageML In Predicting Diabetes In The Early Stage
ML In Predicting Diabetes In The Early Stage
 
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...
Development of a Hybrid Dynamic Expert System for the Diagnosis of Peripheral...
 
Multiple Disease Prediction System: A Review
Multiple Disease Prediction System: A ReviewMultiple Disease Prediction System: A Review
Multiple Disease Prediction System: A Review
 
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...
Performance Evaluation of Data Mining Algorithm on Electronic Health Record o...
 
Clinical Data Science and its Future
Clinical Data Science and its FutureClinical Data Science and its Future
Clinical Data Science and its Future
 
Multiple disease prediction using Machine Learning Algorithms
Multiple disease prediction using Machine Learning AlgorithmsMultiple disease prediction using Machine Learning Algorithms
Multiple disease prediction using Machine Learning Algorithms
 
Health Analyzer System
Health Analyzer SystemHealth Analyzer System
Health Analyzer System
 
Multi Disease Detection using Deep Learning
Multi Disease Detection using Deep LearningMulti Disease Detection using Deep Learning
Multi Disease Detection using Deep Learning
 
Diabetes prediction using machine learning
Diabetes prediction using machine learningDiabetes prediction using machine learning
Diabetes prediction using machine learning
 
Big data approaches to healthcare systems
Big data approaches to healthcare systemsBig data approaches to healthcare systems
Big data approaches to healthcare systems
 
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...
IRJET- Comparison of Techniques for Diabetes Detection in Females using Machi...
 
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUE
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUEDIABETES PREDICTOR USING ENSEMBLE TECHNIQUE
DIABETES PREDICTOR USING ENSEMBLE TECHNIQUE
 
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEM
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEMAN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEM
AN IMPROVED MODEL FOR CLINICAL DECISION SUPPORT SYSTEM
 
Predictive and Preventive Care: Metabolic Diseases
Predictive and Preventive Care: Metabolic DiseasesPredictive and Preventive Care: Metabolic Diseases
Predictive and Preventive Care: Metabolic Diseases
 

Mais de ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementationijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospectsijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Studyijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadikuijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Mapijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Societyijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learningijtsrd
 

Mais de ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Último

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 

Último (20)

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 

KNN based AI system predicts hyperglycemia

  • 1. @ IJTSRD | Available Online @ www.ijtsrd.com ISSN No: 2456 International Research K-Nearest Neighbours based diagnosis of hyperglycemia Department of Computer S University of Jammu, Jammu, India ABSTRACT AI or artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems. These processes include learning (the acquisition of information and rules for using the information), reasoning (using the rules to reach approximate or definite conclusions), and self correction. As a result, Artificial Intelligence is gaining Importance in science and engineering fields. The use of Artificial Intelligence in medical diagnosis too is becoming increasingly common and has been used widely in the diagnosis of cancers, tumors, hepatitis, lung diseases, etc... The main aim of this paper is to build an Artificial Intelligent System that after analysis of certain parameters can predict that whether a person is diabetic or not. Diabetes is the name used to describe a metabolic condit higher than normal blood sugar levels. becoming increasingly more common throughout the world, due to increased obesity - which can lead to metabolic syndrome or pre-diabetes leading to higher incidences of type 2 diabetes. Authors have identified 10 parameters that play an important role in diabetes and prepared a rich database of training data which served as the backbone of the prediction algorithm. Keeping in view this training data authors developed a system that uses the artificial neural networks algorithm to serve the purpose. These are capable of predicting new observations (on specific variables) from previous observations (on the same or other variables) after executing a process of so learning from existing training data (Haykin 1998).The results indicate that the performance of KNN method when compared with the medical diagnosis system was found to be 91%. This system can be used to assist medical programs especially in @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 ISSN No: 2456 - 6470 | www.ijtsrd.com | Volume International Journal of Trend in Scientific Research and Development (IJTSRD) International Open Access Journal Nearest Neighbours based diagnosis of hyperglycemia Abid Sarwar Department of Computer Science & IT (Bhaderwah Campus) University of Jammu, Jammu, India AI or artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems. These processes include learning (the acquisition of information and rules for using the information), reasoning (using the rules to reach approximate or definite conclusions), and self- As a result, Artificial Intelligence is gaining Importance in science and engineering fields. The use of Artificial Intelligence in medical diagnosis too is becoming increasingly common and has been used widely in the diagnosis of cancers, tumors, epatitis, lung diseases, etc... The main aim of this paper is to build an Artificial Intelligent System that after analysis of certain parameters can predict that Diabetes is the name used to describe a metabolic condition of having higher than normal blood sugar levels. Diabetes is becoming increasingly more common throughout the which can lead to diabetes leading to higher s have identified 10 parameters that play an important role in diabetes and prepared a rich database of training data which served as the backbone of the prediction algorithm. Keeping in view this training data authors developed a ficial neural networks algorithm to serve the purpose. These are capable of predicting new observations (on specific variables) from previous observations (on the same or other variables) after executing a process of so-called ng data (Haykin 1998).The results indicate that the performance of KNN method when compared with the medical diagnosis system was found to be 91%. This system can be used to assist medical programs especially in geographically remote areas where expert hum diagnosis not possible with an advantage of minimal expenses and faster results. Keywords: Artificial Intelligence, metabolic, Machine Learning, Diabetes, K-nearest neighbors, Medical Diagnosis I. INTRODUCTION Diabetes, often referred to by doctors as diabetes mellitus, describes a group of metabolic diseases in which the person has high blood glucose (blood sugar), either because insulin production is inadequate, or because the body's cells do not respond properly to insulin, or both. Patients with high blood sugar will typically experience polyuria (frequent urination), they will become increasingly thirsty (polydipsia) and hungry (polyphagia). Diabetes can mainly be of 3 types: Type diabetes and Gestational diabetes. Type results from non-production of insulin & Type diabetes results from development of resistance of insulin, as a result of which the insulin produced is not able to metabolize the sugar levels properly. Gestational diabetes occurs in pregnant women, who develop a high blood glucose level during pregnancy who never had any previous such history. It may be preceded by development of type reported by WHO & International Diabetic Federation in year 2010, the toll of diabetic patients was 285 million and this number is expected to grow to 483 million by 2030. WHO estimates that between 2010 to 2030 there will be an increase of 69% in adult diabetic population in developing countries and 20% Dec 2017 Page: 611 | www.ijtsrd.com | Volume - 2 | Issue – 1 Scientific (IJTSRD) International Open Access Journal Nearest Neighbours based diagnosis of hyperglycemia geographically remote areas where expert human diagnosis not possible with an advantage of minimal Artificial Intelligence, metabolic, Machine nearest neighbors, Medical Diabetes, often referred to by doctors as diabetes mellitus, describes a group of metabolic diseases in which the person has high blood glucose (blood sugar), either because insulin production is inadequate, or because the body's cells do not respond rly to insulin, or both. Patients with high blood sugar will typically experience polyuria (frequent urination), they will become increasingly thirsty (polydipsia) and hungry (polyphagia). Diabetes can mainly be of 3 types: Type-1 diabetes, Type-2 and Gestational diabetes. Type-1 diabetes production of insulin & Type-2 diabetes results from development of resistance of insulin, as a result of which the insulin produced is not able to metabolize the sugar levels properly. l diabetes occurs in pregnant women, who develop a high blood glucose level during pregnancy who never had any previous such history. It may be preceded by development of type-2 diabetes. As reported by WHO & International Diabetic Federation the toll of diabetic patients was 285 million and this number is expected to grow to 483 million by 2030. WHO estimates that between 2010 to 2030 there will be an increase of 69% in adult diabetic population in developing countries and 20%
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470 @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 612 increase of the same in developed countries. India having 50.8 million patients of this disease leads the world & is followed by China (43.2), United States (26.8). In 2010 diabetes caused 3.9 million deaths worldwide. The primary concern of AI in medicine is the construction of AI programs that can assert a medical doctor in performing expert diagnosis. These programs by making use of various computational sciences such as statistics and probability find out the hidden patterns from the training data and using these patterns they classify the test data into one the possible categories. The backbones of these AI programs are the various data sets prepared from various clinical cases which act as practical examples in training the system. The decision and recommendation prepared from these systems can be illustrated to the subjects after combining them with the experience of human expert. 2. METHODOLOGY K-nearest neighbor (KNN) is an instance-based classification algorithm which classifies the test objects on the basis of number of closest training examples. It is a nonparametric algorithm which means that it does not make any assumption on the underlying data distribution. It is also classified as a lazy learning algorithm. In this method, the Euclidean distance is calculated between the test data and all the samples in the training data which is followed by classifying the test data into a class which most of k- closest neighbors of training data belong to. K is a positive integer usually very small. Larger the value of K more difficult, it is to distinguish between the various classes. Various heuristic techniques such as cross-validation are used to make a good choice of K. This algorithm assumes that all the data correspond to points in N-dimensional space. Letthe test datumxi be represented by a feature vector [xi1, xi2,xi3….xin], where xik represents the kth attribute of test datum xi and xi0 represents the transpose of xi. The distance between xi and xj is defined by 𝑑(𝑥𝑖, 𝑥𝑗) = (𝑥𝑗 − 𝑥𝑖) If the number of training samples is equal to n, then n such distances will be calculated and the closest K training data are identified as neighbors. If K = 1, then the class label of test datum is equal to the closest training datum. If there is a tie, then the tie is resolved arbitrarily 3.PREVIOUS WORK It has been noted that the machine learning algorithms are increasingly being used in solving problems in Medical Domains such as in Oncology (Lisboa and Taktak 2006; Catto et al. 2003; Anagnostou et al. 2003; Bratko and Kononenko 1987), Urology (Anagnostou et al. 2003), Liver Pathology (Lesmo et al. 1983), Cardiology (Catlett 1991; Clark and Boswell 1991), Gynecology (Nunez 1990),Thyroid disorders (Hojker et al. 1998; Horn et al. 1985), and Perinatology (Kern et al. 1990). Numerous researchers have used AI and data mining-based algorithms to solve problems in the field of medicine. Bharat Rao et al. (2007) have proposed an artificially intelligent system (LungCAD) thathelps in the detection of lung cancer. They have applied a classification algorithm for detecting solid pulmonary nodules from CT thorax studies. The LungCAD system was clinically tested by a number of radiologists and was found to deliver significantly greater accuracy both in detecting the affected nodules and in identifying the potentially actionable nodules. LungCAD was approved by FDA in 2006. 4.PARAMETERS USED IN ESTIMATION Since India is having the highest Diabetic population in the world so it was easy to collect the data about the patients who suffered from this disease. After a detailed study, authors identified ten best physiological parameters for the study which were so chosen that the values for them could be easily determined and could be assigned discrete values, for the sake of maintaining consistency. Table-I summaries the parameters chosen and their allowed values. A dataset of 415 cases was prepared by collecting the data randomly from different sections of the society with an aim to have a variety in the dataset. To maintain accuracy and to avoid errors, considerable care was taken to ensure that the database had correct values.
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470 @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 613 Table-I: Various parameters used and their allowed values Parameter Description Allowed Values Age Age of the subject Discrete Integer Values Family History Whether any family member of the subject is suffering/ was suffering from diabetes. Yes or No Sex Whether male or female Male or Female Smoking Whether the subject does smoking or not. Yes or No Drinking Whether the subject does drinking or not. Yes or No Fatigue Does a person feel tired after doing a little work? Yes or No Thurst Whether the subject frequently feels a strong desire to drink water. i.e how many times the subject drinks water. Discrete Integer values Frequency of urination How many times the subject passes urine in a day Discrete Integer values Height Height of the subject Discrete floating point values Weight Weight of the subject Discrete floating point values 5. IMPLEMENTATION For implementing the K-nearest neighbor algorithm, an application was developed in Matlab 7.6.0. The data collected for the study were divided into two parts viz training data and testing data which comprised of 90 and 10 %, respectively. The value of K was taken to be 5. Euclidean distance was calculated between the test data and each of the training data. The distance matrix thus obtained was then sorted. After sorting, we selected the first k items from the distance matrix, and these are those entries in trainingdata that are most likely to have the same symptoms of diabetes as that of our test data. This was followed by taking the votes of these k items, and the test data were classified into one of the corresponding category, that is, diabetic and not diabetic. Fig. 1 MATLAB Program in execution
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470 @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 1 | Nov-Dec 2017 Page: 614 6. CONCLUSION This K-nearest neighbor based system is very useful for diagnosis of diabetes. The reliability of the system was evaluated by predicting new observations (on specific variables) from previous observations (on the same or other variables) after executing a process of so-called learning from existing training data. The results suggest that this system can perform good prediction with least error and finally this technique could be an important tool for supplementing the medical doctors in performing expert diagnosis. In this method the efficiency of Forecasting was found to be around 91%. Its performance can be further improved by identifying & incorporating various other parameters and increasing the size of training data. REFERENCE 1) Bharat Rao R, Bi J, Obuchowski N, Naidich D (2007) LungCAD: a clinically approved, machine learning system for lung cancer detection. In: International conference on knowledge discovery and data mining 2007, San Jose, California, USA, ACM 978-1-59593-609-7/07/0008 2) Bonham GS, Brock DB (1985) The relationship of diabetes with race, sex, and obesity. Am J ClinNutr 41:776–783 3) Bratko I, Kononenko I (1987) Learning rules from incomplete and noisy data. In: Phelip B (ed) Interactions in artificial intelligence and statistical methods. Technical Press, Hampshire 4) Caruana R, Niculescu-Mizil A (2006) An empirical comparison of supervised learning algorithms. In: ICML ‘06 Proceedings of the 23rd international conference on machine learning, pp 161–168 5) Catlett J (1991) On changing continuous attributes into ordered discrete attributes. In: Proceedings of European working session on learning-91, Portugal, 4–6 Mar 1991, pp 164–178 6) Catto JWF, Linkens DA, Abbod MF, Chen M, Burton JL, Feeley KM, Hamdy FC (2003) Artificial intelligence in predicting bladder cancer outcome: a comparison of neuro-fuzzy modeling and artificial neural networks. Clin Cancer Res 9:4172 7) Chan JM, Rimm EB, Colditz GA, Stampfer MJ, Willett WC (1994) Obesity, fat distribution, and weight gain as risk factors for clinical diabetes in men. Diabetes Care 17(9):961–969 8) Chang C-L,HsuM-Y(2009) The study that applies artificial intelligence and logistic regression for assistance in differential diagnostic of pancreatic cancer. Expert SystAppl 36(7):10663–10672 9) Chiu J-S, Wang Y-F, Su Y-C,Wei L-H, Liao J-G, LiY-C (2008)Artificial neural network to predict skeletal metastasis in patients with prostate cancer. Springer science ?Business Media, May 2008 10) Clark P, Boswell R (1991) Rule Induction with CN2: some recent improvements. In: Proceedings of European working session on learning-91, Portugal, Mar 1991, pp 151–163 11) Lesmo L, Saitta L, Torasso P (1983) Fuzzy production rules: a learning methodology. In: Advances in fuzzy sets, possibility theory and applications. pp 181–198 12) Lindley CA (2012) Neurobiological computation and synthetic intelligence. In: Artificial intelligence and simulation of behavior, AISB/IACAP world congress 2012, Birmingham, UK, 2–6 July 2012, pp 20–25 13) Mahamud K, Abu BakarA, Norwawi NM (1999) Multilayer perceptron modeling in housing market. Malays Manage J 3:61–69 Nunez M (1990) Decision tree induction using domain knowledge. In: 14) Wielinga B, Boose J, Gaines B, Schreiberg G, Someren Van M (eds) Current trends in knowledge acquisition. IOS Press, Amsterdam