Trading off coverage for accuracy in forecasts: Applications to clinical data analysis

Size: px
Start display at page:

Download "Trading off coverage for accuracy in forecasts: Applications to clinical data analysis"

Transcription

1 Trading off coverage for accuracy in forecasts: Applications to clinical data analysis Michael J Pazzani, Patrick Murphy, Kamal Ali, and David Schulenburg Department of Information and Computer Science University of California Irvine, CA {pazzani, pmurphy, ali, schulenb}@ics.uci.edu Research supported by Air Force Office of Scientific Research Grant, F J-0430 AIM-94 Thursday, June 30,

2 Inductive Learning of Classification Procedures Given: A set of training examples a. Attribute-value pairs: { (age, 24) (gender, female)... } b. A class label: pregnant Create A classification procedure to infer the class label of an example represented as a set of Attribute-value pairs Decision Tree Weights of neural network Conditional probability of a class given an attribute Rules Rule with confidence factors Typical evaluation of a learning algorithm: Divide available data into a training and test set Infer procedure from data in training set. Estimate accuracy of procedure on data in the test set. AIM-94 Thursday, June 30,

3 Trading off coverage for accuracy Learners usually infer the classification of all test examples Give learner ability to say I don t know on some examples Goal: Learner is more accurate when it makes a classification. Possible applications: Human computer interfaces: Learning Macros Learning rules to translate from Japanese to English Analysis of medical databases - Let learner automatically handle the typical cases - Refer hard cases to a human specialist Evaluation: T- Total number of test examples P- Number of examples for which the learner makes a prediction C- Number of examples whose class is inferred correctly = C P = P T AIM-94 Thursday, June 30,

4 0.94 Trading off coverage for accuracy Lymphography Backprop Activation AIM-94 Thursday, June 30,

5 Goals of this research Modify learning algorithms to trade off coverage for accuracy Learners typically have an internal measure of hypothesis quality Use hypothesis quality measure to determine whether to classify Experimental evaluate trading off coverage for accuracy on databases from UCI Archive of Machine Learning Databases Train on 2/3rds Test on remaining 1/3. Averages over 20 trials. Breast Cancer (699 examples; benign from malignant tumors) Lymphography (148 examples; identify malignant tumors) DNA Promoter (106 examples; Leave-one-out testing) Describe how a sparse clinical database (diabetes data sets) can be analyzed by classification learners. AIM-94 Thursday, June 30,

6 Neural Networks One output unit per class. An output units activation is between 0 and 1. Assign an example to the class with the highest activation. Fever Bloodshot eyes Pregnant Headache Nausea Swollen Glands Gender Cancer Age AIM-94 Thursday, June 30,

7 Trading off coverage for accuracy in Neural Networks 1. Assign an example to the class with the highest activation provided that that activation is above a threshold. 2. Assign an example to the class with the highest activation provided that that the difference between that activation and the next highest is above a threshold. (Didn t make a significant difference in our experiments) AIM-94 Thursday, June 30,

8 0.74 Breast Cancer Backprop Activation 0.9 AIM-94 Thursday, June 30,

9 0 Promoter Backprop Activation AIM-94 Thursday, June 30,

10 Bayesian Classifier An example is assigned to the class that maximizes the probability of that class, given the example. If we assume features are independent P(C i A 1 =V 1j &...A n =V nj ) = P(C i ) Estimate from training data: P(C i ) P C i A k =V kj k P C i A k =V kj P(C i ) Trading off coverage for accuracy: (Like backprop) Only make prediction if P(C i A 1 =V 1j &...A n =V nj ) is above some threshold. AIM-94 Thursday, June 30,

11 4 Breast Cancer Bayesian Classifier ln(probability) AIM-94 Thursday, June 30,

12 A Decision Tree (for determining suitability of contact lenses) No 15n 0h 0s Tears Reduced Normal Age Prescription Astigmatic Prescription Soft Hard < >55 Hyper Myope Yes No Hyper Myope Soft Leaf nodes assign classes (n =no, h =hard, s = soft) Different leaves can be more reliable. No 1n 1h 3s 0n 1h 0s 1h 3s 5n 1h Hard 1n 3h 2s Astigmatic Yes No Soft 0n 0h 3s No 2n 1h 1s AIM-94 Thursday, June 30,

13 Trading off coverage for accuracy in decision trees Estimate the probability that an example belongs to some class given that it classified by a particular leaf Two possibilities: Divide training data *learning set *probability estimation set *unbiased estimate of probability, but not most accurate tree Estimate probability from training data * Use Laplace estimate of probability of class given leaf p(class = i) = k + N i +1 k j N j 3 soft, 1 hard, 0 none P(soft) = 4/7 AIM-94 Thursday, June 30,

14 Breast Cancer ID Maximum Probability 0.2 AIM-94 Thursday, June 30,

15 First Order Combined Learner Learns a set of first order Horn Clauses (Like Quinlan s FOIL) no_payment_due(p) :- enlisted(p, Org) & armed_forces(org). no_payment_due(p) :- longest_absence_from_school(p,a) & 6 > A & enrolled(p,s,u) & U > 5. no_payment_due(p) :- unemployed(p). Negation as failure Selects literal that maximizes information gain p p 1 log 1 p 2 p 1 +n -log p 0 +n 0 Averaging Multiple Models Learn several different rules sets (stocastically select literals) Assign example to the class predicted by the majority of rule sets Trading off coverage for accuracy Only make prediction if at least k of the rules sets agree AIM-94 Thursday, June 30,

16 0.72 Breast Cancer FOCL Number of Voters AIM-94 Thursday, June 30,

17 0 Promotor FOCL Number of Voters AIM-94 Thursday, June 30,

