SlideShare ist ein Scribd-Unternehmen logo
1 von 31
Deep Learning para
diagnosticar Alzheimer
usando imágenes de
resonancia magnética
FRANCISCO CARRILLO PÉREZ
8 DE MARZO 2018
Index
1. Introduction
2. Goals
3. Methods
4. ADNI Database
5. Experiments
6. Results
7. Conclusions
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Introduction: Alzheimer
•47 million people suffer from demencia in the world, and 9.9 million new cases are registered
each year.
•Alzheimer disease is the primary cause of dementia, gathering between 60% and 70% of all the
cases.
• Early diagnosis can cause major improvements in patients daily lives and life expectancy.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Previous works
• Manually detecting of brain mass deterioration: Neuronal loss and consequent brain atrophy
causes widening of the sulci, thinning of the gyri and dilatation of the ventricles with a
significant reduction in brain weight. Many studies have focused on quantifying focal atrophy in
the temporal lobe (Scheltens, et al., 2003) and even exist visual scales to quantify the degree of
atrophy, which are quick and easy to use.
• Automatic methods: volumetric and shape features together with PCA and SVM were used to
classify MRI images as having the disease or not (Lee, et al., 2009).
• Deep Learning: using 3D Convolutional Neural Networks for classification. (Korelev 2017).
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Goals
• Analysis and processing of images.
• Analysis and selection of a Convolutional Neural Network Architecture.
• Neural Network optimization and methods for model selection.
• Analysis of results.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Methods
Machine Learning: is a field of statistics and computer science that gives computer systems the
ability to "learn" (i.e. progressively improve performance on a specific task) with data, without
being explicitly programmed.
Supervised Learning: The computer is presented with example inputs and their desired outputs.
Deep Learning: subfield inside machine learning in which algorithms,
mainly neural networks, have a considerable amount of hidden layers
and highly computing cost.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Methods
Artificial Neural Networks (ANN): Artificial neural networks are computing systems trying to
imitate the behaviour of biological neural networks in our brain when they are learning about an
specific phenomenon.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Convolutional Neural Networks (CNN): type of deep neural networks, which means they have a considerable number of hidden
layers, using as a main operator the convolution operator. They has successfully been applied to analyzing visual imagery.
Methods
Methods
Convolution Operator: In its most general form,
convolution is an operation on two functions
of a real- valued argument. Convolution leverages
three important ideas that can help improve a
machine learning system: sparse interactions,
parameter sharing and equivariant representations.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Methods
Pooling Operator: A pooling function replaces the output of the net at a certain location with a summary
statistic of the nearby outputs. There are several operators but one broadly used is the max pooling
operator.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Methods
Activation functions: the activation function of a node defines the output of that node given an input or
set of inputs.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
SoftmaxReLU
Methods
Model evaluation methods
•K-Fold Cross Validation:
• Leave-One-Out Cross Validation: Particular case of k-Fold Cross Validation in which K is equal to
the number of samples in the dataset.
In this work, not including different images of the same patient both in training and test sets has
been guaranteed.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
ADNI Database
Alzheimer’s Disease Neuroimaging Initiative (ADNI): widely-used database for Alzheimer
disease studying. This database presents clinical data of patients such as MRI and PET images,
genetic reports, cognitive tests and blood biomarkers. There are four types of patientes:
Healthy,Alzheimer and two middle-states (LMCI and EMCI).
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
ADNI Database
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Example of image used for learning
An ADNI subset of images has been used. The following preprocessing
steps have been applied:
• Spatial Normalization: the same pixel correspond to the same
physical position in both images.
• Masked: delete cranial surface and bones.
• N3 correction: image intensity correction.
Experiments
Devices used for experiments
• MacBook Air 2016: CPU, 1,6 GHz Intel Core i5. RAM,8 GB 1600 MHz DDR3. Used for MRI images
preprocessing.
•Server: CPUs, 2 Intel(R) Xeon(R) CPU E5645 @ 2.40GHz. GPU, 2 Tesla C2050 / C2075. Used for
network training and testing
Framework and library for Deep Learning algorithms and NIFTI images processing
• Keras (Keras): Framework for Deep Learning algorithms.
• Nibabel (Nibabel): Python library for NIFTI images processing.
Hyperparameters for the network
Loss function: Categorical cross-entropy, N of iterations: 70, Batch size: 10,
Learning-rate: 27*10^-6
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Experiments
Analysis and images processing
Whe have used brain slices from 10 to 100 jumping 5 to 5, therefore having 19 different slices.
With Nibabel and Matplotlib libraries we were able to obtain each slice as a 2D image and save
it in PNG format.
◦
Images from slice 55 Images from slice 10 up to 100
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Experimentos
CNN architecture
Final architecture was based on VGG architecture used in (Korolev,2017).
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Input
3x110x110
Conv2D, 8,
(3x3) ReLU
Conv2D, 8,
(3x3)ReLU
Pool2D,
(2x2)LU
Conv2D, 16,
(3x3)ReLU
Conv2D, 16,
(3x3)ReLU
Pool2D,
(2x2)
Conv2D, 32,
(3x3)ReLU
Conv2D, 32,
(3x3)ReLU
Pool2D,
(2x2)
Conv2D, 64,
(3x3)ReLU
Conv2D, 64,
(3x3)ReLU
Pool2D, (2x2)
FullyConnected,
128
ReLU
BatchNorm,
Dropout p=0.7
FullyConnected,
64
ReLU
FullyConnected,
2
Softmax
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Experiments performed
•First experiments: 5-fold Cross Validation with slice 55 in small database(only one image per
pacient) and complete database (all pacients images).
•Selection of best 2D slices: 5-fold Cross Validation to validate which slice is the best for
classification.
•Validation of previous results using LOO: Leave-one-out Cross Validation per patient using best
slices.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Results: 5-fold Cross Validation with slice
55 in the reduced and complete dataset
Previous experiments Results
5-fold Cross Validation
using the reduced dataset
(just one image per
patient) with slice 55
43’5%
5-fold Cross Validation
using the complete dataset
(all the patient images)
with slice 55
65’9%
5-fold Cross Validation
using the complete dataset
with slice 55 without
preventing repetition
92%
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Results: 5-fold Cross Validation to test
which is the best slice
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Slice Result
10 56'3%
15 56’6%
20 52’3%
25 50’7%
30 50’7%
35 55’2%
40 63’3%
45 54’4%
50 64’1%
55 65’9%
Slice Result
60 57’7%
65 53’3%
70 54'1%
75 56’7%
80 36’9%
85 38’8%
90 45’8%
95 59’4%
100 59’4%
Results: Leave-one-out Cross Validation
per patient with the best slices
Slice Result
40 73’7%
50 69’7%
55 60%
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Results
Result in (Korolev,2017)
for AD vs Normal
LOO CV Slice 40
79% +- 0.8 73’7 %
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Conclusions
• We have observed that proper results can be obtained using 2D images, which has not been
performed before in literature.
• 2D images requiere less computational power, therefore using this approach in an hospital
could be easier.
• Some slices work better tahn other, as observed in experiments.
• More images means better results.
• Nowadays there are a lot of information about Deep Learning and anyone can do amazing
things.
• If I’ve done it you also can, because I’m not even smart.
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Bibliography
• (Korolev,2017): Residual and Plain Convolutional Neural Networks for 3D Brain {MRI}
Classification, Sergey Korolev and Amir Safiullin and Mikhail Belyaev and Yulia
Dodonova, IEEE International Symposium on Biomedical Imaging 2017.
• (Simonyan,2014): Very Deep Convolutional Networks for Large-Scale Image Recognition, Karen
Simonyan and Andrew Zisserman, CoRR 2014
• (ADNI): ADNI Webpage, http://adni.loni.usc.edu
• (Keras): Keras Webpage, https://keras.io
• (Nibabel): Nibabel Webpage, http://nipy.org/nibabel/
• (FreeSurfer): FreeSurfer Software Webpage, http://freesurfer.net
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Bibliography
http://www.wvha.org/getattachment/fc969f18-37b5-49db-be2a-
9d59cd41b43e/alzheimers.JPG.aspx
https://techcrunch.com/2017/04/13/neural-networks-made-easy/
https://ncrad.iu.edu/images/logos/adni3.png
http://www.imada.sdu.dk/~marco/DM825/animation.gif
https://upload.wikimedia.org/wikipedia/commons/6/63/Typical_cnn.png
http://themindbodyshift.com/wp-content/uploads/2015/03/projections-of-us-population-
developing-alzheimers-disease.png?w=660
http://immersive.healthcentral.com/alzheimers/d/LBLN/how-alzheimers-disease-changes-the-
brain/assets/a/img/Cerebellum_GIF.gif
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Bibliography
https://cs231n.github.io/convolutional-networks/#pool
https://fr.wikipedia.org/wiki/Fichier:Twitter_Bird.svg
https://commons.wikimedia.org/wiki/File:Octicons-mark-github.svg
https://www.shareicon.net/route-top-view-routes-straight-street-road-road-icons-transport-
roads-streets-683588
http://themetapicture.com/media/picture.jpe
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
You can follow me on
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
@pacocp9
pacocp
Don’t follow me down the street, you creepy audience
DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA
MAGNÉTICA
Thanks for your attention

