Update dataset card for DMSP

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +69 -3
README.md CHANGED
@@ -1,3 +1,69 @@
1
- ---
2
- license: cc
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - multimodal
7
+ - personality-understanding
8
+ - mbti
9
+ - fairness
10
+ ---
11
+
12
+ # DMSP β€” Dataset for Multimodal Personality Research
13
+
14
+ The **DMSP** (Demographic-annotated Multimodal Student Personality) dataset is a resource designed to address the challenges in personality detection from multimodal content, particularly focusing on the **Myers-Briggs Type Indicator (MBTI)** and **fairness evaluation**.
15
+
16
+ Unlike existing datasets that rely heavily on text-only inputs, DMSP integrates **Visual, Audio, and Textual modalities**. By incorporating fairness attributes (Gender, Age, Race) and continuous soft labels, this dataset offers a more accurate reflection of how personality traits manifest in real-world scenarios.
17
+
18
+ - **Paper**: [Debiased Multimodal Personality Understanding through Dual Causal Intervention](https://huggingface.co/papers/2605.06371)
19
+ - **GitHub Repository**: [Sabrina-han/DCAN](https://github.com/Sabrina-han/DCAN)
20
+
21
+ ## Key Features
22
+ * **Multimodal Integration**: Leverages CLIP (Visual), Wav2Clip (Audio), and CLIP Sentence Embeddings (Text) for robust feature representation.
23
+ * **Fairness-Oriented**: Includes demographic annotations (Gender, Age, Race) to facilitate fairness analysis and bias mitigation in AI models.
24
+ * **Soft Labeling**: Utilizes continuous scores for the 4 MBTI dimensions (E/I, N/S, F/T, J/P), moving beyond the limitations of hard binary classifications.
25
+
26
+ ## Dataset Structure
27
+
28
+ ```text
29
+ DMSP/
30
+ β”œβ”€β”€ train.csv # Training labels and metadata
31
+ β”œβ”€β”€ test.csv # Test labels and metadata
32
+ β”œβ”€β”€ train_clipimage.pkl # Visual features for training set (CLIP ViT-B/32)
33
+ β”œβ”€β”€ test_clipimage.pkl # Visual features for test set
34
+ β”œβ”€β”€ train_audio_wav2clip.pkl # Audio features for training set (Wav2Clip)
35
+ β”œβ”€β”€ test_audio_wav2clip.pkl # Audio features for test set
36
+ β”œβ”€β”€ train_clipsentence.pkl # Text features for training set (CLIP Sentence)
37
+ └── test_clipsentence.pkl # Text features for test set
38
+ ```
39
+
40
+ ## Sample Usage
41
+
42
+ You can load the dataset using the following snippet found in the official repository:
43
+
44
+ ```python
45
+ from train_FMPD_MBTI_baseline_fixed import DMSPDataset
46
+
47
+ train_ds = DMSPDataset(
48
+ csv_file='DMSP/train.csv',
49
+ data_dir='DMSP',
50
+ split='train'
51
+ )
52
+
53
+ sample = train_ds[0]
54
+ print(sample.keys())
55
+ # Output: ['vid', 'mbti', 'demo', 'visual', 'audio', 'text']
56
+ ```
57
+
58
+ ## Citation
59
+
60
+ If you use this dataset in your research, please cite:
61
+
62
+ ```bibtex
63
+ @article{han2024debiased,
64
+ title={Debiased Multimodal Personality Understanding through Dual Causal Intervention},
65
+ author={Li, Han and others},
66
+ journal={arXiv preprint arXiv:2605.06371},
67
+ year={2024}
68
+ }
69
+ ```