SlideShare a Scribd company logo
1 of 41
Big Data in Psychiatry:
An Introduction and Overview
Carlo Carandang, MD, MSc, FAPA
Learning Goals
• Understand Big Data in Psychiatry
• Understand Big Data Systems for Psychiatry
• Understand machine learning algorithms for
Psychiatry AI applications
I, Robot (2004)
• Det. Spooner : So, Dr. Calvin, what exactly do you
do around here?
• Dr. Calvin : My general fields are Advanced
Robotics and Psychiatry. Although, I specialize in
hardware-to-wetware interfaces in an effort to
advance U.S.R.'s robotic ahthropomorphization
program.
• Det. Spooner : So, what exactly do you do around
here?
• Dr. Calvin : I make the robots seem more human.
• Det. Spooner : Now wasn't that easier to say?
• Dr. Calvin : Not really. No.
This Photo by Unknown Author is licensed under CC BY
World’s 1st
Mental
Health
Chatbot
(2018)
This Photo by Unknown Author is licensed under CC BY
Definitions
• AI aims to mimic human cognitive functions
• AI is built from:
• Machine Learning for structured data
• Natural Language Processing (NLP) for unstructured data
• Big Data
• petabytes (1,024 terabytes): millions of patient records
• Hard Coding
• explicit coding instructions to carry out a task
• Machine Learning
• computer use of data, algorithms, and statistical models to
perform a task without being hard-coded
• relies on patterns and inference
• Linear algebra: basis for machine learning
• Scalar: magnitude x
• Vector: magnitude and direction (x,y)
• Matrix: array of elements in row and columns
This Photo by Unknown Author is licensed under CC BY-SA-NC
This Photo by Unknown Author is licensed under CC BY-SA
This Photo by Unknown Author is licensed under CC BY-SA-NC
The road map from clinical data generation to natural language processing data enrichment, to
machine learning data analysis, to clinical decision making. EMR, electronic medical record; EP,
electrophysiological.
Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243
© Article author(s) (or their employer(s) unless otherwise stated in the text of the article) 2017. All
rights reserved. No commercial use is permitted unless otherwise expressly granted.
Publications
of Machine
Learning in
Psychiatry
Reevaluating the Efficacy and Predictability of
Antidepressant Treatments: A Symptom Clustering
Approach. JAMA Psychiatry 2017
Multisite Prediction of 4-Week and 52-Week Treatment
Outcomes in Patients With First-Episode Psychosis: A
Machine Learning Approach. Lancet Psychiatry 2016
Predicting Response to Repetitive Transcranial Magnetic
Stimulation in Patients With Schizophrenia Using Structural
Magnetic Resonance Imaging: A Multisite Machine Learning
Analysis. Schizophrenia Bulletin 2018
Treatment Response Prediction and Individualized
Identification of First-Episode Drug-Naïve Schizophrenia
Using Brain Functional Connectivity. Molecular Psychiatry
2018
Use Big Data, Systems, and Algorithms to
Solve Psychiatry Problems
Big Data
Big Data Systems
Algorithms
Psychiatry AI Applications
This Photo by Unknown Author is licensed under CC BY-SA
Use Big Data, Systems, and Algorithms to
Solve Psychiatry Problems
Big Data
Big Data Systems
Algorithms
Psychiatry AI Applications
This Photo by Unknown Author is licensed under CC BY-SA
This Photo by Unknown Author is licensed under CC BY-SA
• $300 billion potential annual value to Healthcare
• $165 billion from clinical decision support
• $108 billion from personalized medicine and
clinical trial design
• $47 billion from fraud detection
• $9 billion from public health surveillance and
response
• $5 billion from digitization, aggregation, and
automation of patient records
• 30% of data produced worldwide is from
healthcare
This Photo by Unknown Author is licensed under CC BY
From Data to Wisdom
This Photo by Unknown Author is licensed under CC BY
Psychiatry generates lots of
different kinds of information
• Clinical history, patient
demographics, diagnosis,
procedures
(psychotherapy/ECT/TMS),
medication, lab results, and
clinical notes.
• On-body sensors and other
devices that patients wear
(activity, behavior), social media
(thoughts, mood, reactions of
social network to patient).
• Real-time data sources such as
blood pressure, temperature,
heart rate (sympathetic nervous
system and connection to
Amydala-driven fear response).
• Drug dispensing levels at acute
psychiatric inpatient units.
This Photo by Unknown Author is licensed under CC BY-SA
Use Big Data, Systems, and Algorithms to
Solve Psychiatry Problems
Big Data
Big Data Systems
Algorithms
Psychiatry AI Applications
This Photo by Unknown Author is licensed under CC BY-SA
Hadoop is the
platform that
administers
MapReduce to
process and
analyze big
data
Patient 1
Patient 2
Map
Map
MDD, 1
GAD, 1
PTSD, 1
MDD, 1
DATA
Hadoop is the
platform that
administers
MapReduce to
process and
analyze big
data
MDD, 1
GAD, 1
PTSD, 1
MDD, 1
MDD: 1, 1
GAD: 1
PTSD: 1
Reduce
MDD: 2
GAD: 1
PTSD: 1
MapReduce in Hadoop
Pros/Cons of
MapReduce
in Hadoop
• Pro: Hadoop can work with big data using MapReduce
computations
• Con: Hadoop not good for iterative computations, such as
required for machine learning
• Pro: Hadoop works well for billions of records that you want a
histogram, odds ratio, or prevalence
• Pro and Con: Hadoop uses distributed hard discs to store massive
data, but also makes it slow for iterative computations
This Photo by Unknown Author is licensed under CC BY-SA
Spark is the platform
for machine learning
of Big Data
• Spark uses RAM, so it’s
faster than Hadoop
MapReduce data stored on
magnetic disks
• Spark is fast enough to
perform iterative
computations needed by
machine learning
• Spark uses distributed RAM
to handle massive
computations of Big Data
This Photo by Unknown Author is licensed under CC BY-SA
Use Big Data, Systems, and Algorithms to
Solve Psychiatry Problems
Big Data
Big Data Systems
Algorithms
Psychiatry AI Applications
This Photo by Unknown Author is licensed under CC BY-SA
Supervised
versus
Unsupervised
Learning
Graphical illustration of unsupervised learning, supervised learning and semisupervised
learning.
Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243
© Article author(s) (or their employer(s) unless otherwise stated in the text of the article) 2017. All
rights reserved. No commercial use is permitted unless otherwise expressly granted.
Classification
Classification algorithm takes that input x which is in
matrix.
And for example every row in this matrix represents a
patient and every column of this matrix represent a
feature.
And the classification algorithm will map this input
feature matrix x into a set of discrete outcome y.
For example, these y vectors indicate whether the patient
had Treatment-Resistant Depression or not.
So we want to learn this function f that mapped input x
to the target outcome variable y, this is classification.
y = f(x) + b
feature
x
patient
f
outcome
y
Regression
Regression algorithm takes that input x which is in matrix.
And for example every row in this matrix represents a
patient and every column of this matrix represent a
feature.
And the classification algorithm will map this input
feature matrix x into a set of continuous outcome Y.
For example, these Y vectors indicate the GAF score of
the patient.
So we want to learn this function f that mapped input x
to the target outcome variable Y, this is regression.
outcomefeature
yx
patient
y = f(x) + b
f
Clustering
Clustering is about taking an input matrix x, again,
every row here is a Patient (P), every column is a
feature, Disease (D).
Want to learn a function, f1, that partitioned this
matrix into multiple clusters, P1, P2, and P3, and f2 to
D1, D2, and D3.
In f1, each cluster consists of set of patients and those
patients are similar to each other, and those patients
within a cluster will be different patients in a different
cluster. f2 into different disease phenotypes.
Patient
(P)
Disease (D)
P2
P3
P1
x
Patient
stratification
D1
D2
D3
Computational
Phenotyping
Measuring Performance: Classification
This Photo by Unknown Author is licensed under CC BY
Measuring Performance: Regression
• 1 indicates regression line perfectly fits data
• 0 indicates regression line does not fit data at all
R squared (coefficient of determination)
• Error between prediction and actual value
• Small for low error, large for high error
Mean Absolute Error (MAE), Mean Squared Error (MSE)
Measuring
Performance:
Clustering
• Rand Index (RI)
• 0 means bad clustering assignment
• 1 means perfect clustering assignment
Use Big Data, Systems, and Algorithms to
Solve Psychiatry Problems
Big Data
Big Data Systems
Algorithms
Psychiatry AI Applications
This Photo by Unknown Author is licensed under CC BY-SA
Predictive Modeling
Predictive modeling is about using historical data to build algorithms to
predict future events. For example, we can predict which treatment is
likely to work for a patient with depression.
Example: Let’s look at patients with depression who responded to
treatment.
Group A: responded in first two years of treatment.
Group B: responded between two to five years of treatment.
Group C: continued to suffer even after five years of treatment.
Predictive modeling would help improve matching patients to the right
treatment quickly, so that the late responders in group B will become
early responders in group A.
Also, this will help identify non-responders in group C quickly, so that a
new treatment can be developed for them.
Group
A
Group
B
Group
C
35% 20% 45%
Early
Responders
Predictive
Modeling:
Match to right
Rx quickly
New
Rx
Predictive
Modeling:
Match to new
Rx quickly
Computational
Phenotyping
The input to Computational Phenotyping is
the raw patient data.
It consist of many different sources, such as
demographic information, diagnosis,
medication, procedure, lab tests, and
clinical notes.
And phenotyping is the process of turning
the raw patient data into medical concepts
or phenotypes.
Phenotyping
Phenotypes
Demographic
Diagnosis
Medication
Procedure
Psychotherapy
Clinical Notes
Lab tests
Psychological Testing
Raw
Data
Patient Similarity
When treating patients, doctors often compare the current patient to past patients
they have seen, also known as case-based reasoning.
Patient similarity is about simulating the doctor's case-based reasoning using
computer algorithms.
Instead of depending on one doctor's memory, wouldn't it be nice if we can leverage
all the patient data in the entire database?
So when the patient comes in, the doctor does an examination of the patient.
Then, based on that information, we can do a similarity search through the database.
Find those potentially similar patients, then the doctor can provide some supervision
on that result to find those truly similar patients through this specific clinical context.
Then, we can group those patients based on what treatment they are taking and look
at what outcome they are getting.
Then, recommend the treatment with the best outcome to the current patient.
Patient Doctor
Patient Database
How to Use Patient Similarity in Clinical Practice
Guideline
available?
Similar
patients?
Ready for
RCT?
Use Patient
Similarity
Use clinical
judgment
Develop
hypotheses
Perform RCT
Use guideline
Yes
No
No
Yes
Yes
No
‘Perils’ of Machine Learning
in Psychiatry
• “There have been so many fads, and we’ve discovered the
ultimate answer in psychiatry a thousand times,” Rajiv
Tandon said in an interview. “Machine learning could be
just another one.”
• The biggest challenges are sensitivity and specificity of an
algorithm’s predictive results. Ultimately, the results of
any algorithm must be replicable across different
datasets. “This is a particularly important challenge as a
medical test must apply to all potential patients or, if not,
it must be very clear for whom the medical test is
informative,” John Krystal said.
• (Psychiatric News, Oct 2, 2018)
Machine Learning Can Enhance Psychiatric
Practice
Inform
Machine learning
can inform
hypothesis testing
for future clinical
trials
Complement
Machine learning
and RCTs actually
complement one
another
Augment
Machine learning
not meant to
replace RCTs and
clinical guidelines
Helps
Machine learning
helps for patients
not covered by the
RCT groups and
clinical guidelines
Neural Networks and Deep Learning
Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243
• N. is a 19 year old single caucasian female, who is attending university and works part-time as a cashier for a pizza restaurant. She has a history of
recurrent depressive episodes, which starts in the late fall/early winter months, and remits during the spring. She uses light therapy every morning
for 30 minutes, as without it, she would be unable to function. Although her family doctor has recommended that she consider antidepressant
medication treatment, N. has adamantly refused, stating that it is unnatural, as she tries to ingest healthy and natural foods. When she becomes
depressed, she has symptoms of low moods, anhedonia, excessive fatigue, excessive sleep, increased appetite, carbohydrate cravings, and weight
gain.
• Her family history is significant for her mother suffering from bipolar disorder, and who dies in a car accident when N. was only 12 years old. It is
highly suspected that the car accident was a suicide. N. has refused to see a therapist, stating she does not need psychological help, and that she
can deal with her mother’s death on her own.
• After the death of her mother, she and her brother were sent to live with their estranged father and step-mother, and their infant daughter, N.’s
half-sister. She is the oldest of 3 siblings. Suffice it to say, N. did not get along well with her father and step-mother, and was jealous of all the
attention her infant sister got from the family. When N. became depressed in the winter months, she locked herself in her room, and would sleep
constantly, not contributing to the chores the family needed. When she was not sleeping, she would leave and spend days with her friends, without
any check-ins with her parents.
• Eventually,she ran away from home after her graduation from high school, and was not found until her father shamed her on Facebook that his
daughter was missing and is now a runaway. Humiliated, N. contacted her father and assured him she was safe.
• She eventually enrolled in university, and only has cursory contact with her father and siblings. Her first year in university was difficult, and she
almost failed her classes due to sleeping too much when her depression would worsen like clockwork in the fall and winter.
• When spring would come around, she would have increased energy and could work for 12 hours a day and go out with her friends at night with
only minimal sleep. She spends her summer doing lots of outdoor activities, as she likes to soak in the sun, and dreads each day after June 21st,
when the sun exposure would decrease little by little with each passing day.
• Diagnosis: Major depressive disorder, recurrent, in partial remission, with seasonal pattern. Rule-out bipolar disorder, given the history of
hypomanic symptoms, and family history of bipolar disorder. The patient had only a partial response to the current dose of light therapy.
• Treatment: 1) Will increase light therapy duration to 60 minutes every morning, from a 10,000 lux light box. Will need to monitor for any signs of
mania, as light therapy may switch someone with an underlying bipolar disorder from depression to mania. 2) If no response in 1 to 2 weeks, then
consider augmenting light therapy with cognitive behavioral therapy (CBT). 3) Recommend other helpful strategies for depression, including
exercise, meditation, yoga, and outdoor time to increase sunlight exposure. 4) Treatment with antidepressant medications is a relative
contraindication, as bipolar disorder has not been ruled out. 5) Return to clinic in 2 weeks for follow-up.
Extractive summarization process utilizing supervised (multiclass) classification based on the
ontology
Extractive summarization process utilizing supervised (multiclass) classification based on the
ontology
Carlo
Carandang-
Data Scientist
and Psychiatrist
Email:
carlo@karvit.ca

