Browse Source

Add validation file name

Use full prediction
pull/313/head
duzx16 2 years ago
parent
commit
73f4fe1ffe
  1. 2
      ptuning/evaluate.sh
  2. 2
      ptuning/train.sh

2
ptuning/evaluate.sh

@ -4,6 +4,7 @@ STEP=3000
CUDA_VISIBLE_DEVICES=0 python3 main.py \ CUDA_VISIBLE_DEVICES=0 python3 main.py \
--do_predict \ --do_predict \
--validation_file AdvertiseGen/dev.json \
--test_file AdvertiseGen/dev.json \ --test_file AdvertiseGen/dev.json \
--overwrite_cache \ --overwrite_cache \
--prompt_column content \ --prompt_column content \
@ -15,6 +16,5 @@ CUDA_VISIBLE_DEVICES=0 python3 main.py \
--max_target_length 64 \ --max_target_length 64 \
--per_device_eval_batch_size 1 \ --per_device_eval_batch_size 1 \
--predict_with_generate \ --predict_with_generate \
--max_predict_samples 10 \
--pre_seq_len $PRE_SEQ_LEN \ --pre_seq_len $PRE_SEQ_LEN \
--quantization_bit 4 --quantization_bit 4

2
ptuning/train.sh

@ -9,7 +9,7 @@ CUDA_VISIBLE_DEVICES=0 python3 main.py \
--response_column summary \ --response_column summary \
--overwrite_cache \ --overwrite_cache \
--model_name_or_path THUDM/chatglm-6b \ --model_name_or_path THUDM/chatglm-6b \
--output_dir output/adgen-chatglm-6b-pt-$PRE_SEQ_LEN-$LR-dev \ --output_dir output/adgen-chatglm-6b-pt-$PRE_SEQ_LEN-$LR \
--overwrite_output_dir \ --overwrite_output_dir \
--max_source_length 64 \ --max_source_length 64 \
--max_target_length 64 \ --max_target_length 64 \

Loading…
Cancel
Save