Weitere ähnliche Inhalte

Was ist angesagt?

A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATION
A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATIONA COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATION
A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATIONsipij
 
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...sipij
 
IRJET - Detection for Alzheimer’s Disease using Image Processing
IRJET -  	  Detection for Alzheimer’s Disease using Image ProcessingIRJET -  	  Detection for Alzheimer’s Disease using Image Processing
IRJET - Detection for Alzheimer’s Disease using Image ProcessingIRJET Journal
 
Enhancing extreme learning machine: Novel extentions and applications to opti...
Enhancing extreme learning machine: Novel extentions and applications to opti...Enhancing extreme learning machine: Novel extentions and applications to opti...
Enhancing extreme learning machine: Novel extentions and applications to opti...Apdullah YAYIK, Ph.D.
 
Deep learning application to medical imaging: Perspectives as a physician
Deep learning application to medical imaging: Perspectives as a physicianDeep learning application to medical imaging: Perspectives as a physician
Deep learning application to medical imaging: Perspectives as a physicianHongyoon Choi
 
Review on classification based on artificial
Review on classification based on artificialReview on classification based on artificial
Review on classification based on artificialijasa
 
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...ijtsrd
 
Intelligent System for Alzheimer's Disease
Intelligent System for Alzheimer's DiseaseIntelligent System for Alzheimer's Disease
Intelligent System for Alzheimer's DiseaseBrain Dynamics
 
