deepcoder2024 commited on
Commit
f70e38c
·
verified ·
1 Parent(s): b7e4d9f

Add dataset card with split configs for train/val/test and heldout_reviews

Browse files
Files changed (1) hide show
  1. README.md +199 -0
README.md ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ task_categories:
6
+ - text-classification
7
+ - text-generation
8
+ pretty_name: Cochrane Screening SFT
9
+ tags:
10
+ - systematic-review
11
+ - cochrane
12
+ - title-abstract-screening
13
+ - medical
14
+ - peft
15
+ - sft
16
+ size_categories:
17
+ - 100K<n<1M
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: train.jsonl
23
+ - split: validation
24
+ path: val.jsonl
25
+ - split: test
26
+ path: test.jsonl
27
+ - config_name: heldout_reviews1
28
+ data_files:
29
+ - split: test
30
+ path: heldout_reviews1.jsonl
31
+ - config_name: heldout_reviews2
32
+ data_files:
33
+ - split: test
34
+ path: heldout_reviews2.jsonl
35
+ - config_name: heldout_reviews3
36
+ data_files:
37
+ - split: test
38
+ path: heldout_reviews3.jsonl
39
+ dataset_info:
40
+ - config_name: default
41
+ features:
42
+ - name: messages
43
+ list:
44
+ - name: role
45
+ dtype: string
46
+ - name: content
47
+ dtype: string
48
+ - name: row_id
49
+ dtype: int64
50
+ - name: label
51
+ dtype: string
52
+ splits:
53
+ - name: train
54
+ num_examples: 416799
55
+ - name: validation
56
+ num_examples: 46311
57
+ - name: test
58
+ num_examples: 26673
59
+ - config_name: heldout_reviews1
60
+ features:
61
+ - name: messages
62
+ list:
63
+ - name: role
64
+ dtype: string
65
+ - name: content
66
+ dtype: string
67
+ - name: row_id
68
+ dtype: int64
69
+ - name: label
70
+ dtype: string
71
+ splits:
72
+ - name: test
73
+ num_examples: 26858
74
+ - config_name: heldout_reviews2
75
+ features:
76
+ - name: messages
77
+ list:
78
+ - name: role
79
+ dtype: string
80
+ - name: content
81
+ dtype: string
82
+ - name: row_id
83
+ dtype: int64
84
+ - name: label
85
+ dtype: string
86
+ splits:
87
+ - name: test
88
+ num_examples: 4391
89
+ - config_name: heldout_reviews3
90
+ features:
91
+ - name: messages
92
+ list:
93
+ - name: role
94
+ dtype: string
95
+ - name: content
96
+ dtype: string
97
+ - name: row_id
98
+ dtype: int64
99
+ - name: label
100
+ dtype: string
101
+ splits:
102
+ - name: test
103
+ num_examples: 19007
104
+ ---
105
+
106
+ # Cochrane Screening SFT
107
+
108
+ Supervised fine-tuning (SFT) chat dataset for **Cochrane-style title and abstract screening**.
109
+
110
+ Each example is a chat conversation that asks a model to predict a screening decision
111
+ (`include` / `exclude` / `uncertain`) and a short justification (`reason`).
112
+
113
+ Code: [ljwa2323/cochrane-screening-slm](https://github.com/ljwa2323/cochrane-screening-slm)
114
+
115
+ ## Dataset summary
116
+
117
+ | Split / config | Records | Role |
118
+ | --- | ---: | --- |
119
+ | `train` | 416,799 | LoRA SFT training |
120
+ | `validation` | 46,311 | Training-time validation (10% stratified holdout from development data) |
121
+ | `test` | 26,673 | Internal held-out test split |
122
+ | `heldout_reviews1` | 26,858 | External reviews (random Cochrane set) |
123
+ | `heldout_reviews2` | 4,391 | External reviews (HIV-focused set) |
124
+ | `heldout_reviews3` | 19,007 | External reviews (heart/CVD-focused set) |
125
+
126
+ Label mapping used when building the dataset:
127
+
128
+ - `0.0` -> `exclude`
129
+ - `0.5` -> `uncertain`
130
+ - `1.0` -> `include`
131
+
132
+ Approximate label counts on the development-derived set (train+val source):
133
+
134
+ - exclude: 221,129
135
+ - uncertain: 160,861
136
+ - include: 81,120
137
+
138
+ ## Data fields
139
+
140
+ Each `*.jsonl` line contains:
141
+
142
+ | Field | Type | Description |
143
+ | --- | --- | --- |
144
+ | `messages` | list | Chat turns: `system`, `user`, `assistant` |
145
+ | `row_id` | int | Source row id |
146
+ | `label` | string | Gold label: `include` / `exclude` / `uncertain` |
147
+
148
+ The assistant target is a JSON object:
149
+
150
+ ```json
151
+ {"label": "include|exclude|uncertain", "reason": "<brief explanation>"}
152
+ ```
153
+
154
+ ## How to load
155
+
156
+ ```python
157
+ from datasets import load_dataset
158
+
159
+ # Internal splits
160
+ ds = load_dataset("deepcoder2024/cochrane-screening-sft")
161
+ print(ds)
162
+
163
+ # External held-out reviews
164
+ hr1 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews1")
165
+ hr2 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews2")
166
+ hr3 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews3")
167
+ ```
168
+
169
+ > Tip: ignore `*_manifest.json` files when loading. They are metadata only and should not be parsed as chat examples.
170
+
171
+ ## Intended use
172
+
173
+ - Fine-tune small language models (e.g., Qwen3 LoRA) for title/abstract screening
174
+ - Evaluate screening label + reason generation on internal and external review sets
175
+
176
+ ## Out-of-scope use
177
+
178
+ - Not a substitute for expert systematic-review judgment
179
+ - Not intended for clinical decision-making about individual patients
180
+ - Labels and reasons are for research / screening-assistance experiments only
181
+
182
+ ## Related models
183
+
184
+ - [`deepcoder2024/Qwen3-1.7B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-1.7B-LoRA-Cochrane-Screening)
185
+ - [`deepcoder2024/Qwen3-4B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-4B-LoRA-Cochrane-Screening)
186
+ - [`deepcoder2024/Qwen3-8B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-8B-LoRA-Cochrane-Screening)
187
+
188
+ ## Citation
189
+
190
+ If you use this dataset, please cite the associated project repository:
191
+
192
+ ```bibtex
193
+ @misc{cochrane_screening_sft,
194
+ title = {Cochrane Screening SFT Dataset},
195
+ author = {deepcoder2024},
196
+ year = {2026},
197
+ howpublished = {\\url{https://huggingface.co/datasets/deepcoder2024/cochrane-screening-sft}}
198
+ }
199
+ ```