28 lines
746 B
Python
28 lines
746 B
Python
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()
|