--- 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 `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": ""} ``` ## 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}} } ```