mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
download self gen qa
This commit is contained in:
parent
1457981348
commit
dee7df746d
2 changed files with 10 additions and 0 deletions
|
|
@ -75,6 +75,7 @@ uv run python data/generate_fav_num_big.py
|
|||
***Download a subset of generated Fineweb-QA directly***
|
||||
```bash
|
||||
uv run data/download_generated_fineweb_qa.py
|
||||
uv run data/download_self_gen_qa.py
|
||||
```
|
||||
|
||||
***Generate data from scratch***
|
||||
|
|
|
|||
9
data/download_self_gen_qa.py
Normal file
9
data/download_self_gen_qa.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from huggingface_hub import snapshot_download
|
||||
|
||||
if __name__ == "__main__":
|
||||
fw_dir = "./data/raw_datasets/self_gen/"
|
||||
snapshot_download(
|
||||
"SakanaAI/self_gen_qa",
|
||||
repo_type="dataset",
|
||||
local_dir=fw_dir,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue