mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
11 lines
283 B
Python
11 lines
283 B
Python
# TO BE ADDED: see which split is better
|
|
|
|
from huggingface_hub import snapshot_download
|
|
|
|
if __name__ == "__main__":
|
|
fw_dir = "./data/raw_datasets/self_gen/"
|
|
snapshot_download(
|
|
"SakanaAI/self_gen_qa_fw_qa",
|
|
repo_type="dataset",
|
|
local_dir=fw_dir,
|
|
)
|