18 Learns a contrasting set of rules HYDRA no_payment_due(p) :- enlisted(p, Org) & armed_forces(org). [LS = 4.0] no_payment_due(p) :- longest_absence_from_school(p,a) & 6 > A & enrolled(p,s,u) & U > 5. [LS = 3.2] no_payment_due(p) :- unemployed(p). [LS = 2.1] payment_due(p) :- longest_absence_from_school(p,a) & A > 36 [LS = 2.7] payment_due(p) :- not (enrolled(p,_,_)) & not (unemployed(p)) [LS = 4.1] Attaches a measure of reliability to clauses (logical sufficiency) ls ij = p(clause ij(t) = true t class i ) p(clause ij (t) = true t class i ) Assigns example to the class of satisfied clause with the highest logical sufficiency Trading off coverage for accuracy: Only make prediction if at ratio of logical sufficiency is greater than a threshold AIM-94 Thursday, June 30,

19 Breast Cancer HYDRA log(ls Ratio) AIM-94 Thursday, June 30,

20 Analysis of the diabetes data sets with classification learners : Pre-breakfast blood glucose : Regular insulin dose : NPH insulin dose : Pre-lunch blood glucose : Regular insulin dose : Pre-supper blood glucose : Regular insulin dose : Unspecified blood glucose Problems with applying machine learning classifiers: 1. There is not a fixed, small number of classes 2. The data isn t divided into a fixed number of attributes 3. We know very little about medicine, diabetes, blood glucose If you have hammer, everything looks like a nail: 1. Predict whether a blood glucose is above mean for the patient 2. Create attributes and values from coded data 3. Come to AIM-94 and be willing to learn AIM-94 Thursday, June 30,

21 Converting the diabetes data set into attribute value format Current glucose measurement: (above or below). CGT: Current glucose time: (in hours) numeric. CGM: Current glucose meal: (unspecified, breakfast, lunch, super, or snack). CGP: Current glucose period: (unspecified, pre, or post). LGV: Last glucose measurement: numeric. ELGV: Elapsed time since last glucose measurement: (in hours) numeric. LGM: Last glucose meal: (unspecified, breakfast, lunch, super, or snack). LGP: Last glucose period: (unspecified, pre, or post). ENPH: Elapsed time since last NPH insulin: (in hours) numeric. NPH: Last NPH dose: numeric. EREG: Elapsed time since last regular insulin: (in hours) numeric. LREG: Last regular dose: numeric. Ran experiments with patients 20 and 27. Trained on 450, tested on PRE BREAKFAST 7.17 PRE LUNCH Below 80 PRE LUNCH 2.83 PRE SUPPER Below 101 UNSPEC UNSPEC 59.0 PRE BREAKFAST Above AIM-94 Thursday, June 30,

22 Backpropagation results 3 (Patient 27) (Patient 27) Activation AIM-94 Thursday, June 30,

23 FOCL results 1 (Patient 27) (Patient 27) Votes FOCL AIM-94 Thursday, June 30,

24 Decision tree results 8 (Patient 27) (Patient 27) Maximum Probability AIM-94 Thursday, June 30,

25 Example of Rule learned by FOCL ABOVE if ENPH 12.0 & LGV 131 & ENPH < 24.0 & CGM SUPPER ABOVE if LGV 132 & LREG < 6.5 & CGT 23.0 ABOVE if ELGV 6.5 & LGV < 130 & LGV 121 ABOVE if ELGV < 56.0 & LGV < 83 & ENPH 24.0 ABOVE if LGV 163 & CGP = UNSPECIFIED & LGV < 181 ABOVE if LGV 131 & LGV < 147 & CGM = LUNCH ABOVE if ENPH 12.0 & LGV 131 & CGT 8.0 & LGV < 142 ABOVE if ELGV 6.5 & LGV 191 & ELGV < 10.5 ABOVE if ELGV 6.5 & CGT 8.0 & LGV < 90 ABOVE if LGV 96 & LGV < 118 & ELGV 4.5 & ENPH 14.5 ABOVE if LGV 128 & ENPH 5.0 & ELGV < 5.5 & LGV < 147 ABOVE if ENPH 5.0 & LGV 189 & ELGV < 4.0 ABOVE if LREG 7.5 & ENPH < 11.5 & LGV < 147 ABOVE if LGV 128 & ELGV 33.5 & CGT < 7.5 Above if at lease 5 hours have elapsed since last NPH insulin Last glucose maesurement was above 189 It s been less than 4 hours since last measurement AIM-94 Thursday, June 30,

26 Conclusions Experimentally evaluated trading off coverage for accuracy in machine learning classifiers Rather than forcing problems to be classification problems, and important issue is to identify new classes of learning problems: Different goals Different example representations We also do research in: Reducing cost of misclassification errors Knowledge-guided induction AIM-94 Thursday, June 30,

Combining Inductive and Analytical Learning

Combining Inductive and Analytical Learning Combining Inductive and Analytical Why combine inductive and analytical learning? KBANN: prior knowledge to initialize the hypothesis TangentProp, EBNN: prior knowledge alters search objective FOCL: prior

More information

Classification of Insulin Dependent Diabetes Mellitus Blood Glucose Level Using Support Vector Machine

Classification of Insulin Dependent Diabetes Mellitus Blood Glucose Level Using Support Vector Machine IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, PP 36-42 www.iosrjournals.org Classification of Insulin Dependent Diabetes Mellitus Blood Glucose Level Using Support

More information

Lecture 2: Foundations of Concept Learning

Lecture 2: Foundations of Concept Learning Lecture 2: Foundations of Concept Learning Cognitive Systems - Machine Learning Part I: Basic Approaches to Concept Learning Version Space, Candidate Elimination, Inductive Bias last change October 18,

More information

Application of Tree Structures of Fuzzy Classifier to Diabetes Disease Diagnosis

