Spaces:
Paused
Paused
File size: 332 Bytes
7975f51 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
CUDA_VISIBLE_DEVICES=0 python ../src/finetune.py \
--do_eval \
--dataset alpaca_gpt4_zh \
--dataset_dir ../data \
--checkpoint_dir path_to_checkpoint \
--output_dir path_to_eval_result \
--overwrite_cache \
--per_device_eval_batch_size 8 \
--max_samples 50 \
--predict_with_generate
|