AI decision support in NICU Flashcards

1
Q

Out of 140 million births every year, how many will require special newborn care?

A

30 million

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Out of 140 million births every year, how man will require intensive care?

A

8-10 million

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Reasons why a baby might end up in NICU

A

Difficult delivery
Birth asphyxia
Infection
Prematurity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Common cause of injury at birth?

A

Hypoxic Ischemic Encephalopathy (HIE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does HIE cause damage to the newborns brain?

A

Via O2 deprivation, compounded by a decrease in blood flow to the brain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

25% of newborns who suffer from HIE will develop severe neurodevelopmental disorders like…

A

Epilepsy
Cerebral Palsy
Developmental delays
Cognitive impairment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What % of newborns die from HIE?

A

20%, it is the leading cause of death for newborn infants

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Chance of brain injury for preterm infants <32 weeks

A

1:3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Chance of brain injury for preterm infants <28 weeks

A

1:2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How common are preterm births

A

2.3 million each year born <32 weeks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Options for neuromonitoring

A

EEG - measures cortical function
MRI - structural information
NIRS - Cerebral oxygenation
Cranial ultrasound - to detect IVH

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Why EEG is suitable for NICU?

A

Detects infant seizures (from stroke, asphyxia, etc)
→ Can cause further brain damage and require prompt treatment but often have no clinical signs
Can be used to inform diagnosis- HIE, IVH, stroke, etc.
Can predict future conditions
→ Can predict long-term neurodevelopmental outcome
→ Useful for early intervention programmes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Limitations of EEG

A

Complex waveforms which change over time, and change between babies
Requires specialist expertise E.g. clinical neurophysiologist
Limited expertise available
Not 24/7
Monitoring not in real time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Solution to EEG limitations

A

using AI to interpret it and raise the alarm if risk increases past a certain threshold
E.g. seizure detection
Can be implemented cotside in real time
Integrated into existing technology (i.e. EEG machine)
Scalable
24/7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Quantitative EEG (qEEG)

A

Summarises the information produced by EEG as numbers
→ To do this we need to know what information it is important to summarise
This information is categorised into clear “features” in order to form the algorithim

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

qEEG features

A
  • Time-domain features:
    → Power (amplitude)
    → Statistical measures: e.g. standard deviation, skewness,
    kurtosis
    → Features from range-EEG (measures peak-peak amplitude)
- Frequency-domain features: 
→ Frequencies are filtered into four relevant frequency bands
     - Spectral power
     - Relative spectral power
     - Spectral shape
  • Connectivity features:
    → Correlation, Coherence
    → Global or inter-hemispheric connectivity
17
Q

Pros of qEEG

A
  • Does not require expert interpretation of the EEG
  • Objective measures
  • Easily scaled to analyse multiple EEGs
  • Implemented on computer
  • May uncover unknown/unseen characteristics of the EEG- features difficult to detect with the naked eye
18
Q

Cons of qEEG

A
  • Sensitive to artefacts- infant motion, dirt, interference
  • May be difficult to define a feature set to represent EEG
  • May be difficult to interpret the results – difficult to relate some
    features to underlying physiology
  • Lack of standards in how these measures are defined
19
Q

What is Artificial Intelligence?

A

Computer algorithms that ‘learn’ from patterns in data and then can draw inferences from new data, just like humans
→ Considering ‘supervised learning’

20
Q

Purpose of algorithms?

A

Classification (e.g. dog, cat, or horse)
→ Sorts categorical variables
Regression (e.g. house prices)
→ Predicts continuous variable

21
Q

Building a machine learning model

A
  1. Prepare data
    - EEG: select clean (artefact-free) segments of the data
    (‘epochs’)
  2. Feature set
    - Define which features to use
  3. Select ML algorithm to use
    - Simple or more complex (e.g. linear versus non-linear)
  4. Train
    - Defines the ML model
    - Include labels (e.g. brain injury, yes/no)
  5. Test
    - With data different to training data
    - No labels- we’re trying to get the machine to add these itself
    - Assess performance with whatever metrics. Is it good
    enough?
  6. Repeat/refine
    - Trial and error
22
Q

Data for training and testing a ML algorithm

A

Three different approaches to dividing up initial dataset into training and testing

  1. 80:20 split
    80% for training; 20% for testing
  2. K-fold cross-validation
    Divide data into K groups
    K=5: 4/5 groups used for training; ⅕ groups used for testing
    Repeat 5 times, once for each group
    K=10: 9/10 for training; 1/10 for testing; repeat 10 times
  3. Leave-one-out cross-validation
    K-fold cross-validation to its logical extreme: using each data point in the dataset as a group
    E.g. EEG from 50 babies; train with 49 EEG; test with 1; repeat 50 times
23
Q

Overfitting in AI

A

Method performs well on train data but not on test data
• Poor generalisation
Common mistake!

24
Q

Solutions to overfitting

A

Need proper training AND testing

Change ML model (e.g. to a simpler model ie linear)

25
Q

Underfitting in AI

A

Performance will be roughly the same for train and test data

Poor generalisation also as underperforms

26
Q

Solutions to underfitting

A

Change ML model (ie to a more complex model)

More data?

27
Q

Examples of AI models

A
Linear & Logistic regression
Decision Trees
Neural Networks
Gradient boosting machines
Support vector machine