eggfryonrice commited on
Commit
4fc95cc
·
verified ·
1 Parent(s): e4a51ed

Update README: replace loading section with download and evaluation

Browse files
Files changed (1) hide show
  1. README.md +15 -6
README.md CHANGED
@@ -50,20 +50,29 @@ To obtain the medical images:
50
 
51
  The image paths preserve the original MIMIC-CXR directory hierarchy, so files can be copied directly from a standard MIMIC-CXR-JPG download.
52
 
53
- ## Loading and Evaluation
54
 
55
- ### Loading the Dataset
56
 
57
- ```python
58
- from datasets import load_dataset
 
59
 
60
- dataset = load_dataset("KRAFTON/VLM-SubtleBench")
 
 
 
 
 
 
 
61
  ```
62
 
63
  ### Evaluation
64
 
65
  For evaluation code and instructions, please refer to the official GitHub repository:
66
- 👉 https://github.com/krafton-ai/VLM-SubtleBench
 
67
 
68
  ## Citation
69
 
 
50
 
51
  The image paths preserve the original MIMIC-CXR directory hierarchy, so files can be copied directly from a standard MIMIC-CXR-JPG download.
52
 
53
+ ## Download and Evaluation
54
 
55
+ ### Download
56
 
57
+ ```bash
58
+ # Using huggingface_hub
59
+ pip install huggingface_hub
60
 
61
+ python -c "from huggingface_hub import snapshot_download; snapshot_download('KRAFTON/VLM-SubtleBench', repo_type='dataset', local_dir='VLM-SubtleBench')"
62
+ ```
63
+
64
+ Or clone directly with Git LFS:
65
+
66
+ ```bash
67
+ git lfs install
68
+ git clone https://huggingface.co/datasets/KRAFTON/VLM-SubtleBench
69
  ```
70
 
71
  ### Evaluation
72
 
73
  For evaluation code and instructions, please refer to the official GitHub repository:
74
+
75
+ https://github.com/krafton-ai/VLM-SubtleBench
76
 
77
  ## Citation
78