iLampard commited on
Commit
cfadb08
·
verified ·
1 Parent(s): 8e712a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -144,6 +144,28 @@ FAMMA is continuously updated with new questions. We provide different versions
144
  see the script at https://github.com/famma-bench/bench-script/blob/main/step_1_download_dataset.py
145
 
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  ## Citation
148
  If you use FAMMA in your research, please cite our paper as follows:
149
 
 
144
  see the script at https://github.com/famma-bench/bench-script/blob/main/step_1_download_dataset.py
145
 
146
 
147
+ Fristly, clone the repository and install the dependencies:
148
+ ```bash
149
+ git clone https://github.com/famma-bench/bench-script.git
150
+ pip install -r requirements.txt
151
+ ```
152
+
153
+ To download the dataset, run the following command:
154
+
155
+
156
+ ```bash
157
+ python step_1_download_dataset.py \
158
+ --hf_dir "weaverbirdllm/famma" \
159
+ --split "release_v2406" \ # or "release_v2501" or None to download the live set
160
+ --save_dir "./hf_data"
161
+ ```
162
+
163
+ Options:
164
+ - `--hf_dir`: HuggingFace repository name
165
+ - `--split`: Specific version to download (optional)
166
+ - `--save_dir`: Local directory to save the dataset (default: "./hf_data")
167
+
168
+
169
  ## Citation
170
  If you use FAMMA in your research, please cite our paper as follows:
171