More Related Content

What's hot

Digital Pharma: Evolution and Revolution in Marketing & Sales
Digital Pharma: Evolution and Revolution in Marketing & SalesDigital Pharma: Evolution and Revolution in Marketing & Sales
Digital Pharma: Evolution and Revolution in Marketing & SalesLen Starnes
 
AI in Mental Health and Wellbeing - Current Applications and Trends
AI in Mental Health and Wellbeing - Current Applications and TrendsAI in Mental Health and Wellbeing - Current Applications and Trends
AI in Mental Health and Wellbeing - Current Applications and TrendsDaniel Faggella
 
Patients are about to see a new doctor: artificial intelligence by Entefy
Patients are about to see a new doctor: artificial intelligence by EntefyPatients are about to see a new doctor: artificial intelligence by Entefy
Patients are about to see a new doctor: artificial intelligence by EntefyEntefy
 
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...Adelyn Zhou
 
5 healthcare technology transformation trends to watch out for in 2017
5 healthcare technology transformation trends to watch out for in 20175 healthcare technology transformation trends to watch out for in 2017
5 healthcare technology transformation trends to watch out for in 2017Rahul Gupta
 
Data Analytics in Healthcare
Data Analytics in HealthcareData Analytics in Healthcare
Data Analytics in HealthcareMark Gall
 
