File size: 4,674 Bytes
7e8829a 3aac7cd 7e8829a 3aac7cd 7e8829a 3aac7cd 7e8829a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | ---
license: other
license_name: chalearn-fi-derived
license_link: https://chalearnlap.cvc.uab.cat/dataset/24/description/
pretty_name: PersonalityLinMulT — FI Extracted Features (fi.h5)
tags:
- personality
- big-five
- multimodal
- affective-computing
- feature-extraction
task_categories:
- audio-classification
- video-classification
size_categories:
- 10K<n<100K
---
# PersonalityLinMulT — First Impressions V2 extracted features (`fi.h5`)
<!--
This is the source of truth for the Hugging Face dataset card at
https://huggingface.co/datasets/fodorad/personalitylinmult-fi
Keep the two in sync (see `make push-hf-card`). The published card adds a YAML
frontmatter block (license/tags/size) that HF renders; this docs copy omits it.
-->
Pre-extracted multimodal features for the **First Impressions V2 (FI)** dataset,
packaged as a single HDF5 file for training the models in
[**PersonalityLinMulT**](https://github.com/fodorad/PersonalityLinMulT):
Big Five personality perception and interview-variable (hireability) estimation.
> ⚠️ **These are derived features (embeddings), not the source videos.**
> **No raw ChaLearn First Impressions video, audio, or frames are re-shared
> here.** This file contains only numerical feature vectors extracted from the
> official dataset. To obtain the raw videos, register for and download the
> dataset from the [official ChaLearn LAP
> release](https://chalearnlap.cvc.uab.cat/dataset/24/description/) under its
> own license terms.
## What this is for
Training reads this file **and nothing else** — it is the reproducibility
boundary for the project. Pull it and train immediately, with no need to obtain
the raw videos or re-run the multi-hour GPU feature extraction:
```bash
# In a clone of https://github.com/fodorad/PersonalityLinMulT
make pull-fi-h5 # downloads fi.h5 into data/processed/FI/h5/
make train-fi-bigfive # train Big Five regression
```
Or download directly:
```python
from huggingface_hub import hf_hub_download
path = hf_hub_download(
"fodorad/personalitylinmult-fi", "fi.h5", repo_type="dataset"
)
```
## Contents
`fi.h5` — 10 000 clips (6000 train / 2000 valid / 2000 test), ~33 GB, `float16`.
Row-indexed and feature-major: `__getitem__(i)` reads exactly one chunk per
feature. Every sequence feature carries a `mask` (`True` = the protagonist was
detected / a real token) and a `length`.
| feature | modality | source model | shape `(N, T, D)` |
|---|---|---|---|
| `wavlm` | acoustic | WavLM Base+ (layer 9) | `(10000, 750, 768)` |
| `emotion2vec` | acoustic | emotion2vec+ | `(10000, 750, 768)` |
| `dinov2` | visual | DINOv2 Base (full frame) | `(10000, 375, 768)` |
| `emotieffnet` | visual | EmotiEffNet (EfficientNet-B0) | `(10000, 375, 1280)` |
| `farl` | visual | FaRL (ViT-B/16) | `(10000, 375, 512)` |
| `xlm_roberta_gt` | textual | XLM-RoBERTa tokens, ground-truth | `(10000, 128, 768)` |
| `mmbert_gt` | textual | mmBERT tokens, ground-truth | `(10000, 128, 768)` |
Visual features (`emotieffnet`, `farl`) track the **protagonist's** face; the
mask marks frames where the protagonist was detected. `dinov2` is dense (full
frame). Text is **token-level** `(T, 768)` (not pooled) for both XLM-RoBERTa and
mmBERT — the representation a cross-modal sequence model attends over — padded to
128 tokens with the mask marking real tokens. Both are extracted over the
**ground-truth** transcript.
Labels stored per clip: the Big Five traits (`openness`, `conscientiousness`,
`extraversion`, `agreeableness`, `neuroticism`, and `emotional_stability`
`= 1 − neuroticism`) plus the `interview` variable, all in `[0, 1]`.
## Provenance and reproducibility
The file's HDF5 root attributes embed the **builder config verbatim**, the
**git commit SHA** of the code that produced it (with a `-dirty` suffix if built
from an uncommitted tree), and the source label CSV's SHA-256 — so any copy
traces back to the exact recipe. To rebuild from scratch and verify:
```bash
make pipeline-fi # decode → extract features → build fi.h5 (requires raw FI)
```
## Citation
Features derived from the **ChaLearn First Impressions V2** dataset. If you use
this artifact, please cite the original dataset and the PersonalityLinMulT
paper:
> Fodor et al., *Multimodal Sentiment and Personality Perception Under Speech:
> A Comparison of Transformer-based Architectures.*
> [PMLR v173](https://proceedings.mlr.press/v173/fodor22a.html)
## Links
- **Code / models:** https://github.com/fodorad/PersonalityLinMulT
- **Documentation:** https://fodorad.github.io/PersonalityLinMulT/
- **Original dataset:** https://chalearnlap.cvc.uab.cat/dataset/24/description/
|