Application of Tree Structures of Fuzzy Classifier to Diabetes Disease Diagnosis , pp.143-147 http://dx.doi.org/10.14257/astl.2017.143.30 Application of Tree Structures of Fuzzy Classifier to Diabetes Disease Diagnosis Chang-Wook Han Department of Electrical Engineering, Dong-Eui University,

More information

Positive and Unlabeled Relational Classification through Label Frequency Estimation

Positive and Unlabeled Relational Classification through Label Frequency Estimation Positive and Unlabeled Relational Classification through Label Frequency Estimation Jessa Bekker and Jesse Davis Computer Science Department, KU Leuven, Belgium firstname.lastname@cs.kuleuven.be Abstract.

More information

DIABETIC RISK PREDICTION FOR WOMEN USING BOOTSTRAP AGGREGATION ON BACK-PROPAGATION NEURAL NETWORKS

DIABETIC RISK PREDICTION FOR WOMEN USING BOOTSTRAP AGGREGATION ON BACK-PROPAGATION NEURAL NETWORKS International Journal of Computer Engineering & Technology (IJCET) Volume 9, Issue 4, July-Aug 2018, pp. 196-201, Article IJCET_09_04_021 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=9&itype=4

More information

Dealing with Missing Values in Neural Network-Based Diagnostic Systems

Dealing with Missing Values in Neural Network-Based Diagnostic Systems Dealing with Missing Values in Neural Network-Based Diagnostic Systems P. K. Sharpe 1 & R. J. Solly The Transputer Centre University of the West of England Coldharbour Lane Frenchay Bristol BS16 1QY Abstract

More information

How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection

How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection Esma Nur Cinicioglu * and Gülseren Büyükuğur Istanbul University, School of Business, Quantitative Methods

More information

Learning with Rare Cases and Small Disjuncts

Learning with Rare Cases and Small Disjuncts Appears in Proceedings of the 12 th International Conference on Machine Learning, Morgan Kaufmann, 1995, 558-565. Learning with Rare Cases and Small Disjuncts Gary M. Weiss Rutgers University/AT&T Bell

More information

Credal decision trees in noisy domains

Credal decision trees in noisy domains Credal decision trees in noisy domains Carlos J. Mantas and Joaquín Abellán Department of Computer Science and Artificial Intelligence University of Granada, Granada, Spain {cmantas,jabellan}@decsai.ugr.es

More information

Tools for Life Introduction to patterns

Tools for Life Introduction to patterns Tools for Life Introduction to patterns Insulin Food Activity Tools for Life. Questions? 1-800-227-8862 OneTouch.com 2011 LifeScan, Inc. Milpitas, CA 95035 11/11 AW 3085039B 3 YOU + Congratulations for

More information

Positive and Unlabeled Relational Classification through Label Frequency Estimation

Positive and Unlabeled Relational Classification through Label Frequency Estimation Positive and Unlabeled Relational Classification through Label Frequency Estimation Jessa Bekker and Jesse Davis Computer Science Department, KU Leuven, Belgium firstname.lastname@cs.kuleuven.be Abstract.

More information

Empirical function attribute construction in classification learning