The Incredible Ways Artificial Intelligence Is Now Used In Mental Health
The Incredible Ways Artificial Intelligence Is Now Used In Mental HealthThe Incredible Ways Artificial Intelligence Is Now Used In Mental Health
The Incredible Ways Artificial Intelligence Is Now Used In Mental HealthBernard Marr
 
Artificial Intelligence in Health Care
Artificial Intelligence in Health Care Artificial Intelligence in Health Care
Artificial Intelligence in Health Care 247 Labs Inc
 
FUTURE_OF_HEALTHCARE
FUTURE_OF_HEALTHCAREFUTURE_OF_HEALTHCARE
FUTURE_OF_HEALTHCARES_HIFT
 
Role of artificial intelligence in health care
Role of artificial intelligence in health careRole of artificial intelligence in health care
Role of artificial intelligence in health carePrachi Gupta
 
The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021Steve Omohundro
 
Artificial intelligence in healthcare
Artificial intelligence in healthcareArtificial intelligence in healthcare
Artificial intelligence in healthcareYamini Shah
 
Precision Medicine: Four Trends Make It Possible
Precision Medicine: Four Trends Make It PossiblePrecision Medicine: Four Trends Make It Possible
Precision Medicine: Four Trends Make It PossibleHealth Catalyst
 
Pharma Digital Marketing Trends to Watch in 2020
Pharma Digital Marketing Trends to Watch in 2020Pharma Digital Marketing Trends to Watch in 2020
Pharma Digital Marketing Trends to Watch in 2020Let's Learn Digital
 
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...SlideTeam
 
The Future of Data Science
The Future of Data ScienceThe Future of Data Science
The Future of Data ScienceDataWorks Summit
 
Launch your medical product
Launch your medical productLaunch your medical product
Launch your medical productmedteleinc
 

What's hot (20)

ARTIFICIAL INTELLIGENCE ROLE IN HEALTH CARE Dr.T.V.Rao MD
ARTIFICIAL INTELLIGENCE ROLE IN HEALTH CARE  Dr.T.V.Rao MDARTIFICIAL INTELLIGENCE ROLE IN HEALTH CARE  Dr.T.V.Rao MD
ARTIFICIAL INTELLIGENCE ROLE IN HEALTH CARE Dr.T.V.Rao MD
 
Digital Pharma: Evolution and Revolution in Marketing & Sales
Digital Pharma: Evolution and Revolution in Marketing & SalesDigital Pharma: Evolution and Revolution in Marketing & Sales
Digital Pharma: Evolution and Revolution in Marketing & Sales
 