Regression and Artificial Neural Network in R
Regression and Artificial Neural Network in RRegression and Artificial Neural Network in R
Regression and Artificial Neural Network in RDr. Vaibhav Kumar
 
Biometric presentation attack detection
Biometric presentation attack detectionBiometric presentation attack detection
Biometric presentation attack detectionGautam Saxena
 

Was ist angesagt? (10)

A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATION
A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATIONA COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATION
A COMPARATIVE STUDY OF MACHINE LEARNING ALGORITHMS FOR EEG SIGNAL CLASSIFICATION
 
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...
CLASSIFICATION OF OCT IMAGES FOR DETECTING DIABETIC RETINOPATHY DISEASE USING...
 
IRJET - Detection for Alzheimer’s Disease using Image Processing
IRJET -  	  Detection for Alzheimer’s Disease using Image ProcessingIRJET -  	  Detection for Alzheimer’s Disease using Image Processing
IRJET - Detection for Alzheimer’s Disease using Image Processing
 
Enhancing extreme learning machine: Novel extentions and applications to opti...
Enhancing extreme learning machine: Novel extentions and applications to opti...Enhancing extreme learning machine: Novel extentions and applications to opti...
Enhancing extreme learning machine: Novel extentions and applications to opti...
 
Deep learning application to medical imaging: Perspectives as a physician
Deep learning application to medical imaging: Perspectives as a physicianDeep learning application to medical imaging: Perspectives as a physician
Deep learning application to medical imaging: Perspectives as a physician
 
