初始化项目,由ModelHub XC社区提供模型

Model: dkleczek/papuGaPT2
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-23 18:01:18 +08:00
commit 2055174cf5
62 changed files with 58964 additions and 0 deletions

17
pretrain_model_SAMPLE.sh Executable file
View File

@@ -0,0 +1,17 @@
${MODEL_DIR}/run_clm_flax_SAMPLE.py \
--output_dir="${MODEL_DIR}" \
--model_type="gpt2" \
--config_name="${MODEL_DIR}" \
--tokenizer_name="${MODEL_DIR}" \
--dataset_name="oscar" \
--dataset_config_name="unshuffled_deduplicated_pl" \
--do_train --do_eval \
--block_size="512" \
--per_device_train_batch_size="64" \
--per_device_eval_batch_size="64" \
--learning_rate="5e-3" --warmup_steps="1000" \
--adam_beta1="0.9" --adam_beta2="0.98" --weight_decay="0.01" \
--overwrite_output_dir \
--num_train_epochs="20" \
--push_to_hub \
--preprocessing_num_workers="64"