File size: 1,072 Bytes
588b1da 601f2b8 588b1da 54e5efe 588b1da 54e5efe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
---
license: apache-2.0
base_model:
- meta-llama/Llama-3.1-8B-Instruct
---
A preview version of FuseChat-3.0, more details coming soon...
## Training configs
```yaml
### model
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
### method
stage: sft
do_train: true
finetuning_type: full
deepspeed: examples/deepspeed/ds_z3_config.json
### dataset
dataset: FuseChat-Mixture-v3-SFT
template: llama3
cutoff_len: 2048
overwrite_cache: true
preprocessing_num_workers: 16
### output
output_dir: LLaMA-Factory/saves/llama31/FuseChat-Llama-3.1-8B-SFT-preview
logging_steps: 10
save_steps: 10086
plot_loss: true
overwrite_output_dir: true
### train
per_device_train_batch_size: 8
gradient_accumulation_steps: 2
learning_rate: 5.0e-6
num_train_epochs: 3.0
lr_scheduler_type: cosine
warmup_ratio: 0.1
bf16: true
ddp_timeout: 180000000
### custom
do_eval: false
packing: false
train_on_prompt: false
flash_attn: fa2
save_strategy: "no"
save_total_limit: 1
seed: 42
save_only_model: true
gradient_checkpointing: true
gradient_checkpointing_kwargs:
use_reentrant: False
```
|