Review on classification based on artificial
Review on classification based on artificialReview on classification based on artificial
Review on classification based on artificial
 
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...
Development of Diagnostic System for Brain MRI Scanning Based on Robust Infor...
 
Intelligent System for Alzheimer's Disease
Intelligent System for Alzheimer's DiseaseIntelligent System for Alzheimer's Disease
Intelligent System for Alzheimer's Disease
 
Regression and Artificial Neural Network in R
Regression and Artificial Neural Network in RRegression and Artificial Neural Network in R
Regression and Artificial Neural Network in R
 
Biometric presentation attack detection
Biometric presentation attack detectionBiometric presentation attack detection
Biometric presentation attack detection
 

Ähnlich wie Deep Learning aplicado al diagnostico de Alzheimer | BioInformaticsGRX

Automatic System for Detection and Classification of Brain Tumors
Automatic System for Detection and Classification of Brain TumorsAutomatic System for Detection and Classification of Brain Tumors
Automatic System for Detection and Classification of Brain TumorsFatma Sayed Ibrahim
 
Brain Abnormality Categorization
Brain Abnormality CategorizationBrain Abnormality Categorization
Brain Abnormality CategorizationIRJET Journal
 
review1.pptx
review1.pptxreview1.pptx
review1.pptxMonishV8
 
2020 11 1_sleep_net
2020 11 1_sleep_net2020 11 1_sleep_net
2020 11 1_sleep_netJAEMINJEONG5
 
A hybrid classification model for eeg signals
A hybrid classification model for  eeg signals A hybrid classification model for  eeg signals
A hybrid classification model for eeg signals Aboul Ella Hassanien
 
Brain Tumor Detection Using Deep Learning ppt new made.pptx
Brain Tumor Detection Using Deep Learning ppt new made.pptxBrain Tumor Detection Using Deep Learning ppt new made.pptx
Brain Tumor Detection Using Deep Learning ppt new made.pptxvikyt2211
 
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmOntheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmKarthik S
 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Editor IJCATR
 
Lung Cancer Detection using transfer learning.pptx.pdf
Lung Cancer Detection using transfer learning.pptx.pdfLung Cancer Detection using transfer learning.pptx.pdf
Lung Cancer Detection using transfer learning.pptx.pdfjagan477830
 
Early Detection of Alzheimer’s Disease Using Machine Learning Techniques
Early Detection of Alzheimer’s Disease Using Machine Learning TechniquesEarly Detection of Alzheimer’s Disease Using Machine Learning Techniques
Early Detection of Alzheimer’s Disease Using Machine Learning TechniquesIRJET Journal
 
Early Stage Detection of Alzheimer’s Disease Using Deep Learning
Early Stage Detection of Alzheimer’s Disease Using Deep LearningEarly Stage Detection of Alzheimer’s Disease Using Deep Learning
Early Stage Detection of Alzheimer’s Disease Using Deep LearningIRJET Journal
 
Proposed Work.pptx
Proposed Work.pptxProposed Work.pptx
Proposed Work.pptxSubburaj51
 
EEG S IGNAL Q UANTIFICATION B ASED ON M ODUL L EVELS
EEG S IGNAL  Q UANTIFICATION  B ASED ON M ODUL  L EVELS EEG S IGNAL  Q UANTIFICATION  B ASED ON M ODUL  L EVELS
EEG S IGNAL Q UANTIFICATION B ASED ON M ODUL L EVELS sipij
 
A New Solution to the Brain State Permanency for Brain-Based Authentication M...
A New Solution to the Brain State Permanency for Brain-Based Authentication M...A New Solution to the Brain State Permanency for Brain-Based Authentication M...
A New Solution to the Brain State Permanency for Brain-Based Authentication M...Hebin Raj
 