AI in Mental Health and Wellbeing - Current Applications and Trends
AI in Mental Health and Wellbeing - Current Applications and TrendsAI in Mental Health and Wellbeing - Current Applications and Trends
AI in Mental Health and Wellbeing - Current Applications and Trends
 
Ai in healthcare (3)
Ai in healthcare (3)Ai in healthcare (3)
Ai in healthcare (3)
 
Patients are about to see a new doctor: artificial intelligence by Entefy
Patients are about to see a new doctor: artificial intelligence by EntefyPatients are about to see a new doctor: artificial intelligence by Entefy
Patients are about to see a new doctor: artificial intelligence by Entefy
 
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...
Applied Artificial Intelligence: How Machine Learning Transforms How We Live ...
 
AI in healthcare - Use Cases
AI in healthcare - Use Cases AI in healthcare - Use Cases
AI in healthcare - Use Cases
 
5 healthcare technology transformation trends to watch out for in 2017
5 healthcare technology transformation trends to watch out for in 20175 healthcare technology transformation trends to watch out for in 2017
5 healthcare technology transformation trends to watch out for in 2017
 
Data Analytics in Healthcare
Data Analytics in HealthcareData Analytics in Healthcare
Data Analytics in Healthcare
 
The Incredible Ways Artificial Intelligence Is Now Used In Mental Health
The Incredible Ways Artificial Intelligence Is Now Used In Mental HealthThe Incredible Ways Artificial Intelligence Is Now Used In Mental Health
The Incredible Ways Artificial Intelligence Is Now Used In Mental Health
 
Artificial Intelligence in Health Care
Artificial Intelligence in Health Care Artificial Intelligence in Health Care
Artificial Intelligence in Health Care
 
FUTURE_OF_HEALTHCARE
FUTURE_OF_HEALTHCAREFUTURE_OF_HEALTHCARE
FUTURE_OF_HEALTHCARE
 
Role of artificial intelligence in health care
Role of artificial intelligence in health careRole of artificial intelligence in health care
Role of artificial intelligence in health care
 
The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021
 
Artificial intelligence in healthcare
Artificial intelligence in healthcareArtificial intelligence in healthcare
Artificial intelligence in healthcare
 
Precision Medicine: Four Trends Make It Possible
Precision Medicine: Four Trends Make It PossiblePrecision Medicine: Four Trends Make It Possible
Precision Medicine: Four Trends Make It Possible
 
Pharma Digital Marketing Trends to Watch in 2020
Pharma Digital Marketing Trends to Watch in 2020Pharma Digital Marketing Trends to Watch in 2020
Pharma Digital Marketing Trends to Watch in 2020
 
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...
Use Of Artificial Intelligence In Healthcare Delivery PowerPoint Presentation...
 
The Future of Data Science
The Future of Data ScienceThe Future of Data Science
The Future of Data Science
 
Launch your medical product
Launch your medical productLaunch your medical product
Launch your medical product
 

Similar to AI and Big Data in Psychiatry: An Introduction and Overview

HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MININGAshish Salve
 
Screening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptxScreening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptxNitishChoudhary23
 
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...Jill Brown
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
How to prepare for a Data Science interview
How to prepare for a Data Science interview How to prepare for a Data Science interview
How to prepare for a Data Science interview Edology
 
Artificial intelligence-in-radiology
Artificial intelligence-in-radiologyArtificial intelligence-in-radiology
Artificial intelligence-in-radiologyVrishit Saraswat
 
Disease Prediction And Doctor Appointment system
Disease Prediction And Doctor Appointment  systemDisease Prediction And Doctor Appointment  system
Disease Prediction And Doctor Appointment systemKOYELMAJUMDAR1
 
How to prepare for a data science interview?
How to prepare for a data science interview?How to prepare for a data science interview?
How to prepare for a data science interview?Edology
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MININGAshish Salve
 
Disease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataDisease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataCSEIJJournal
 
Disease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataDisease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataCSEIJJournal
 
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATA
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATADISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATA
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATAcseij
 
Intelligent Heart Attack Prediction System Using Big Data
Intelligent Heart Attack Prediction System Using Big DataIntelligent Heart Attack Prediction System Using Big Data
Intelligent Heart Attack Prediction System Using Big Datapaperpublications3
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine LearningIRJET Journal
 
2007 Pharmasug, Promotion Response Analysis
2007 Pharmasug, Promotion Response Analysis2007 Pharmasug, Promotion Response Analysis
2007 Pharmasug, Promotion Response AnalysisAlejandro Jaramillo
 
Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learningmohdshoaibuddin1
 
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONS
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONSTHE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONS
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONSManishReddy706923
 
Case Study: Advanced analytics in healthcare using unstructured data
Case Study: Advanced analytics in healthcare using unstructured dataCase Study: Advanced analytics in healthcare using unstructured data
Case Study: Advanced analytics in healthcare using unstructured dataDamo Consulting Inc.
 

Similar to AI and Big Data in Psychiatry: An Introduction and Overview (20)

HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MINING
 
Screening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptxScreening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptx
 
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
How to prepare for a Data Science interview
How to prepare for a Data Science interview How to prepare for a Data Science interview
How to prepare for a Data Science interview
 
Artificial intelligence-in-radiology
Artificial intelligence-in-radiologyArtificial intelligence-in-radiology
Artificial intelligence-in-radiology
 
Disease Prediction And Doctor Appointment system
Disease Prediction And Doctor Appointment  systemDisease Prediction And Doctor Appointment  system
Disease Prediction And Doctor Appointment system
 
How to prepare for a data science interview?
How to prepare for a data science interview?How to prepare for a data science interview?
How to prepare for a data science interview?
 
Case Study - Roberta
Case Study - RobertaCase Study - Roberta
Case Study - Roberta
 
Short story_2.pptx
Short story_2.pptxShort story_2.pptx
Short story_2.pptx
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MINING
 
Disease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataDisease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big Data
 
Disease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big DataDisease Prediction Using Machine Learning Over Big Data
Disease Prediction Using Machine Learning Over Big Data
 
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATA
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATADISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATA
DISEASE PREDICTION USING MACHINE LEARNING OVER BIG DATA
 
