mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
9 lines
234 B
Python
9 lines
234 B
Python
from huggingface_hub import snapshot_download
|
|
|
|
if __name__ == "__main__":
|
|
fw_dir = "./data/raw_datasets/fw_qa_v2/"
|
|
snapshot_download(
|
|
"SakanaAI/fineweb_qa",
|
|
repo_type="dataset",
|
|
local_dir=fw_dir,
|
|
)
|