Automated Analysis of Microscopy Images using Deep Convolutional Neural Network
Automated Analysis of Microscopy Images using Deep Convolutional Neural NetworkAutomated Analysis of Microscopy Images using Deep Convolutional Neural Network
Automated Analysis of Microscopy Images using Deep Convolutional Neural NetworkAdetayoOkunoye
 
Deep Learning for AI (3)
Deep Learning for AI (3)Deep Learning for AI (3)
Deep Learning for AI (3)Dongheon Lee
 
Alzheimer Disease Prediction using Machine Learning Algorithms
Alzheimer Disease Prediction using Machine Learning AlgorithmsAlzheimer Disease Prediction using Machine Learning Algorithms
Alzheimer Disease Prediction using Machine Learning AlgorithmsIRJET Journal
 

Ähnlich wie Deep Learning aplicado al diagnostico de Alzheimer | BioInformaticsGRX (20)

Automatic System for Detection and Classification of Brain Tumors
Automatic System for Detection and Classification of Brain TumorsAutomatic System for Detection and Classification of Brain Tumors
Automatic System for Detection and Classification of Brain Tumors
 
Brain Abnormality Categorization
Brain Abnormality CategorizationBrain Abnormality Categorization
Brain Abnormality Categorization
 
review1.pptx
review1.pptxreview1.pptx
review1.pptx
 
2020 11 1_sleep_net
2020 11 1_sleep_net2020 11 1_sleep_net
2020 11 1_sleep_net
 
A hybrid classification model for eeg signals
A hybrid classification model for  eeg signals A hybrid classification model for  eeg signals
A hybrid classification model for eeg signals
 
Brain Tumor Detection Using Deep Learning ppt new made.pptx
Brain Tumor Detection Using Deep Learning ppt new made.pptxBrain Tumor Detection Using Deep Learning ppt new made.pptx
Brain Tumor Detection Using Deep Learning ppt new made.pptx
 
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmOntheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
 
Lung Cancer Detection using transfer learning.pptx.pdf
Lung Cancer Detection using transfer learning.pptx.pdfLung Cancer Detection using transfer learning.pptx.pdf
Lung Cancer Detection using transfer learning.pptx.pdf
 
Early Detection of Alzheimer’s Disease Using Machine Learning Techniques
Early Detection of Alzheimer’s Disease Using Machine Learning TechniquesEarly Detection of Alzheimer’s Disease Using Machine Learning Techniques
Early Detection of Alzheimer’s Disease Using Machine Learning Techniques
 
D04472327
D04472327D04472327
D04472327
 
Early Stage Detection of Alzheimer’s Disease Using Deep Learning
Early Stage Detection of Alzheimer’s Disease Using Deep LearningEarly Stage Detection of Alzheimer’s Disease Using Deep Learning
Early Stage Detection of Alzheimer’s Disease Using Deep Learning
 
Proposed Work.pptx
Proposed Work.pptxProposed Work.pptx
Proposed Work.pptx
 
EEG S IGNAL Q UANTIFICATION B ASED ON M ODUL L EVELS
EEG S IGNAL  Q UANTIFICATION  B ASED ON M ODUL  L EVELS EEG S IGNAL  Q UANTIFICATION  B ASED ON M ODUL  L EVELS
EEG S IGNAL Q UANTIFICATION B ASED ON M ODUL L EVELS
 
A New Solution to the Brain State Permanency for Brain-Based Authentication M...
A New Solution to the Brain State Permanency for Brain-Based Authentication M...A New Solution to the Brain State Permanency for Brain-Based Authentication M...
A New Solution to the Brain State Permanency for Brain-Based Authentication M...
 
Automated Analysis of Microscopy Images using Deep Convolutional Neural Network
Automated Analysis of Microscopy Images using Deep Convolutional Neural NetworkAutomated Analysis of Microscopy Images using Deep Convolutional Neural Network
Automated Analysis of Microscopy Images using Deep Convolutional Neural Network
 
