Chtholly17 commited on
Commit
42ae581
·
verified ·
1 Parent(s): 7e59f15

Upload MedMod/README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. MedMod/README.md +62 -3
MedMod/README.md CHANGED
@@ -3,7 +3,11 @@
3
  This release keeps the `ready` entrypoint small and also provides enough extra
4
  archives to reconstruct a near-complete `MedModAgentBench_v3` root.
5
 
6
- Default entrypoint:
 
 
 
 
7
 
8
  - `MedModAgentBench_v3_ready_manifests.zip`: `common/ready` plus root metadata
9
  (`README.md`, `metadata.json`, `build_summary.json`, `table_description/`,
@@ -12,7 +16,28 @@ Default entrypoint:
12
  all subjects referenced by `common/ready`.
13
  - `MedModAgentBench_v3_ready_images.zip`: all JPG files referenced by
14
  `common/ready`.
15
- - `MedModAgentBench_v3_test_only_portable.zip`: self-contained test-only subset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  Additional archives for near-complete root reconstruction:
18
 
@@ -35,7 +60,36 @@ Additional archives for near-complete root reconstruction:
35
  - `MedModAgentBench_v3_database_patients_19m.zip`
36
  - `MedModAgentBench_v3_mimic_cxr_files.zip`
37
 
38
- Reconstruction notes:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
  - For the default multimodal benchmark, extract the three `ready_*` archives
41
  into the same parent directory.
@@ -45,3 +99,8 @@ Reconstruction notes:
45
  - `common/ready` is the default evaluation entrypoint.
46
  - `common/full` is the source-aligned full layer and is intentionally larger and
47
  more redundant.
 
 
 
 
 
 
3
  This release keeps the `ready` entrypoint small and also provides enough extra
4
  archives to reconstruct a near-complete `MedModAgentBench_v3` root.
5
 
6
+ ## What To Download
7
+
8
+ ### Option A: Default multimodal benchmark
9
+
10
+ Download only these three archives:
11
 
12
  - `MedModAgentBench_v3_ready_manifests.zip`: `common/ready` plus root metadata
13
  (`README.md`, `metadata.json`, `build_summary.json`, `table_description/`,
 
16
  all subjects referenced by `common/ready`.
17
  - `MedModAgentBench_v3_ready_images.zip`: all JPG files referenced by
18
  `common/ready`.
19
+
20
+ After extraction, use:
21
+
22
+ - `MedModAgentBench_v3/common/ready/train.json`
23
+ - `MedModAgentBench_v3/common/ready/valid.json`
24
+ - `MedModAgentBench_v3/common/ready/test.json`
25
+
26
+ ### Option B: Quick smoke test
27
+
28
+ Download only:
29
+
30
+ - `MedModAgentBench_v3_test_only_portable.zip`
31
+
32
+ This is a self-contained small subset with:
33
+
34
+ - `common/ready/test.json`
35
+ - required patient DBs
36
+ - required CXR images
37
+
38
+ ### Option C: Near-complete benchmark root
39
+
40
+ Download every archive under `MedMod/`.
41
 
42
  Additional archives for near-complete root reconstruction:
43
 
 
60
  - `MedModAgentBench_v3_database_patients_19m.zip`
61
  - `MedModAgentBench_v3_mimic_cxr_files.zip`
62
 
63
+ ## How To Extract
64
+
65
+ - Extract all selected archives into the same parent directory.
66
+ - Do not flatten paths.
67
+ - Do not rename the extracted `MedModAgentBench_v3/` directory.
68
+
69
+ Example result:
70
+
71
+ ```text
72
+ some_parent/
73
+ MedModAgentBench_v3/
74
+ README.md
75
+ metadata.json
76
+ build_summary.json
77
+ common/
78
+ database/
79
+ mimic-cxr/
80
+ table_description/
81
+ asset_manifest/
82
+ ```
83
+
84
+ ## What Happens After Extraction
85
+
86
+ - No path rewriting is needed.
87
+ - `db_path_hint`, `image_paths`, and `report_paths` are all relative to the
88
+ benchmark root.
89
+ - A loader can resolve them by joining each relative path with
90
+ `MedModAgentBench_v3/`.
91
+
92
+ ## Which Manifest To Use
93
 
94
  - For the default multimodal benchmark, extract the three `ready_*` archives
95
  into the same parent directory.
 
99
  - `common/ready` is the default evaluation entrypoint.
100
  - `common/full` is the source-aligned full layer and is intentionally larger and
101
  more redundant.
102
+
103
+ In practice:
104
+
105
+ - use `common/ready/` for normal benchmark evaluation
106
+ - use `common/full/` only if you explicitly want the larger source-aligned layer