Recurrent Neural Networks and LSTMs

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

Comprehensive practice flashcards covering the fundamental concepts of RNNs, LSTMs, GRUs, and their specific applications in medical informatics as presented in the lecture.

Last updated 8:11 PM on 7/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Recurrent Neural Networks (RNNs)

A type of neural network used when temporal information is more important (or equally important) than spatial information, commonly applied to speech and video.

2
New cards

Vanishing Gradient Problem

A challenge in RNNs where the derivative of the sigmoid function becomes zero at both tails, causing learning to be slow and the network to forget old events.

3
New cards

LSTM (Long-Short Term Memory)

A specific type of RNN designed with gates to decide what information to forget and what to remember, addressing the problem of memorizing distant information.

4
New cards

Sigmoid Gate

A layer in an LSTM that outputs values in the range of [0,1][0, 1] to act as a filter, deciding how much information should pass through.

5
New cards

tanh Layer

A layer in an LSTM that outputs values between [1,1][-1, 1], used to produce candidate values or produce final output values from the state.

6
New cards

Forget Gate

A component of the LSTM that determines which information should be discarded from the cell state.

7
New cards

Input Gate

The gate in an LSTM that, along with a tanh layer, decides which values in the state should be updated.

8
New cards

Output Gate

The gate in an LSTM that decides what the next hidden state should be based on the current cell state.

9
New cards

Cell State

The 'conveyor belt' of the LSTM that carries information across the sequence, modulated by gates to maintain long-range interactions.

10
New cards

GRU (Gated Recurrent Unit)

A variant of an RNN that lacks a cell state, utilizing only a hidden state and gates to modulate information flow.

11
New cards

Reset Gate

A component in a GRU that modulates the amount of past information to keep.

12
New cards

Update Gate

A component in a GRU that defines a positive and negative mask to forget and input information simultaneously.

13
New cards

Backpropagation Through Time (BPTT)

The training process for recurrent networks where errors are propagated backwards through each time step of the sequence.

14
New cards

S2VT

A sequence-to-sequence model used for video-to-text conversion, such as generating the description 'A man is doing stunts on his bike' from video frames.

15
New cards

ChronoNet

A deep recurrent neural network for identifying abnormal EEG activity, formed by stacking 1D convolution layers and deep GRU layers.

16
New cards

Alzheimer’s Disease (AD) progression modeling

An application of LSTMs used to model disease progression using volumes from six MRI regions, including the hippocampus and entorhinal cortex.

17
New cards

LSTM-Mean

A network trained using standard backpropagation through time with missing values imputed based on the mean imputation method prior to training.

18
New cards

NEURO-DRAM

A framework for medical imaging where classification and glimpse networks are optimized via cross entropy, and location and context networks via total reward.

19
New cards

C-LSTM

Bidirectional Convolutional Long Short-Term Memory used in deep sequential segmentation to address memory restrictions and volume resizing issues in 3D CNNs.

20
New cards

Multi Head Attention

A mechanism that spreads cognitive load across multiple attention processes to prevent oversaturation of a single attention mechanism.