How can I specify the split to use for training and validation?
CUDA_VISIBLE_DEVICES=0 MAX_PIXELS=262144 \
swift sft \
--model LLM-Research/gemma-3-1b-it \
--train_type full \
--dataset 'swift/path-vqa#train' \
--val_dataset 'swift/path-vqa#validation' \
--torch_dtype bfloat16 \
--num_train_epochs 3 \
Of course this will fail as #train is treated as a subset not a split. How can I specify the split?
How can I specify the split to use for training and validation?
Of course this will fail as #train is treated as a subset not a split. How can I specify the split?