Intelligent Heart Attack Prediction System Using Big Data
Intelligent Heart Attack Prediction System Using Big DataIntelligent Heart Attack Prediction System Using Big Data
Intelligent Heart Attack Prediction System Using Big Data
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
 
2007 Pharmasug, Promotion Response Analysis
2007 Pharmasug, Promotion Response Analysis2007 Pharmasug, Promotion Response Analysis
2007 Pharmasug, Promotion Response Analysis
 
Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learning
 
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONS
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONSTHE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONS
THE REACTION DATA ANALYSIS OFCOVID-19 VACCINATIONS
 
Case Study: Advanced analytics in healthcare using unstructured data
Case Study: Advanced analytics in healthcare using unstructured dataCase Study: Advanced analytics in healthcare using unstructured data
Case Study: Advanced analytics in healthcare using unstructured data
 

More from Carlo Carandang

Metyrosine and Psychosis
Metyrosine and PsychosisMetyrosine and Psychosis
Metyrosine and PsychosisCarlo Carandang
 
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...Carlo Carandang
 
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion Syndrome
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion SyndromeMetyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion Syndrome
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion SyndromeCarlo Carandang
 
Velocardiofacial Syndrome Associated with Adolescent Psychosis
Velocardiofacial Syndrome Associated with Adolescent PsychosisVelocardiofacial Syndrome Associated with Adolescent Psychosis
Velocardiofacial Syndrome Associated with Adolescent PsychosisCarlo Carandang
 
Clinical Assessment of Children and Adolescents with Depression
Clinical Assessment of Children and Adolescents with DepressionClinical Assessment of Children and Adolescents with Depression
Clinical Assessment of Children and Adolescents with DepressionCarlo Carandang
 
Data Safety Monitoring Boards in Pediatric Clinical Trials
Data Safety Monitoring Boards in Pediatric Clinical TrialsData Safety Monitoring Boards in Pediatric Clinical Trials
Data Safety Monitoring Boards in Pediatric Clinical TrialsCarlo Carandang
 
Teen Depression and Suicide
Teen Depression and SuicideTeen Depression and Suicide
Teen Depression and SuicideCarlo Carandang
 
Pediatric Bipolar Disorder
Pediatric Bipolar DisorderPediatric Bipolar Disorder
Pediatric Bipolar DisorderCarlo Carandang
 
SSRIs and Suicidality in Youth
SSRIs and Suicidality in YouthSSRIs and Suicidality in Youth
SSRIs and Suicidality in YouthCarlo Carandang
 
The Neurobiology of Adolescent Development
The Neurobiology of Adolescent DevelopmentThe Neurobiology of Adolescent Development
The Neurobiology of Adolescent DevelopmentCarlo Carandang
 
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...Carlo Carandang
 
Clinical assessment of child and adolescent psychiatric emergencies
Clinical assessment of child and adolescent psychiatric emergenciesClinical assessment of child and adolescent psychiatric emergencies
Clinical assessment of child and adolescent psychiatric emergenciesCarlo Carandang
 
Support Vector Machines- SVM
Support Vector Machines- SVMSupport Vector Machines- SVM
Support Vector Machines- SVMCarlo Carandang
 
Air Pollution in Nova Scotia: Analysis and Predictions
Air Pollution in Nova Scotia: Analysis and PredictionsAir Pollution in Nova Scotia: Analysis and Predictions
Air Pollution in Nova Scotia: Analysis and PredictionsCarlo Carandang
 
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...Carlo Carandang
 
Analysis of Air Pollution in Nova Scotia Presentation
Analysis of Air Pollution in Nova Scotia PresentationAnalysis of Air Pollution in Nova Scotia Presentation
Analysis of Air Pollution in Nova Scotia PresentationCarlo Carandang
 
Paxil Study 329 Retracted: A Critical Statistical Analysis
Paxil Study 329 Retracted: A Critical Statistical AnalysisPaxil Study 329 Retracted: A Critical Statistical Analysis
Paxil Study 329 Retracted: A Critical Statistical AnalysisCarlo Carandang
 

More from Carlo Carandang (20)

Psychosis in Youth
Psychosis in YouthPsychosis in Youth
Psychosis in Youth
 
Metyrosine and Psychosis
Metyrosine and PsychosisMetyrosine and Psychosis
Metyrosine and Psychosis
 
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...
Lamotrigine for Treatment Refractory Mood Disorders in Adolescents: A Case Se...
 
Anxiety Disorders
Anxiety DisordersAnxiety Disorders
Anxiety Disorders
 
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion Syndrome
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion SyndromeMetyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion Syndrome
Metyrosine in Adolescent Psychosis Associated with 22q11.2 Deletion Syndrome
 
Velocardiofacial Syndrome Associated with Adolescent Psychosis
Velocardiofacial Syndrome Associated with Adolescent PsychosisVelocardiofacial Syndrome Associated with Adolescent Psychosis
Velocardiofacial Syndrome Associated with Adolescent Psychosis
 
Clinical Assessment of Children and Adolescents with Depression
Clinical Assessment of Children and Adolescents with DepressionClinical Assessment of Children and Adolescents with Depression
Clinical Assessment of Children and Adolescents with Depression
 
Data Safety Monitoring Boards in Pediatric Clinical Trials
Data Safety Monitoring Boards in Pediatric Clinical TrialsData Safety Monitoring Boards in Pediatric Clinical Trials
Data Safety Monitoring Boards in Pediatric Clinical Trials
 
Teen Depression and Suicide
Teen Depression and SuicideTeen Depression and Suicide
Teen Depression and Suicide
 
Pediatric Bipolar Disorder
Pediatric Bipolar DisorderPediatric Bipolar Disorder
Pediatric Bipolar Disorder
 
SSRIs and Suicidality in Youth
SSRIs and Suicidality in YouthSSRIs and Suicidality in Youth
SSRIs and Suicidality in Youth
 
The Neurobiology of Adolescent Development
The Neurobiology of Adolescent DevelopmentThe Neurobiology of Adolescent Development
The Neurobiology of Adolescent Development
 
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...
Canadian Psychiatry: The Case for Universal Health Care and How Psychiatry Be...
 
