Back to AI architectures leaderboard
hobby Color polygraph · architecture detail Sequence model · smallest

LSTM

The smallest sequence model on the board. One LSTM layer, 48 hidden units, one shared trunk into three heads. The point is to anchor what 0.7 GBs of parameters can extract from the raw 21-step session sequence before the bigger sequence models are allowed to compete.

Scores

Gender AUC
0.781
5-fold StratifiedKFold
Age MAE
8.64
years
Mood MAE
11.18
0..60

How it works

A single LSTM layer reads the 38-dim per-step sequence (slightly smaller per-step encoding than the BiGRU and transformer: no per-step side info). The last hidden state becomes the session summary, gets pushed through a 48-unit MLP trunk, then into three linear heads. No attention pooling, no side-feature fusion, no fancy training schedule.

Loses to the BiGRU on every column but stays within 0.05 MAE on the regression heads, which is the small-model story this row is supposed to tell: extra capacity in the sequence family helps gender, barely helps regression.

Configuration

Project links

Back to AI architectures leaderboard