Deep Learning for AI (3)
Deep Learning for AI (3)Deep Learning for AI (3)
Deep Learning for AI (3)
 
Alzheimer Disease Prediction using Machine Learning Algorithms
Alzheimer Disease Prediction using Machine Learning AlgorithmsAlzheimer Disease Prediction using Machine Learning Algorithms
Alzheimer Disease Prediction using Machine Learning Algorithms
 
Dsp review
Dsp reviewDsp review
Dsp review
 
Deep convolutional neural network framework with multi-modal fusion for Alzhe...
Deep convolutional neural network framework with multi-modal fusion for Alzhe...Deep convolutional neural network framework with multi-modal fusion for Alzhe...
Deep convolutional neural network framework with multi-modal fusion for Alzhe...
 

Kürzlich hochgeladen

Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...hotbabesbook
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Dipal Arora
 
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Gwalior Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
 
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...jageshsingh5554
 
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...parulsinha
 
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort ServicePremium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Servicevidya singh
 
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...narwatsonia7
 
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...Genuine Call Girls
 
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋TANUJA PANDEY
 
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Dehradun Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Tirupati Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...astropune
 
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Varanasi Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
Top Rated Bangalore Call Girls Mg Road ⟟ 9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Mg Road ⟟   9332606886 ⟟ Call Me For Genuine S...Top Rated Bangalore Call Girls Mg Road ⟟   9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Mg Road ⟟ 9332606886 ⟟ Call Me For Genuine S...narwatsonia7
 
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...perfect solution
 
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...astropune
 

Kürzlich hochgeladen (20)

Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
 
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Gwalior Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Gwalior Just Call 8617370543 Top Class Call Girl Service Available
 
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Bhubaneswar Just Call 9907093804 Top Class Call Girl Service Avail...
 
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...
VIP Service Call Girls Sindhi Colony 📳 7877925207 For 18+ VIP Call Girl At Th...
 
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 9907093804 Top Class Call Girl Service Available
 
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...
Premium Call Girls In Jaipur {8445551418} ❤️VVIP SEEMA Call Girl in Jaipur Ra...
 
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort ServicePremium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
 
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
 
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
 
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
 
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Dehradun Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Dehradun Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Tirupati Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 8250077686 Top Class Call Girl Service Available
 
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...
♛VVIP Hyderabad Call Girls Chintalkunta🖕7001035870🖕Riya Kappor Top Call Girl ...
 
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Varanasi Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8250077686 Top Class Call Girl Service Available
 
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Aurangabad Just Call 8250077686 Top Class Call Girl Service Available
 
Top Rated Bangalore Call Girls Mg Road ⟟ 9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Mg Road ⟟   9332606886 ⟟ Call Me For Genuine S...Top Rated Bangalore Call Girls Mg Road ⟟   9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Mg Road ⟟ 9332606886 ⟟ Call Me For Genuine S...
 
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...
College Call Girls in Haridwar 9667172968 Short 4000 Night 10000 Best call gi...
 
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
 