Clinical assessment of child and adolescent psychiatric emergencies
Clinical assessment of child and adolescent psychiatric emergenciesClinical assessment of child and adolescent psychiatric emergencies
Clinical assessment of child and adolescent psychiatric emergencies
 
Computer Anxiety
Computer AnxietyComputer Anxiety
Computer Anxiety
 
Support Vector Machines- SVM
Support Vector Machines- SVMSupport Vector Machines- SVM
Support Vector Machines- SVM
 
Air Pollution in Nova Scotia: Analysis and Predictions
Air Pollution in Nova Scotia: Analysis and PredictionsAir Pollution in Nova Scotia: Analysis and Predictions
Air Pollution in Nova Scotia: Analysis and Predictions
 
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...
Workplace Disability from Stress, Anxiety, and Depression: Solutions and Prev...
 
Analysis of Air Pollution in Nova Scotia Presentation
Analysis of Air Pollution in Nova Scotia PresentationAnalysis of Air Pollution in Nova Scotia Presentation
Analysis of Air Pollution in Nova Scotia Presentation
 
Paxil Study 329 Retracted: A Critical Statistical Analysis
Paxil Study 329 Retracted: A Critical Statistical AnalysisPaxil Study 329 Retracted: A Critical Statistical Analysis
Paxil Study 329 Retracted: A Critical Statistical Analysis
 

Recently uploaded

Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxFurkanTasci3
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAbdelrhman abooda
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...ThinkInnovation
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 

Recently uploaded (20)

Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptx
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 

