cgeorgiaw HF Staff commited on
Commit
a264aa2
·
verified ·
1 Parent(s): b388491

Add VEPQA ClinVar SFT v0 dataset

Browse files
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: binary
4
+ data_files:
5
+ - split: train
6
+ path: binary/train-*
7
+ - config_name: clinvar_levels
8
+ data_files:
9
+ - split: train
10
+ path: clinvar_levels/train-*
11
+ - config_name: pathogenic_pairwise
12
+ data_files:
13
+ - split: train
14
+ path: pathogenic_pairwise/train-*
15
+ - config_name: all_tasks
16
+ data_files:
17
+ - split: train
18
+ path: all_tasks/train-*
19
+ ---
20
+
21
+ # VEPQA
22
+
23
+ Multi-config VEP SFT prototype built from raw ClinVar `variant_summary.txt.gz`
24
+ and UCSC hg38 sequence windows.
25
+
26
+ Configs:
27
+
28
+ - `binary`: binary benign/likely benign vs pathogenic/likely pathogenic classification.
29
+ - `clinvar_levels`: finer-grained ClinVar label classification over the retained benign/pathogenic levels.
30
+ - `pathogenic_pairwise`: reference-vs-alternate sequence preference for pathogenic/likely pathogenic variants.
31
+ - `all_tasks`: concatenation of the above configs for quick smoke tests.
32
+
33
+ Row format:
34
+
35
+ - `question` / `prompt`: user-facing prompt.
36
+ - `answer` / `gold_answer_json`: deterministic gold JSON target.
37
+ - `messages`: two-turn SFT messages list.
38
+ - `choices`: allowed answer labels for the task.
39
+ - audit metadata: ClinVar IDs, genomic position, review status, sequence hashes, and benchmark exclusion status.
40
+
41
+ Counts:
42
+
43
+ ```json
44
+ {
45
+ "all_tasks": 180,
46
+ "binary": 80,
47
+ "clinvar_levels": 80,
48
+ "pathogenic_pairwise": 20
49
+ }
50
+ ```
51
+
52
+ Label counts by task:
53
+
54
+ ```json
55
+ {
56
+ "binary": {
57
+ "Benign": 23,
58
+ "Benign/Likely benign": 8,
59
+ "Likely benign": 9,
60
+ "Likely pathogenic": 3,
61
+ "Pathogenic": 19,
62
+ "Pathogenic/Likely pathogenic": 18
63
+ },
64
+ "clinvar_levels": {
65
+ "Benign": 23,
66
+ "Benign/Likely benign": 8,
67
+ "Likely benign": 9,
68
+ "Likely pathogenic": 3,
69
+ "Pathogenic": 19,
70
+ "Pathogenic/Likely pathogenic": 18
71
+ },
72
+ "pathogenic_pairwise": {
73
+ "Likely pathogenic": 2,
74
+ "Pathogenic": 12,
75
+ "Pathogenic/Likely pathogenic": 6
76
+ }
77
+ }
78
+ ```
79
+
80
+ Notes:
81
+
82
+ - The binary task uses pathogenic/likely pathogenic terminology, not malignant terminology.
83
+ - Confidence/evidence strength is intentionally not a target because review-status metadata is not provided to the model in the prompt.
84
+ - Carbon eval overlap was checked before sampling; BRCA2 hg19-vs-GRCh38 liftover remains a noted follow-up caveat in the project plan.
85
+ - Existing Claude-generated SFT data and DataForge/Gemma rollouts are not used.
all_tasks/train-00000-of-00001.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
binary/train-00000-of-00001.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
clinvar_levels/train-00000-of-00001.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
pathogenic_pairwise/train-00000-of-00001.jsonl ADDED
The diff for this file is too large to render. See raw diff