Deep Learning aplicado al diagnostico de Alzheimer | BioInformaticsGRX

  • 1. Deep Learning para diagnosticar Alzheimer usando imágenes de resonancia magnética FRANCISCO CARRILLO PÉREZ 8 DE MARZO 2018
  • 2. Index 1. Introduction 2. Goals 3. Methods 4. ADNI Database 5. Experiments 6. Results 7. Conclusions DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 3. Introduction: Alzheimer •47 million people suffer from demencia in the world, and 9.9 million new cases are registered each year. •Alzheimer disease is the primary cause of dementia, gathering between 60% and 70% of all the cases. • Early diagnosis can cause major improvements in patients daily lives and life expectancy. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 4. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 5. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 6. Previous works • Manually detecting of brain mass deterioration: Neuronal loss and consequent brain atrophy causes widening of the sulci, thinning of the gyri and dilatation of the ventricles with a significant reduction in brain weight. Many studies have focused on quantifying focal atrophy in the temporal lobe (Scheltens, et al., 2003) and even exist visual scales to quantify the degree of atrophy, which are quick and easy to use. • Automatic methods: volumetric and shape features together with PCA and SVM were used to classify MRI images as having the disease or not (Lee, et al., 2009). • Deep Learning: using 3D Convolutional Neural Networks for classification. (Korelev 2017). DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 7. Goals • Analysis and processing of images. • Analysis and selection of a Convolutional Neural Network Architecture. • Neural Network optimization and methods for model selection. • Analysis of results. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 8. Methods Machine Learning: is a field of statistics and computer science that gives computer systems the ability to "learn" (i.e. progressively improve performance on a specific task) with data, without being explicitly programmed. Supervised Learning: The computer is presented with example inputs and their desired outputs. Deep Learning: subfield inside machine learning in which algorithms, mainly neural networks, have a considerable amount of hidden layers and highly computing cost. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 9. Methods Artificial Neural Networks (ANN): Artificial neural networks are computing systems trying to imitate the behaviour of biological neural networks in our brain when they are learning about an specific phenomenon. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 10. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA Convolutional Neural Networks (CNN): type of deep neural networks, which means they have a considerable number of hidden layers, using as a main operator the convolution operator. They has successfully been applied to analyzing visual imagery. Methods
  • 11. Methods Convolution Operator: In its most general form, convolution is an operation on two functions of a real- valued argument. Convolution leverages three important ideas that can help improve a machine learning system: sparse interactions, parameter sharing and equivariant representations. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 12. Methods Pooling Operator: A pooling function replaces the output of the net at a certain location with a summary statistic of the nearby outputs. There are several operators but one broadly used is the max pooling operator. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 13. Methods Activation functions: the activation function of a node defines the output of that node given an input or set of inputs. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA SoftmaxReLU
  • 14. Methods Model evaluation methods •K-Fold Cross Validation: • Leave-One-Out Cross Validation: Particular case of k-Fold Cross Validation in which K is equal to the number of samples in the dataset. In this work, not including different images of the same patient both in training and test sets has been guaranteed. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 15. ADNI Database Alzheimer’s Disease Neuroimaging Initiative (ADNI): widely-used database for Alzheimer disease studying. This database presents clinical data of patients such as MRI and PET images, genetic reports, cognitive tests and blood biomarkers. There are four types of patientes: Healthy,Alzheimer and two middle-states (LMCI and EMCI). DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 16. ADNI Database DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA Example of image used for learning An ADNI subset of images has been used. The following preprocessing steps have been applied: • Spatial Normalization: the same pixel correspond to the same physical position in both images. • Masked: delete cranial surface and bones. • N3 correction: image intensity correction.
  • 17. Experiments Devices used for experiments • MacBook Air 2016: CPU, 1,6 GHz Intel Core i5. RAM,8 GB 1600 MHz DDR3. Used for MRI images preprocessing. •Server: CPUs, 2 Intel(R) Xeon(R) CPU E5645 @ 2.40GHz. GPU, 2 Tesla C2050 / C2075. Used for network training and testing Framework and library for Deep Learning algorithms and NIFTI images processing • Keras (Keras): Framework for Deep Learning algorithms. • Nibabel (Nibabel): Python library for NIFTI images processing. Hyperparameters for the network Loss function: Categorical cross-entropy, N of iterations: 70, Batch size: 10, Learning-rate: 27*10^-6 DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 18. Experiments Analysis and images processing Whe have used brain slices from 10 to 100 jumping 5 to 5, therefore having 19 different slices. With Nibabel and Matplotlib libraries we were able to obtain each slice as a 2D image and save it in PNG format. ◦ Images from slice 55 Images from slice 10 up to 100 DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 19. Experimentos CNN architecture Final architecture was based on VGG architecture used in (Korolev,2017). DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA Input 3x110x110 Conv2D, 8, (3x3) ReLU Conv2D, 8, (3x3)ReLU Pool2D, (2x2)LU Conv2D, 16, (3x3)ReLU Conv2D, 16, (3x3)ReLU Pool2D, (2x2) Conv2D, 32, (3x3)ReLU Conv2D, 32, (3x3)ReLU Pool2D, (2x2) Conv2D, 64, (3x3)ReLU Conv2D, 64, (3x3)ReLU Pool2D, (2x2) FullyConnected, 128 ReLU BatchNorm, Dropout p=0.7 FullyConnected, 64 ReLU FullyConnected, 2 Softmax
  • 20. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 21. Experiments performed •First experiments: 5-fold Cross Validation with slice 55 in small database(only one image per pacient) and complete database (all pacients images). •Selection of best 2D slices: 5-fold Cross Validation to validate which slice is the best for classification. •Validation of previous results using LOO: Leave-one-out Cross Validation per patient using best slices. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 22. Results: 5-fold Cross Validation with slice 55 in the reduced and complete dataset Previous experiments Results 5-fold Cross Validation using the reduced dataset (just one image per patient) with slice 55 43’5% 5-fold Cross Validation using the complete dataset (all the patient images) with slice 55 65’9% 5-fold Cross Validation using the complete dataset with slice 55 without preventing repetition 92% DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 23. Results: 5-fold Cross Validation to test which is the best slice DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA Slice Result 10 56'3% 15 56’6% 20 52’3% 25 50’7% 30 50’7% 35 55’2% 40 63’3% 45 54’4% 50 64’1% 55 65’9% Slice Result 60 57’7% 65 53’3% 70 54'1% 75 56’7% 80 36’9% 85 38’8% 90 45’8% 95 59’4% 100 59’4%
  • 24. Results: Leave-one-out Cross Validation per patient with the best slices Slice Result 40 73’7% 50 69’7% 55 60% DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 25. Results Result in (Korolev,2017) for AD vs Normal LOO CV Slice 40 79% +- 0.8 73’7 % DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 26. Conclusions • We have observed that proper results can be obtained using 2D images, which has not been performed before in literature. • 2D images requiere less computational power, therefore using this approach in an hospital could be easier. • Some slices work better tahn other, as observed in experiments. • More images means better results. • Nowadays there are a lot of information about Deep Learning and anyone can do amazing things. • If I’ve done it you also can, because I’m not even smart. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 27. Bibliography • (Korolev,2017): Residual and Plain Convolutional Neural Networks for 3D Brain {MRI} Classification, Sergey Korolev and Amir Safiullin and Mikhail Belyaev and Yulia Dodonova, IEEE International Symposium on Biomedical Imaging 2017. • (Simonyan,2014): Very Deep Convolutional Networks for Large-Scale Image Recognition, Karen Simonyan and Andrew Zisserman, CoRR 2014 • (ADNI): ADNI Webpage, http://adni.loni.usc.edu • (Keras): Keras Webpage, https://keras.io • (Nibabel): Nibabel Webpage, http://nipy.org/nibabel/ • (FreeSurfer): FreeSurfer Software Webpage, http://freesurfer.net DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA
  • 30. You can follow me on DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA @pacocp9 pacocp Don’t follow me down the street, you creepy audience
  • 31. DEEP LEARNING PARA DIAGNOSTICAR ALZHEIMER USANDO IMÁGENES DE RESONANCIA MAGNÉTICA Thanks for your attention

Hinweis der Redaktion

  1. Aquí redes neuronales
  2. Se hace una media de los pixeles adyacentes, lo que nos permite tener una representación y un transpaso de información de una capa a otra.
  3. (decir que se espera que sea más robusto en nuestro caso) (decir sobreajuste en lugar de filtración de información)
  4. Hablar de las distintas arquitecturas que hemos utilizado. Diciendo que al inicio se utikizó una base de datos distinta, y que los primeros experimentos no se han añadido para limitar la extensión del trabajo. Dos de ellas del trabajo citado y otra externa.
  5. Poner los datos centrados (en todos) QUITAR LOS DECIMALES EN TODOS. Hablar d eesta parte de forma más profana. Hablar de una forma en que los experimentos se entiendan