Jeol0519 commited on
Commit
4a02fb5
·
verified ·
1 Parent(s): 49ccaca

Upload 4 files

Browse files
Files changed (4) hide show
  1. README.md +141 -0
  2. gitattributes +59 -0
  3. redsm5_annotations.csv +0 -0
  4. redsm5_posts.csv +0 -0
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - dsm5
10
+ - depression
11
+ - reddit
12
+ - clinical-nlp
13
+ - rationale
14
+ - explainability
15
+ pretty_name: ReDSM5
16
+ size_categories:
17
+ - 1K<n<10K
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: annotations
22
+ path: "redsm5_annotations.csv"
23
+ - split: posts
24
+ path: "redsm5_posts.csv"
25
+ ---
26
+
27
+ # ⚕️💬 ReDSM5: A Reddit Dataset for DSM-5 Depression Detection
28
+
29
+ > ℹ️ **Looking for a quick preview?**
30
+ > A fully paraphrased, anonymized sample with 25 entries is [publicly available on the Hugging Face Hub](https://huggingface.co/datasets/irlab-udc/redsm5-sample) — no user agreement required!
31
+
32
+ ## 🚦 Access Conditions
33
+
34
+ This dataset is gated. To obtain access, please complete the access request form at [ReDSM5 Agreement Form](https://www.irlab.org/ReDSM5_agreement.odt) and submit it via email to [eliseo.bao@udc.es](mailto:eliseo.bao@udc.es). Your request will be reviewed and you’ll receive approval or further instructions by email.
35
+
36
+ ## 📝 Dataset Summary
37
+
38
+ **ReDSM5** is a corpus of 1,484 Reddit posts, each *sentence-level annotated* for presence or absence of the nine DSM-5 major depressive episode symptoms (or `SPECIAL_CASE` for expert discrimination cases), along with a clinical rationale from a licensed psychologist.
39
+
40
+ A **public paraphrased sample** is available for inspection and prototyping at [irlab-udc/redsm5-sample](https://huggingface.co/datasets/irlab-udc/redsm5-sample).
41
+ This sample includes 25 entries, has been completely paraphrased to protect anonymity, and can be accessed without any agreement.
42
+
43
+ Unlike other datasets, **every annotation** includes:
44
+ - **`sentence_text`**: The relevant sentence from a Reddit post.
45
+ - **`DSM5_symptom`**: One of:
46
+ - `DEPRESSED_MOOD`
47
+ - `ANHEDONIA`
48
+ - `APPETITE_CHANGE`
49
+ - `SLEEP_ISSUES`
50
+ - `PSYCHOMOTOR`
51
+ - `FATIGUE`
52
+ - `WORTHLESSNESS`
53
+ - `COGNITIVE_ISSUES`
54
+ - `SUICIDAL_THOUGHTS`
55
+ - `SPECIAL_CASE` (for non-DSM-5 clinical/positive discriminations)
56
+ - **`status`**:
57
+ - `1` = relevant evidence for the symptom
58
+ - `0` = explicit negative (clinician-annotated absence of symptom)
59
+ - **`explanation`**: Short clinical rationale.
60
+ - **`post_id`, `sentence_id`**: For reference and grouping.
61
+
62
+ There is also a **full post file** with the original post text.
63
+
64
+ ### 📁 Files
65
+
66
+ - `redsm5_posts.csv`
67
+ - Columns: `post_id`, `text` (cleaned full post)
68
+ - `redsm5_annotations.csv`
69
+ - Columns: `post_id`, `sentence_id`, `sentence_text`, `DSM5_symptom`, `status`, `explanation`
70
+
71
+ #### Example annotation row:
72
+
73
+ | post_id | sentence_id | sentence_text | DSM5_symptom | status | explanation |
74
+ |--------------|-------------------|--------------------------------------------------|---------------|--------|-----------------------------------------------------------------------|
75
+ | s_3019_239 | s_3019_239_1 | However my sex drive went crazy... | SPECIAL_CASE | 1 | The above statement allows us to affirm that the person... |
76
+ | s_427_110 | s_427_110_1 | I'm feeling pretty proud of myself... | SPECIAL_CASE | 1 | The person who writes this post is manifesting positive feelings... |
77
+ | s_221_12 | s_221_12_5 | I have trouble sleeping every night | SLEEP_ISSUES | 1 | This statement shows persistent sleep issues matching DSM-5 criteria. |
78
+
79
+ ## 📊 Dataset Statistics
80
+
81
+ - **Total posts**: 1,484
82
+ - **Total number of expert explanations**: 1,547
83
+ - **Average explanations per post**: 1.04
84
+ - **Average number of symptoms per post (status=1 only)**: 1.39
85
+ - **Number of hard negatives (posts with no symptoms, status=1)**: 392
86
+ - **Average post length (in words)**: 294.7
87
+ - **Min / Max post length (in words)**: 2 / 6,990
88
+
89
+ #### Symptom Distribution (posts with `status=1`):
90
+
91
+ | Symptom | Posts tagged |
92
+ |------------------------|-------------:|
93
+ | DEPRESSED_MOOD | 328 |
94
+ | ANHEDONIA | 124 |
95
+ | APPETITE_CHANGE | 44 |
96
+ | SLEEP_ISSUES | 102 |
97
+ | PSYCHOMOTOR | 35 |
98
+ | FATIGUE | 124 |
99
+ | WORTHLESSNESS | 311 |
100
+ | COGNITIVE_ISSUES | 59 |
101
+ | SUICIDAL_THOUGHTS | 165 |
102
+ | **SPECIAL_CASE** | 92 |
103
+
104
+ ## 📦 File Format
105
+
106
+ ### `redsm5_full_posts.csv`
107
+ | post_id | text |
108
+ |------------|----------------------------------------------------------------------|
109
+ | s_1001_1 | I feel tired every day. I can't concentrate and sleep is a mess... |
110
+
111
+ ### `redsm5_annotations_long.csv`
112
+ | post_id | sentence_id | sentence_text | DSM5_symptom | status | explanation |
113
+ |------------|------------------|---------------------------|----------------|--------|---------------------------------------------|
114
+ | s_1001_1 | s_1001_1_1 | I feel tired every day. | FATIGUE | 1 | Indicates chronic fatigue. |
115
+ | s_1001_1 | s_1001_1_3 | I can't concentrate... | COGNITIVE_ISSUES | 1 | Persistent cognitive issues. |
116
+
117
+ ## 💡 Notes
118
+ - Each row in `redsm5_annotations_long.csv` is a unique `(post, sentence, symptom)` expert-annotated evidence.
119
+ - For multi-label tasks, group by `post_id`.
120
+ - For post-level text, use `redsm5_full_posts.csv`.
121
+
122
+ ## 📝 Citation
123
+
124
+ This paper has been accepted as a Resource Paper at **CIKM 2025**. The official conference proceedings will be available soon. In the meantime, you can read the preprint on [arXiv](https://www.arxiv.org/abs/2508.03399):
125
+
126
+ ```bibtex
127
+ @misc{bao2025redsm5,
128
+ title = {ReDSM5: A Reddit Dataset for DSM-5 Depression Detection},
129
+ author = {Eliseo Bao and Anxo Pérez and Javier Parapar},
130
+ year = {2025},
131
+ eprint = {2508.03399},
132
+ archivePrefix= {arXiv},
133
+ primaryClass = {cs.CL},
134
+ url = {https://arxiv.org/abs/2508.03399},
135
+ note = {Accepted at CIKM 2025}
136
+ }
137
+ ```
138
+
139
+ ## 📬 Contact
140
+
141
+ For questions, please reach out via email: `eliseo.bao@udc.es`
gitattributes ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mds filter=lfs diff=lfs merge=lfs -text
13
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
14
+ *.model filter=lfs diff=lfs merge=lfs -text
15
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
16
+ *.npy filter=lfs diff=lfs merge=lfs -text
17
+ *.npz filter=lfs diff=lfs merge=lfs -text
18
+ *.onnx filter=lfs diff=lfs merge=lfs -text
19
+ *.ot filter=lfs diff=lfs merge=lfs -text
20
+ *.parquet filter=lfs diff=lfs merge=lfs -text
21
+ *.pb filter=lfs diff=lfs merge=lfs -text
22
+ *.pickle filter=lfs diff=lfs merge=lfs -text
23
+ *.pkl filter=lfs diff=lfs merge=lfs -text
24
+ *.pt filter=lfs diff=lfs merge=lfs -text
25
+ *.pth filter=lfs diff=lfs merge=lfs -text
26
+ *.rar filter=lfs diff=lfs merge=lfs -text
27
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
28
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
30
+ *.tar filter=lfs diff=lfs merge=lfs -text
31
+ *.tflite filter=lfs diff=lfs merge=lfs -text
32
+ *.tgz filter=lfs diff=lfs merge=lfs -text
33
+ *.wasm filter=lfs diff=lfs merge=lfs -text
34
+ *.xz filter=lfs diff=lfs merge=lfs -text
35
+ *.zip filter=lfs diff=lfs merge=lfs -text
36
+ *.zst filter=lfs diff=lfs merge=lfs -text
37
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
38
+ # Audio files - uncompressed
39
+ *.pcm filter=lfs diff=lfs merge=lfs -text
40
+ *.sam filter=lfs diff=lfs merge=lfs -text
41
+ *.raw filter=lfs diff=lfs merge=lfs -text
42
+ # Audio files - compressed
43
+ *.aac filter=lfs diff=lfs merge=lfs -text
44
+ *.flac filter=lfs diff=lfs merge=lfs -text
45
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
46
+ *.ogg filter=lfs diff=lfs merge=lfs -text
47
+ *.wav filter=lfs diff=lfs merge=lfs -text
48
+ # Image files - uncompressed
49
+ *.bmp filter=lfs diff=lfs merge=lfs -text
50
+ *.gif filter=lfs diff=lfs merge=lfs -text
51
+ *.png filter=lfs diff=lfs merge=lfs -text
52
+ *.tiff filter=lfs diff=lfs merge=lfs -text
53
+ # Image files - compressed
54
+ *.jpg filter=lfs diff=lfs merge=lfs -text
55
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
56
+ *.webp filter=lfs diff=lfs merge=lfs -text
57
+ # Video files - compressed
58
+ *.mp4 filter=lfs diff=lfs merge=lfs -text
59
+ *.webm filter=lfs diff=lfs merge=lfs -text
redsm5_annotations.csv ADDED
The diff for this file is too large to render. See raw diff
 
redsm5_posts.csv ADDED
The diff for this file is too large to render. See raw diff