Empirical function attribute construction in classification learning Pre-publication draft of a paper which appeared in the Proceedings of the Seventh Australian Joint Conference on Artificial Intelligence (AI'94), pages 29-36. Singapore: World Scientific Empirical function

More information

Performance Analysis of Different Classification Methods in Data Mining for Diabetes Dataset Using WEKA Tool

Performance Analysis of Different Classification Methods in Data Mining for Diabetes Dataset Using WEKA Tool Performance Analysis of Different Classification Methods in Data Mining for Diabetes Dataset Using WEKA Tool Sujata Joshi Assistant Professor, Dept. of CSE Nitte Meenakshi Institute of Technology Bangalore,

More information

Lazy Learning of Bayesian Rules

Lazy Learning of Bayesian Rules Machine Learning, 41, 53 84, 2000 c 2000 Kluwer Academic Publishers. Manufactured in The Netherlands. Lazy Learning of Bayesian Rules ZIJIAN ZHENG zijian@deakin.edu.au GEOFFREY I. WEBB webb@deakin.edu.au

More information

Using Bayesian Networks to Analyze Expression Data. Xu Siwei, s Muhammad Ali Faisal, s Tejal Joshi, s

Using Bayesian Networks to Analyze Expression Data. Xu Siwei, s Muhammad Ali Faisal, s Tejal Joshi, s Using Bayesian Networks to Analyze Expression Data Xu Siwei, s0789023 Muhammad Ali Faisal, s0677834 Tejal Joshi, s0677858 Outline Introduction Bayesian Networks Equivalence Classes Applying to Expression

More information

Article begins on next page

Article begins on next page The Independent Sign Bias: Gaining Insight from Multiple Linear Rutgers University has made this article freely available. Please share how this access benefits you. Your story matters. [https://rucore.libraries.rutgers.edu/rutgers-lib/30488/story/]

More information

Speech Processing / Speech Translation Case study: Transtac Details

Speech Processing / Speech Translation Case study: Transtac Details Speech Processing 11-492/18-492 Speech Translation Case study: Transtac Details Phraselator: One Way Translation Commercial System VoxTec Rapid deployment Modules of 500ish utts Transtac: Two S2S System

More information

Self-Monitoring Blood Glucose (SMBG) Frequency & Pattern Tool

Self-Monitoring Blood Glucose (SMBG) Frequency & Pattern Tool Self-Monitoring Blood Glucose () Pattern Recommendation: Basal Insulin Only (To Target) NPH or long-acting analogue, typically given at. at least as often as is being given. Optional, less frequent can

More information

Phone Number:

Phone Number: International Journal of Scientific & Engineering Research, Volume 6, Issue 5, May-2015 1589 Multi-Agent based Diagnostic Model for Diabetes 1 A. A. Obiniyi and 2 M. K. Ahmed 1 Department of Mathematic,

More information

Statistics 202: Data Mining. c Jonathan Taylor. Final review Based in part on slides from textbook, slides of Susan Holmes.

Statistics 202: Data Mining. c Jonathan Taylor. Final review Based in part on slides from textbook, slides of Susan Holmes. Final review Based in part on slides from textbook, slides of Susan Holmes December 5, 2012 1 / 1 Final review Overview Before Midterm General goals of data mining. Datatypes. Preprocessing & dimension

More information

Analysis of Classification Algorithms towards Breast Tissue Data Set

Analysis of Classification Algorithms towards Breast Tissue Data Set Analysis of Classification Algorithms towards Breast Tissue Data Set I. Ravi Assistant Professor, Department of Computer Science, K.R. College of Arts and Science, Kovilpatti, Tamilnadu, India Abstract

More information

A scored AUC Metric for Classifier Evaluation and Selection

A scored AUC Metric for Classifier Evaluation and Selection A scored AUC Metric for Classifier Evaluation and Selection Shaomin Wu SHAOMIN.WU@READING.AC.UK School of Construction Management and Engineering, The University of Reading, Reading RG6 6AW, UK Peter Flach

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017 RESEARCH ARTICLE Classification of Cancer Dataset in Data Mining Algorithms Using R Tool P.Dhivyapriya [1], Dr.S.Sivakumar [2] Research Scholar [1], Assistant professor [2] Department of Computer Science

More information

January 7, 5:00 p.m. EST

January 7, 5:00 p.m. EST Study 3-151 Phase 2 Trial: Preliminary Results BIOD-531, a Concentrated Ultra-Rapid-Acting Prandial/Basal Insulin, Demonstrates Superior Post-Meal Glucose Control Compared to Marketed Prandial/Basal Insulins

More information

INTRODUCTION TO MACHINE LEARNING. Decision tree learning

INTRODUCTION TO MACHINE LEARNING. Decision tree learning INTRODUCTION TO MACHINE LEARNING Decision tree learning Task of classification Automatically assign class to observations with features Observation: vector of features, with a class Automatically assign

More information

A STUDY OF AdaBoost WITH NAIVE BAYESIAN CLASSIFIERS: WEAKNESS AND IMPROVEMENT

A STUDY OF AdaBoost WITH NAIVE BAYESIAN CLASSIFIERS: WEAKNESS AND IMPROVEMENT Computational Intelligence, Volume 19, Number 2, 2003 A STUDY OF AdaBoost WITH NAIVE BAYESIAN CLASSIFIERS: WEAKNESS AND IMPROVEMENT KAI MING TING Gippsland School of Computing and Information Technology,

More information

International Journal of Pharma and Bio Sciences A NOVEL SUBSET SELECTION FOR CLASSIFICATION OF DIABETES DATASET BY ITERATIVE METHODS ABSTRACT

International Journal of Pharma and Bio Sciences A NOVEL SUBSET SELECTION FOR CLASSIFICATION OF DIABETES DATASET BY ITERATIVE METHODS ABSTRACT Research Article Bioinformatics International Journal of Pharma and Bio Sciences ISSN 0975-6299 A NOVEL SUBSET SELECTION FOR CLASSIFICATION OF DIABETES DATASET BY ITERATIVE METHODS D.UDHAYAKUMARAPANDIAN

More information

Classification of benign and malignant masses in breast mammograms

Classification of benign and malignant masses in breast mammograms Classification of benign and malignant masses in breast mammograms A. Šerifović-Trbalić*, A. Trbalić**, D. Demirović*, N. Prljača* and P.C. Cattin*** * Faculty of Electrical Engineering, University of

More information

Comparative Analysis of Machine Learning Algorithms for Chronic Kidney Disease Detection using Weka

Comparative Analysis of Machine Learning Algorithms for Chronic Kidney Disease Detection using Weka I J C T A, 10(8), 2017, pp. 59-67 International Science Press ISSN: 0974-5572 Comparative Analysis of Machine Learning Algorithms for Chronic Kidney Disease Detection using Weka Milandeep Arora* and Ajay

More information

Diabetes Technology Continuous Subcutaneous Insulin Infusion Therapy And Continuous Glucose Monitoring In Adults: An Endocrine Society Clinical

Diabetes Technology Continuous Subcutaneous Insulin Infusion Therapy And Continuous Glucose Monitoring In Adults: An Endocrine Society Clinical Diabetes Technology Continuous Subcutaneous Insulin Infusion Therapy And Continuous Glucose Monitoring In Adults: An Endocrine Society Clinical Practice Guideline Task Force Members Anne Peters, MD (Chair)

More information

An SVM-Fuzzy Expert System Design For Diabetes Risk Classification

An SVM-Fuzzy Expert System Design For Diabetes Risk Classification An SVM-Fuzzy Expert System Design For Diabetes Risk Classification Thirumalaimuthu Thirumalaiappan Ramanathan, Dharmendra Sharma Faculty of Education, Science, Technology and Mathematics University of

More information

Type 1 diabetes and exams

Type 1 diabetes and exams Type 1 diabetes and exams Using this tool We ve designed this tool to help students with Type 1 diabetes, their families and schools plan and prepare for successful exams. While some information is provided

More information

Review: Logistic regression, Gaussian naïve Bayes, linear regression, and their connections

Review: Logistic regression, Gaussian naïve Bayes, linear regression, and their connections Review: Logistic regression, Gaussian naïve Bayes, linear regression, and their connections New: Bias-variance decomposition, biasvariance tradeoff, overfitting, regularization, and feature selection Yi

More information

BLOOD GLUCOSE PREDICTION MODELS FOR PERSONALIZED DIABETES MANAGEMENT

BLOOD GLUCOSE PREDICTION MODELS FOR PERSONALIZED DIABETES MANAGEMENT BLOOD GLUCOSE PREDICTION MODELS FOR PERSONALIZED DIABETES MANAGEMENT A Thesis Submitted to the Graduate Faculty of the North Dakota State University of Agriculture and Applied Science By Warnakulasuriya

More information

Predicting Diabetes and Heart Disease Using Features Resulting from KMeans and GMM Clustering

Predicting Diabetes and Heart Disease Using Features Resulting from KMeans and GMM Clustering Predicting Diabetes and Heart Disease Using Features Resulting from KMeans and GMM Clustering Kunal Sharma CS 4641 Machine Learning Abstract Clustering is a technique that is commonly used in unsupervised

More information

student is independent staff to supervise student is independent staff to supervise student is independent staff to supervise student is independent

student is independent staff to supervise student is independent staff to supervise student is independent staff to supervise student is independent Diabetes Medical Management Plan This plan as well as school medication forms, self authorization and dietary forms should be completed by the student s personal health care team and parents/guardian.

More information

Pattern Analysis and Machine Intelligence

Pattern Analysis and Machine Intelligence Pattern Analysis and Machine Intelligence Lecture tes on Machine Learning Matteo Matteucci matteucci@eletpolimiit Department of Electronics and Information Politecnico di Milano Matteo Matteucci c Lecture

More information

A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range

A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range Lae-Jeong Park and Jung-Ho Moon Department of Electrical Engineering, Kangnung National University Kangnung, Gangwon-Do,

More information

My Transplant Log. Patient Education. After a kidney/pancreas transplant. Vital Signs

My Transplant Log. Patient Education. After a kidney/pancreas transplant. Vital Signs Patient Education Page 20-1 My Transplant Log After a kidney/pancreas transplant This section of the Guide to Your Kidney/Pancreas Transplant explains the tests you will have after your transplant. It

More information

Classification. Methods Course: Gene Expression Data Analysis -Day Five. Rainer Spang

Classification. Methods Course: Gene Expression Data Analysis -Day Five. Rainer Spang Classification Methods Course: Gene Expression Data Analysis -Day Five Rainer Spang Ms. Smith DNA Chip of Ms. Smith Expression profile of Ms. Smith Ms. Smith 30.000 properties of Ms. Smith The expression

More information

The Diabetes Team Auf der Bult

The Diabetes Team Auf der Bult Treatment and Education of Children with Type 1 Diabetes and their Parents Sarah Bläsig Diabetes Educator Mail to: onset@hka.de The Diabetes Team Auf der Bult Outpatient Clinic and Ward since 1973 320

More information

You probably don t spend a lot of time here, but if you do, you are reacting to the most basic needs a human has survival and protection.

You probably don t spend a lot of time here, but if you do, you are reacting to the most basic needs a human has survival and protection. Emotional Eating Food Diary An emotional eating food diary will take some work on your part. You can dismiss it because you don t feel like doing it or you don t think it will help. However, if you choose

More information

Bayesian models of inductive generalization

Bayesian models of inductive generalization Bayesian models of inductive generalization Neville E. Sanjana & Joshua B. Tenenbaum Department of Brain and Cognitive Sciences Massachusetts Institute of Technology Cambridge, MA 239 nsanjana, jbt @mit.edu

More information

Leveraging Expert Knowledge to Improve Machine-Learned Decision Support Systems

Leveraging Expert Knowledge to Improve Machine-Learned Decision Support Systems Leveraging Expert Knowledge to Improve Machine-Learned Decision Support Systems Finn Kuusisto, MS 1 ; Inês Dutra, PhD 2 ; Mai Elezaby, MD 1 ; Eneida Mendonça, MD, PhD 1 ; Jude Shavlik, PhD 1 ; Elizabeth

More information

**Medicare and Medicaid have other Billing Codes and different eligibility. Please contact our office for more information. Thank you!

**Medicare and Medicaid have other Billing Codes and different eligibility. Please contact our office for more information. Thank you! Checking Your Insurance Benefits IMPORTANT Please check your insurance coverage prior to any Nutrition or Diabetes Education appointment. You will be responsible for any services that are not covered.

More information

Track Your Magic Number

Track Your Magic Number Find Your Magic Weight Loss Number Do you know how many calories you need to be consuming for WEIGHT LOSS? Not knowing how many calories you are supposed to consume per day is like driving from Atlanta

More information

Using AUC and Accuracy in Evaluating Learning Algorithms

Using AUC and Accuracy in Evaluating Learning Algorithms 1 Using AUC and Accuracy in Evaluating Learning Algorithms Jin Huang Charles X. Ling Department of Computer Science The University of Western Ontario London, Ontario, Canada N6A 5B7 fjhuang, clingg@csd.uwo.ca

More information

AARP/American Speech-Language-Hearing Association (ASHA)

AARP/American Speech-Language-Hearing Association (ASHA) AARP/American Speech-Language-Hearing Association (ASHA) National Poll on Hearing Health Results Summary John Geraci (jgeraci@cruxresearch.com) The right information for the right decisions. Crux Research,

More information

Case Study: Competitive exercise

Case Study: Competitive exercise Case Study: Competitive exercise 32 year-old cyclist Type 1 diabetes since age 15 Last HbA1 54 No complications and hypo aware On Humalog 8/8/8 and Levemir 15 Complains about significant hypoglycaemia

More information

A DATA MINING APPROACH FOR PRECISE DIAGNOSIS OF DENGUE FEVER

A DATA MINING APPROACH FOR PRECISE DIAGNOSIS OF DENGUE FEVER A DATA MINING APPROACH FOR PRECISE DIAGNOSIS OF DENGUE FEVER M.Bhavani 1 and S.Vinod kumar 2 International Journal of Latest Trends in Engineering and Technology Vol.(7)Issue(4), pp.352-359 DOI: http://dx.doi.org/10.21172/1.74.048

More information

Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010

Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010 Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010 C.J.Vaske et al. May 22, 2013 Presented by: Rami Eitan Complex Genomic

More information

Diabetes Care and Education Dietetic Practice Group (DCE DPG) members

Diabetes Care and Education Dietetic Practice Group (DCE DPG) members Memorandum TO: FROM: Diabetes Care and Education Dietetic Practice Group (DCE DPG) members Patti Urbanski, MEd, RD, LD, CDE DCE Chair 2008-2009 Gretchen Benson, RD, LD, CDE DCE Publications Committee Chair

More information

My Weight (Assessment)

My Weight (Assessment) My Weight (Assessment) Which of the following describes you? o I know I need to lose weight but I m not quite ready to start. o I m ready to lose weight and I need some help. o I want to maintain my weight

More information

Predicting Human Immunodeficiency Virus Type 1 Drug Resistance From Genotype Using Machine Learning. Robert James Murray

Predicting Human Immunodeficiency Virus Type 1 Drug Resistance From Genotype Using Machine Learning. Robert James Murray Predicting Human Immunodeficiency Virus Type 1 Drug Resistance From Genotype Using Machine Learning. Robert James Murray Master of Science School of Informatics University Of Edinburgh 2004 ABSTRACT: Drug

More information

ABSTRACT. classification algorithm, so rules can be extracted from the decision tree models.

ABSTRACT. classification algorithm, so rules can be extracted from the decision tree models. ABSTRACT This study analyses the rule extraction of the cardiovascular database using classification algorithm. Heart disease is one of the most common causes of death in the western world and increasing

More information

Using Bayesian Networks to Direct Stochastic Search in Inductive Logic Programming

Using Bayesian Networks to Direct Stochastic Search in Inductive Logic Programming Appears in Proceedings of the 17th International Conference on Inductive Logic Programming (ILP). Corvallis, Oregon, USA. June, 2007. Using Bayesian Networks to Direct Stochastic Search in Inductive Logic

More information

Probability-Based Protein Identification for Post-Translational Modifications and Amino Acid Variants Using Peptide Mass Fingerprint Data

Probability-Based Protein Identification for Post-Translational Modifications and Amino Acid Variants Using Peptide Mass Fingerprint Data Probability-Based Protein Identification for Post-Translational Modifications and Amino Acid Variants Using Peptide Mass Fingerprint Data Tong WW, McComb ME, Perlman DH, Huang H, O Connor PB, Costello

More information

PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH

PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH 1 VALLURI RISHIKA, M.TECH COMPUTER SCENCE AND SYSTEMS ENGINEERING, ANDHRA UNIVERSITY 2 A. MARY SOWJANYA, Assistant Professor COMPUTER SCENCE

More information

Diagnosis of Breast Cancer Using Ensemble of Data Mining Classification Methods

Diagnosis of Breast Cancer Using Ensemble of Data Mining Classification Methods International Journal of Bioinformatics and Biomedical Engineering Vol. 1, No. 3, 2015, pp. 318-322 http://www.aiscience.org/journal/ijbbe ISSN: 2381-7399 (Print); ISSN: 2381-7402 (Online) Diagnosis of

More information

Predicting Breast Cancer Survivability Rates

Predicting Breast Cancer Survivability Rates Predicting Breast Cancer Survivability Rates For data collected from Saudi Arabia Registries Ghofran Othoum 1 and Wadee Al-Halabi 2 1 Computer Science, Effat University, Jeddah, Saudi Arabia 2 Computer

More information

A Deep Learning Approach to Identify Diabetes

A Deep Learning Approach to Identify Diabetes , pp.44-49 http://dx.doi.org/10.14257/astl.2017.145.09 A Deep Learning Approach to Identify Diabetes Sushant Ramesh, Ronnie D. Caytiles* and N.Ch.S.N Iyengar** School of Computer Science and Engineering

More information

Variable Features Selection for Classification of Medical Data using SVM

Variable Features Selection for Classification of Medical Data using SVM Variable Features Selection for Classification of Medical Data using SVM Monika Lamba USICT, GGSIPU, Delhi, India ABSTRACT: The parameters selection in support vector machines (SVM), with regards to accuracy

More information

A Comparison of Collaborative Filtering Methods for Medication Reconciliation

A Comparison of Collaborative Filtering Methods for Medication Reconciliation A Comparison of Collaborative Filtering Methods for Medication Reconciliation Huanian Zheng, Rema Padman, Daniel B. Neill The H. John Heinz III College, Carnegie Mellon University, Pittsburgh, PA, 15213,

More information

Diagnosis Of the Diabetes Mellitus disease with Fuzzy Inference System Mamdani

Diagnosis Of the Diabetes Mellitus disease with Fuzzy Inference System Mamdani Diagnosis Of the Diabetes Mellitus disease with Fuzzy Inference System Mamdani Za imatun Niswati, Aulia Paramita and Fanisya Alva Mustika Technical Information, Indraprasta PGRI University E-mail : zaimatunnis@gmail.com,

More information

Insulin Pump Therapy

Insulin Pump Therapy Patient and Family Education Insulin Pump Therapy The insulin pump is a device that gives insulin to the body at a steady rate. With the pump you won t need daily shots. This handout describes how insulin

More information

Mining first-order frequent patterns in the STULONG database

Mining first-order frequent patterns in the STULONG database Mining first-order frequent patterns in the STULONG database Jan Blaťák KD Group at Faculty of Informatics Masaryk University in Brno, Czech Republic xblatak@fi.muni.cz Abstract. We show how RAP can be

More information

CANDY Camp Application

CANDY Camp Application CANDY Camp Application Please complete the following form and submit it by June 15, 2016. Please mail form to Bonnie Kruse, Diabetes Program Coordinator, HSHS St. Anthony s Memorial Hospital, 503 North

More information

Augmented Medical Decisions

Augmented Medical Decisions Machine Learning Applied to Biomedical Challenges 2016 Rulex, Inc. Intelligible Rules for Reliable Diagnostics Rulex is a predictive analytics platform able to manage and to analyze big amounts of heterogeneous

More information

Diabetes: Just the Basics

Diabetes: Just the Basics Diabetes: Just the Basics Newly Diagnosed Type 2 Diabetes If you have recently been diagnosed with diabetes, you may be experiencing a range of emotions. You should know that you are not alone. Your healthcare

More information

Do Not Reproduce. Things to Tell Your Health Care Provider

Do Not Reproduce. Things to Tell Your Health Care Provider Note: This CareKit does not replace expert medical care. 2 Things to Tell Your Health Care Provider Before medicine is prescribed, tell him or her: Medicines on your health plan s preferred drug list (formulary).

More information

A Fuzzy Expert System for Heart Disease Diagnosis

A Fuzzy Expert System for Heart Disease Diagnosis A Fuzzy Expert System for Heart Disease Diagnosis Ali.Adeli, Mehdi.Neshat Abstract The aim of this study is to design a Fuzzy Expert System for heart disease diagnosis. The designed system based on the

More information

Software Version 1.0. User s Manual

Software Version 1.0. User s Manual Software Version 1.0 User s Manual Table of Contents Contents 0 Important Information about Your FreeStyle Libre software...1 Intended Use...1 System Requirements...1 Customer Service...1 Getting to Know

More information

Prediction of Malignant and Benign Tumor using Machine Learning

Prediction of Malignant and Benign Tumor using Machine Learning Prediction of Malignant and Benign Tumor using Machine Learning Ashish Shah Department of Computer Science and Engineering Manipal Institute of Technology, Manipal University, Manipal, Karnataka, India

More information

Key words Machine Learning, Clinical Dementia Rating Scale, dementia severity, dementia staging, Alzheimer s disease.

Key words Machine Learning, Clinical Dementia Rating Scale, dementia severity, dementia staging, Alzheimer s disease. Simple Models for Estimating Dementia Severity Using Machine Learning W. R. Shankle ab, Subramani Mani a, Malcolm B. Dick c, Michael J. Pazzani a University of California at Irvine, Irvine, California

More information

Rerepresenting and Restructuring Domain Theories: A Constructive Induction Approach. Abstract

Rerepresenting and Restructuring Domain Theories: A Constructive Induction Approach. Abstract Journal of Articial Intelligence Research 2 (1995) 411-446 Submitted 11/94; published 4/95 Rerepresenting and Restructuring Domain Theories: A Constructive Induction Approach Steven K. Donoho Larry A.

More information

Artificial Intelligence For Homeopathic Remedy Selection

Artificial Intelligence For Homeopathic Remedy Selection Artificial Intelligence For Homeopathic Remedy Selection A. R. Pawar, amrut.pawar@yahoo.co.in, S. N. Kini, snkini@gmail.com, M. R. More mangeshmore88@gmail.com Department of Computer Science and Engineering,

More information

My sick day plan for Type 1 Diabetes

My sick day plan for Type 1 Diabetes My sick day plan for Type 1 Diabetes When you get sick, your blood sugar levels may be harder to keep under control. Your blood sugars may go too high or too low. Be prepared before you get sick. This

More information

Outline. Model Development GLUCOSIM. Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus

Outline. Model Development GLUCOSIM. Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus Barış Ağar, Gülnur Birol*, Ali Çınar Department of Chemical and Environmental Engineering Illinois Institute

More information

Personalized Colorectal Cancer Survivability Prediction with Machine Learning Methods*

Personalized Colorectal Cancer Survivability Prediction with Machine Learning Methods* Personalized Colorectal Cancer Survivability Prediction with Machine Learning Methods* 1 st Samuel Li Princeton University Princeton, NJ seli@princeton.edu 2 nd Talayeh Razzaghi New Mexico State University

More information

PATIENT QUESTIONNAIRE / ASSESSMENT

PATIENT QUESTIONNAIRE / ASSESSMENT PATIENT QUESTIONNAIRE / ASSESSMENT Diabetes Form Please answer all questions in blue or black ink by filling in the blank or circling. SOCIAL HISTORY Date Phone (H) (W) (C) Age Male Female Marital Status:

More information

Medical Questionnaire

Medical Questionnaire Medical Questionnaire Date: Day Month Year Please answer these questions as completely as you can. We realize that this form is long, but the information in this form will be extremely valuable to us in

More information

An Improved Algorithm To Predict Recurrence Of Breast Cancer

An Improved Algorithm To Predict Recurrence Of Breast Cancer An Improved Algorithm To Predict Recurrence Of Breast Cancer Umang Agrawal 1, Ass. Prof. Ishan K Rajani 2 1 M.E Computer Engineer, Silver Oak College of Engineering & Technology, Gujarat, India. 2 Assistant

More information

Using Wittgenstein s family resemblance principle to learn exemplars

Using Wittgenstein s family resemblance principle to learn exemplars Using Wittgenstein s family resemblance principle to learn exemplars Vadera, S, Rodriguez, A, Succar, E and Wu, J http://dx.doi.org/10.1007/s10699 007 9119 2 Title Authors Type URL Using Wittgenstein s

More information

CS 4365: Artificial Intelligence Recap. Vibhav Gogate

CS 4365: Artificial Intelligence Recap. Vibhav Gogate CS 4365: Artificial Intelligence Recap Vibhav Gogate Exam Topics Search BFS, DFS, UCS, A* (tree and graph) Completeness and Optimality Heuristics: admissibility and consistency CSPs Constraint graphs,

More information

Postnatal Care for Women with Type 1 or Type 2 Diabetes

Postnatal Care for Women with Type 1 or Type 2 Diabetes Postnatal Care for Women with Type 1 or Type 2 Diabetes Maternity Patient Information Leaflet Introduction Congratulations! Now you have had your baby, your insulin requirements will be reduced. This is

More information

Maximum Likelihood ofevolutionary Trees is Hard p.1

Maximum Likelihood ofevolutionary Trees is Hard p.1 Maximum Likelihood of Evolutionary Trees is Hard Benny Chor School of Computer Science Tel-Aviv University Joint work with Tamir Tuller Maximum Likelihood ofevolutionary Trees is Hard p.1 Challenging Basic

More information

Weekly Questions for Dieters

Weekly Questions for Dieters Weekly Questions for Dieters In this document, you will find a schedule of questions that you, the coach, should ask your dieter during their time on the Ideal Protein Weight Loss Method. First and foremost,

More information

Contents. Just Classifier? Rules. Rules: example. Classification Rule Generation for Bioinformatics. Rule Extraction from a trained network

Contents. Just Classifier? Rules. Rules: example. Classification Rule Generation for Bioinformatics. Rule Extraction from a trained network Contents Classification Rule Generation for Bioinformatics Hyeoncheol Kim Rule Extraction from Neural Networks Algorithm Ex] Promoter Domain Hybrid Model of Knowledge and Learning Knowledge refinement

More information

How To Gain Your First 10 Pounds

How To Gain Your First 10 Pounds How To Gain Your First 10 Pounds Hey, it s Kyle Leon here and I d like to introduce you to a program I call: How To Gain Your First 10 Pounds. I ve put this bonus program together specifically for men

More information

DETECTION AND CLASSIFICATION OF MICROCALCIFICATION USING SHEARLET WAVE TRANSFORM

DETECTION AND CLASSIFICATION OF MICROCALCIFICATION USING SHEARLET WAVE TRANSFORM DETECTION AND CLASSIFICATION OF MICROCALCIFICATION USING Ms.Saranya.S 1, Priyanga. R 2, Banurekha. B 3, Gayathri.G 4 1 Asst. Professor,Electronics and communication,panimalar Institute of technology, Tamil

More information

This paper presents an alternative approach that seeks instead to adjust the probabilities produced by a standard naive Bayesian classier in order to

This paper presents an alternative approach that seeks instead to adjust the probabilities produced by a standard naive Bayesian classier in order to Adjusted Probability Naive Bayesian Induction Georey I. Webb 1 and Michael J. Pazzani 2 1 School of Computing and Mathematics Deakin University Geelong, Vic, 3217, Australia. 2 Department of Information

More information

Date of birth: Type 2 Other: Parent/guardian 1: Address: Telephone: Home: Work: Cell: address: Camper physician / health care provider:

Date of birth: Type 2 Other: Parent/guardian 1: Address: Telephone: Home: Work: Cell:  address: Camper physician / health care provider: Day & Evening Camp 2018 Specialized Health Care Diabetes Medical Management Plan Must be completed if your camper has diabetes. Parent/guardian and physician signature required. **We will also accept copies

More information

Fuzzy Decision Tree FID

Fuzzy Decision Tree FID Fuzzy Decision Tree FID Cezary Z. Janikow Krzysztof Kawa Math & Computer Science Department Math & Computer Science Department University of Missouri St. Louis University of Missouri St. Louis St. Louis,

More information

DiasNet an Internet Tool for Communication and Education in Diabetes

DiasNet an Internet Tool for Communication and Education in Diabetes DiasNet an Internet Tool for Communication and Education in Diabetes Ole K. HEJLESEN 1, Søren PLOUGMANN 1, David A. CAVAN 2 1 Dept. of Medical Informatics and Image Analysis, Aalborg University, Denmark,

More information

Diabetes Medical Management Plan (DMMP)

Diabetes Medical Management Plan (DMMP) Diabetes Medical Management Plan (DMMP) Page 1 of 7, DMMP This plan should be completed by the student s personal diabetes health care team, including the parents/guardians. It should be reviewed with

More information

Classification and Predication of Breast Cancer Risk Factors Using Id3

Classification and Predication of Breast Cancer Risk Factors Using Id3 The International Journal Of Engineering And Science (IJES) Volume 5 Issue 11 Pages PP 29-33 2016 ISSN (e): 2319 1813 ISSN (p): 2319 1805 Classification and Predication of Breast Cancer Risk Factors Using

More information

Breast Cancer Diagnosis Based on K-Means and SVM

Breast Cancer Diagnosis Based on K-Means and SVM Breast Cancer Diagnosis Based on K-Means and SVM Mengyao Shi UNC STOR May 4, 2018 Mengyao Shi (UNC STOR) Breast Cancer Diagnosis Based on K-Means and SVM May 4, 2018 1 / 19 Background Cancer is a major

More information

Comparative Study of K-means, Gaussian Mixture Model, Fuzzy C-means algorithms for Brain Tumor Segmentation

Comparative Study of K-means, Gaussian Mixture Model, Fuzzy C-means algorithms for Brain Tumor Segmentation Comparative Study of K-means, Gaussian Mixture Model, Fuzzy C-means algorithms for Brain Tumor Segmentation U. Baid 1, S. Talbar 2 and S. Talbar 1 1 Department of E&TC Engineering, Shri Guru Gobind Singhji

More information