File size: 5,046 Bytes
f70e38c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
---
language:
- en
license: other
task_categories:
- text-classification
- text-generation
pretty_name: Cochrane Screening SFT
tags:
- systematic-review
- cochrane
- title-abstract-screening
- medical
- peft
- sft
size_categories:
- 100K<n<1M
configs:
- config_name: default
  data_files:
  - split: train
    path: train.jsonl
  - split: validation
    path: val.jsonl
  - split: test
    path: test.jsonl
- config_name: heldout_reviews1
  data_files:
  - split: test
    path: heldout_reviews1.jsonl
- config_name: heldout_reviews2
  data_files:
  - split: test
    path: heldout_reviews2.jsonl
- config_name: heldout_reviews3
  data_files:
  - split: test
    path: heldout_reviews3.jsonl
dataset_info:
- config_name: default
  features:
  - name: messages
    list:
    - name: role
      dtype: string
    - name: content
      dtype: string
  - name: row_id
    dtype: int64
  - name: label
    dtype: string
  splits:
  - name: train
    num_examples: 416799
  - name: validation
    num_examples: 46311
  - name: test
    num_examples: 26673
- config_name: heldout_reviews1
  features:
  - name: messages
    list:
    - name: role
      dtype: string
    - name: content
      dtype: string
  - name: row_id
    dtype: int64
  - name: label
    dtype: string
  splits:
  - name: test
    num_examples: 26858
- config_name: heldout_reviews2
  features:
  - name: messages
    list:
    - name: role
      dtype: string
    - name: content
      dtype: string
  - name: row_id
    dtype: int64
  - name: label
    dtype: string
  splits:
  - name: test
    num_examples: 4391
- config_name: heldout_reviews3
  features:
  - name: messages
    list:
    - name: role
      dtype: string
    - name: content
      dtype: string
  - name: row_id
    dtype: int64
  - name: label
    dtype: string
  splits:
  - name: test
    num_examples: 19007
---

# Cochrane Screening SFT

Supervised fine-tuning (SFT) chat dataset for **Cochrane-style title and abstract screening**.

Each example is a chat conversation that asks a model to predict a screening decision
(`include` / `exclude` / `uncertain`) and a short justification (`reason`).

Code: [ljwa2323/cochrane-screening-slm](https://github.com/ljwa2323/cochrane-screening-slm)

## Dataset summary

| Split / config | Records | Role |
| --- | ---: | --- |
| `train` | 416,799 | LoRA SFT training |
| `validation` | 46,311 | Training-time validation (10% stratified holdout from development data) |
| `test` | 26,673 | Internal held-out test split |
| `heldout_reviews1` | 26,858 | External reviews (random Cochrane set) |
| `heldout_reviews2` | 4,391 | External reviews (HIV-focused set) |
| `heldout_reviews3` | 19,007 | External reviews (heart/CVD-focused set) |

Label mapping used when building the dataset:

- `0.0` -> `exclude`
- `0.5` -> `uncertain`
- `1.0` -> `include`

Approximate label counts on the development-derived set (train+val source):

- exclude: 221,129
- uncertain: 160,861
- include: 81,120

## Data fields

Each `*.jsonl` line contains:

| Field | Type | Description |
| --- | --- | --- |
| `messages` | list | Chat turns: `system`, `user`, `assistant` |
| `row_id` | int | Source row id |
| `label` | string | Gold label: `include` / `exclude` / `uncertain` |

The assistant target is a JSON object:

```json
{"label": "include|exclude|uncertain", "reason": "<brief explanation>"}
```

## How to load

```python
from datasets import load_dataset

# Internal splits
ds = load_dataset("deepcoder2024/cochrane-screening-sft")
print(ds)

# External held-out reviews
hr1 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews1")
hr2 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews2")
hr3 = load_dataset("deepcoder2024/cochrane-screening-sft", "heldout_reviews3")
```

> Tip: ignore `*_manifest.json` files when loading. They are metadata only and should not be parsed as chat examples.

## Intended use

- Fine-tune small language models (e.g., Qwen3 LoRA) for title/abstract screening
- Evaluate screening label + reason generation on internal and external review sets

## Out-of-scope use

- Not a substitute for expert systematic-review judgment
- Not intended for clinical decision-making about individual patients
- Labels and reasons are for research / screening-assistance experiments only

## Related models

- [`deepcoder2024/Qwen3-1.7B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-1.7B-LoRA-Cochrane-Screening)
- [`deepcoder2024/Qwen3-4B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-4B-LoRA-Cochrane-Screening)
- [`deepcoder2024/Qwen3-8B-LoRA-Cochrane-Screening`](https://huggingface.co/deepcoder2024/Qwen3-8B-LoRA-Cochrane-Screening)

## Citation

If you use this dataset, please cite the associated project repository:

```bibtex
@misc{cochrane_screening_sft,
  title        = {Cochrane Screening SFT Dataset},
  author       = {deepcoder2024},
  year         = {2026},
  howpublished = {\\url{https://huggingface.co/datasets/deepcoder2024/cochrane-screening-sft}}
}
```