AI and Big Data in Psychiatry: An Introduction and Overview

  • 1. Big Data in Psychiatry: An Introduction and Overview Carlo Carandang, MD, MSc, FAPA
  • 2. Learning Goals • Understand Big Data in Psychiatry • Understand Big Data Systems for Psychiatry • Understand machine learning algorithms for Psychiatry AI applications
  • 3. I, Robot (2004) • Det. Spooner : So, Dr. Calvin, what exactly do you do around here? • Dr. Calvin : My general fields are Advanced Robotics and Psychiatry. Although, I specialize in hardware-to-wetware interfaces in an effort to advance U.S.R.'s robotic ahthropomorphization program. • Det. Spooner : So, what exactly do you do around here? • Dr. Calvin : I make the robots seem more human. • Det. Spooner : Now wasn't that easier to say? • Dr. Calvin : Not really. No. This Photo by Unknown Author is licensed under CC BY
  • 4. World’s 1st Mental Health Chatbot (2018) This Photo by Unknown Author is licensed under CC BY
  • 5. Definitions • AI aims to mimic human cognitive functions • AI is built from: • Machine Learning for structured data • Natural Language Processing (NLP) for unstructured data • Big Data • petabytes (1,024 terabytes): millions of patient records • Hard Coding • explicit coding instructions to carry out a task • Machine Learning • computer use of data, algorithms, and statistical models to perform a task without being hard-coded • relies on patterns and inference • Linear algebra: basis for machine learning • Scalar: magnitude x • Vector: magnitude and direction (x,y) • Matrix: array of elements in row and columns This Photo by Unknown Author is licensed under CC BY-SA-NC This Photo by Unknown Author is licensed under CC BY-SA This Photo by Unknown Author is licensed under CC BY-SA-NC
  • 6. The road map from clinical data generation to natural language processing data enrichment, to machine learning data analysis, to clinical decision making. EMR, electronic medical record; EP, electrophysiological. Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243 © Article author(s) (or their employer(s) unless otherwise stated in the text of the article) 2017. All rights reserved. No commercial use is permitted unless otherwise expressly granted.
  • 7. Publications of Machine Learning in Psychiatry Reevaluating the Efficacy and Predictability of Antidepressant Treatments: A Symptom Clustering Approach. JAMA Psychiatry 2017 Multisite Prediction of 4-Week and 52-Week Treatment Outcomes in Patients With First-Episode Psychosis: A Machine Learning Approach. Lancet Psychiatry 2016 Predicting Response to Repetitive Transcranial Magnetic Stimulation in Patients With Schizophrenia Using Structural Magnetic Resonance Imaging: A Multisite Machine Learning Analysis. Schizophrenia Bulletin 2018 Treatment Response Prediction and Individualized Identification of First-Episode Drug-Naïve Schizophrenia Using Brain Functional Connectivity. Molecular Psychiatry 2018
  • 8. Use Big Data, Systems, and Algorithms to Solve Psychiatry Problems Big Data Big Data Systems Algorithms Psychiatry AI Applications This Photo by Unknown Author is licensed under CC BY-SA
  • 9. Use Big Data, Systems, and Algorithms to Solve Psychiatry Problems Big Data Big Data Systems Algorithms Psychiatry AI Applications This Photo by Unknown Author is licensed under CC BY-SA
  • 10. This Photo by Unknown Author is licensed under CC BY-SA
  • 11. • $300 billion potential annual value to Healthcare • $165 billion from clinical decision support • $108 billion from personalized medicine and clinical trial design • $47 billion from fraud detection • $9 billion from public health surveillance and response • $5 billion from digitization, aggregation, and automation of patient records • 30% of data produced worldwide is from healthcare This Photo by Unknown Author is licensed under CC BY
  • 12. From Data to Wisdom This Photo by Unknown Author is licensed under CC BY
  • 13. Psychiatry generates lots of different kinds of information • Clinical history, patient demographics, diagnosis, procedures (psychotherapy/ECT/TMS), medication, lab results, and clinical notes. • On-body sensors and other devices that patients wear (activity, behavior), social media (thoughts, mood, reactions of social network to patient). • Real-time data sources such as blood pressure, temperature, heart rate (sympathetic nervous system and connection to Amydala-driven fear response). • Drug dispensing levels at acute psychiatric inpatient units. This Photo by Unknown Author is licensed under CC BY-SA
  • 14. Use Big Data, Systems, and Algorithms to Solve Psychiatry Problems Big Data Big Data Systems Algorithms Psychiatry AI Applications This Photo by Unknown Author is licensed under CC BY-SA
  • 15. Hadoop is the platform that administers MapReduce to process and analyze big data Patient 1 Patient 2 Map Map MDD, 1 GAD, 1 PTSD, 1 MDD, 1 DATA
  • 16. Hadoop is the platform that administers MapReduce to process and analyze big data MDD, 1 GAD, 1 PTSD, 1 MDD, 1 MDD: 1, 1 GAD: 1 PTSD: 1 Reduce MDD: 2 GAD: 1 PTSD: 1 MapReduce in Hadoop
  • 17. Pros/Cons of MapReduce in Hadoop • Pro: Hadoop can work with big data using MapReduce computations • Con: Hadoop not good for iterative computations, such as required for machine learning • Pro: Hadoop works well for billions of records that you want a histogram, odds ratio, or prevalence • Pro and Con: Hadoop uses distributed hard discs to store massive data, but also makes it slow for iterative computations This Photo by Unknown Author is licensed under CC BY-SA
  • 18. Spark is the platform for machine learning of Big Data • Spark uses RAM, so it’s faster than Hadoop MapReduce data stored on magnetic disks • Spark is fast enough to perform iterative computations needed by machine learning • Spark uses distributed RAM to handle massive computations of Big Data This Photo by Unknown Author is licensed under CC BY-SA
  • 19.
  • 20. Use Big Data, Systems, and Algorithms to Solve Psychiatry Problems Big Data Big Data Systems Algorithms Psychiatry AI Applications This Photo by Unknown Author is licensed under CC BY-SA
  • 22.
  • 23. Graphical illustration of unsupervised learning, supervised learning and semisupervised learning. Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243 © Article author(s) (or their employer(s) unless otherwise stated in the text of the article) 2017. All rights reserved. No commercial use is permitted unless otherwise expressly granted.
  • 24. Classification Classification algorithm takes that input x which is in matrix. And for example every row in this matrix represents a patient and every column of this matrix represent a feature. And the classification algorithm will map this input feature matrix x into a set of discrete outcome y. For example, these y vectors indicate whether the patient had Treatment-Resistant Depression or not. So we want to learn this function f that mapped input x to the target outcome variable y, this is classification. y = f(x) + b feature x patient f outcome y
  • 25. Regression Regression algorithm takes that input x which is in matrix. And for example every row in this matrix represents a patient and every column of this matrix represent a feature. And the classification algorithm will map this input feature matrix x into a set of continuous outcome Y. For example, these Y vectors indicate the GAF score of the patient. So we want to learn this function f that mapped input x to the target outcome variable Y, this is regression. outcomefeature yx patient y = f(x) + b f
  • 26. Clustering Clustering is about taking an input matrix x, again, every row here is a Patient (P), every column is a feature, Disease (D). Want to learn a function, f1, that partitioned this matrix into multiple clusters, P1, P2, and P3, and f2 to D1, D2, and D3. In f1, each cluster consists of set of patients and those patients are similar to each other, and those patients within a cluster will be different patients in a different cluster. f2 into different disease phenotypes. Patient (P) Disease (D) P2 P3 P1 x Patient stratification D1 D2 D3 Computational Phenotyping
  • 27. Measuring Performance: Classification This Photo by Unknown Author is licensed under CC BY
  • 28. Measuring Performance: Regression • 1 indicates regression line perfectly fits data • 0 indicates regression line does not fit data at all R squared (coefficient of determination) • Error between prediction and actual value • Small for low error, large for high error Mean Absolute Error (MAE), Mean Squared Error (MSE)
  • 29. Measuring Performance: Clustering • Rand Index (RI) • 0 means bad clustering assignment • 1 means perfect clustering assignment
  • 30. Use Big Data, Systems, and Algorithms to Solve Psychiatry Problems Big Data Big Data Systems Algorithms Psychiatry AI Applications This Photo by Unknown Author is licensed under CC BY-SA
  • 31. Predictive Modeling Predictive modeling is about using historical data to build algorithms to predict future events. For example, we can predict which treatment is likely to work for a patient with depression. Example: Let’s look at patients with depression who responded to treatment. Group A: responded in first two years of treatment. Group B: responded between two to five years of treatment. Group C: continued to suffer even after five years of treatment. Predictive modeling would help improve matching patients to the right treatment quickly, so that the late responders in group B will become early responders in group A. Also, this will help identify non-responders in group C quickly, so that a new treatment can be developed for them. Group A Group B Group C 35% 20% 45% Early Responders Predictive Modeling: Match to right Rx quickly New Rx Predictive Modeling: Match to new Rx quickly
  • 32. Computational Phenotyping The input to Computational Phenotyping is the raw patient data. It consist of many different sources, such as demographic information, diagnosis, medication, procedure, lab tests, and clinical notes. And phenotyping is the process of turning the raw patient data into medical concepts or phenotypes. Phenotyping Phenotypes Demographic Diagnosis Medication Procedure Psychotherapy Clinical Notes Lab tests Psychological Testing Raw Data
  • 33. Patient Similarity When treating patients, doctors often compare the current patient to past patients they have seen, also known as case-based reasoning. Patient similarity is about simulating the doctor's case-based reasoning using computer algorithms. Instead of depending on one doctor's memory, wouldn't it be nice if we can leverage all the patient data in the entire database? So when the patient comes in, the doctor does an examination of the patient. Then, based on that information, we can do a similarity search through the database. Find those potentially similar patients, then the doctor can provide some supervision on that result to find those truly similar patients through this specific clinical context. Then, we can group those patients based on what treatment they are taking and look at what outcome they are getting. Then, recommend the treatment with the best outcome to the current patient. Patient Doctor Patient Database
  • 34. How to Use Patient Similarity in Clinical Practice Guideline available? Similar patients? Ready for RCT? Use Patient Similarity Use clinical judgment Develop hypotheses Perform RCT Use guideline Yes No No Yes Yes No
  • 35. ‘Perils’ of Machine Learning in Psychiatry • “There have been so many fads, and we’ve discovered the ultimate answer in psychiatry a thousand times,” Rajiv Tandon said in an interview. “Machine learning could be just another one.” • The biggest challenges are sensitivity and specificity of an algorithm’s predictive results. Ultimately, the results of any algorithm must be replicable across different datasets. “This is a particularly important challenge as a medical test must apply to all potential patients or, if not, it must be very clear for whom the medical test is informative,” John Krystal said. • (Psychiatric News, Oct 2, 2018)
  • 36. Machine Learning Can Enhance Psychiatric Practice Inform Machine learning can inform hypothesis testing for future clinical trials Complement Machine learning and RCTs actually complement one another Augment Machine learning not meant to replace RCTs and clinical guidelines Helps Machine learning helps for patients not covered by the RCT groups and clinical guidelines
  • 37. Neural Networks and Deep Learning Fei Jiang et al. Stroke Vasc Neurol 2017;2:230-243
  • 38. • N. is a 19 year old single caucasian female, who is attending university and works part-time as a cashier for a pizza restaurant. She has a history of recurrent depressive episodes, which starts in the late fall/early winter months, and remits during the spring. She uses light therapy every morning for 30 minutes, as without it, she would be unable to function. Although her family doctor has recommended that she consider antidepressant medication treatment, N. has adamantly refused, stating that it is unnatural, as she tries to ingest healthy and natural foods. When she becomes depressed, she has symptoms of low moods, anhedonia, excessive fatigue, excessive sleep, increased appetite, carbohydrate cravings, and weight gain. • Her family history is significant for her mother suffering from bipolar disorder, and who dies in a car accident when N. was only 12 years old. It is highly suspected that the car accident was a suicide. N. has refused to see a therapist, stating she does not need psychological help, and that she can deal with her mother’s death on her own. • After the death of her mother, she and her brother were sent to live with their estranged father and step-mother, and their infant daughter, N.’s half-sister. She is the oldest of 3 siblings. Suffice it to say, N. did not get along well with her father and step-mother, and was jealous of all the attention her infant sister got from the family. When N. became depressed in the winter months, she locked herself in her room, and would sleep constantly, not contributing to the chores the family needed. When she was not sleeping, she would leave and spend days with her friends, without any check-ins with her parents. • Eventually,she ran away from home after her graduation from high school, and was not found until her father shamed her on Facebook that his daughter was missing and is now a runaway. Humiliated, N. contacted her father and assured him she was safe. • She eventually enrolled in university, and only has cursory contact with her father and siblings. Her first year in university was difficult, and she almost failed her classes due to sleeping too much when her depression would worsen like clockwork in the fall and winter. • When spring would come around, she would have increased energy and could work for 12 hours a day and go out with her friends at night with only minimal sleep. She spends her summer doing lots of outdoor activities, as she likes to soak in the sun, and dreads each day after June 21st, when the sun exposure would decrease little by little with each passing day. • Diagnosis: Major depressive disorder, recurrent, in partial remission, with seasonal pattern. Rule-out bipolar disorder, given the history of hypomanic symptoms, and family history of bipolar disorder. The patient had only a partial response to the current dose of light therapy. • Treatment: 1) Will increase light therapy duration to 60 minutes every morning, from a 10,000 lux light box. Will need to monitor for any signs of mania, as light therapy may switch someone with an underlying bipolar disorder from depression to mania. 2) If no response in 1 to 2 weeks, then consider augmenting light therapy with cognitive behavioral therapy (CBT). 3) Recommend other helpful strategies for depression, including exercise, meditation, yoga, and outdoor time to increase sunlight exposure. 4) Treatment with antidepressant medications is a relative contraindication, as bipolar disorder has not been ruled out. 5) Return to clinic in 2 weeks for follow-up.
  • 39. Extractive summarization process utilizing supervised (multiclass) classification based on the ontology
  • 40. Extractive summarization process utilizing supervised (multiclass) classification based on the ontology

