chore: import upstream snapshot with attribution
Lint test / lint (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:58 +08:00
commit a203934033
1368 changed files with 175001 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
def test_export_cached_dataset():
from swift import ExportArguments, export_main
export_main(
ExportArguments(
model='Qwen/Qwen2.5-7B-Instruct',
dataset='swift/Chinese-Qwen3-235B-2507-Distill-data-110k-SFT',
to_cached_dataset=True,
dataset_num_proc=4,
))
print()
def test_sft():
from swift import SftArguments, sft_main
sft_main(
SftArguments(
model='Qwen/Qwen2.5-7B-Instruct',
dataset='liucong/Chinese-DeepSeek-R1-Distill-data-110k-SFT#1000',
dataset_num_proc=2,
packing=True,
attn_impl='flash_attn',
))
if __name__ == '__main__':
# test_export_cached_dataset()
test_sft()