Editor's Notes

  1. 1000 GB = 1 TB
  2. The road map from clinical data generation to natural language processing data enrichment, to machine learning data analysis, to clinical decision making. EMR, electronic medical record; EP, electrophysiological.
  3. Graphical illustration of unsupervised learning, supervised learning and semisupervised learning.
  4. Focus on Accuracy, Recall, and Precision. Also Sensitivity and Specificity- use example of algorithm that predicts suicide: want high Sensitivity, while optimizing that may reduce specificity, but that’s ok, as better to have a False Positive (unnecessary hospitalization) than a False Negative (discharge the patient from the ER and the patient suicides).
  5. With large volumes of health care data comes the research area of computational phenotyping, making use of techniques such as machine learning to describe illnesses and other clinical concepts from the data itself. The "traditional" approach of using supervised learning relies on a domain expert, and has two main limitations: requiring skilled humans to supply correct labels limits its scalability and accuracy, and relying on existing clinical descriptions limits the sorts of patterns that can be found. For instance, it may fail to acknowledge that a disease treated as a single condition may really have several subtypes with different phenotypes, as seems to be the case with asthma and heart disease. Some recent papers cite successes instead using unsupervised learning. This shows great potential for finding patterns in Electronic Health Records that would otherwise be hidden and that can lead to greater understanding of conditions and treatments. 
  6. Neural network One can think about neural network as an extension of linear regression to capture complex non-linear relationships between input variables and an outcome. In neural network, the associations between the outcome and the input variables are depicted through multiple hidden layer combinations of prespecified functionals. Deep learning: a new era of ML Deep learning is a modern extension of the classical neural network technique. One can view deep learning as a neural network with many layers Rapid development of modern computing enables deep learning to build up neural networks with a large number of layers, which is infeasible for classical neural networks. As such, deep learning can explore more complex non-linear patterns in the data. Another reason for the recent popularity of deep learning is due to the increase of the volume and complexity of data. Different from the classical neural network, deep learning uses more hidden layers so that the algorithms can handle complex data with various structures.27 In the medical applications, the commonly used deep learning algorithms include convolution neural network (CNN), recurrent neural network, deep belief network and deep neural network.
  7. An NLP pipeline comprises two main components: (1) text processing and (2) classification. Through text processing, the NLP identifies a series of disease-relevant keywords in the clinical notes based on the historical databases.42 Then a subset of the keywords are selected through examining their effects on the classification of the normal and abnormal cases. The validated keywords then enter and enrich the structured data to support clinical decision making. The NLP pipelines have been developed to assist clinical decision making on alerting treatment arrangements, monitoring adverse effects and so on. Furthermore, the NLP pipelines can help with disease diagnosis.