73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
base_model: NousResearch/Llama-2-7b-hf
|
|
# optionally might have model_type or tokenizer_type
|
|
model_type: LlamaForCausalLM
|
|
tokenizer_type: LlamaTokenizer
|
|
# Automatically upload checkpoint and final model to HF
|
|
# hub_model_id: username/custom_model_name
|
|
|
|
load_in_8bit: false
|
|
load_in_4bit: true
|
|
|
|
datasets:
|
|
- path: yahma/alpaca-cleaned
|
|
type: alpaca
|
|
dataset_prepared_path: last_run_prepared
|
|
val_set_size: 0.05
|
|
output_dir: ./outputs/qlora-out
|
|
|
|
adapter: qlora
|
|
lora_model_dir:
|
|
|
|
sequence_len: 512
|
|
sample_packing: false
|
|
|
|
|
|
lora_r: 32
|
|
lora_alpha: 16
|
|
lora_dropout: 0.05
|
|
lora_target_linear: true
|
|
|
|
wandb_project:
|
|
wandb_entity:
|
|
wandb_watch:
|
|
wandb_name:
|
|
wandb_log_model:
|
|
|
|
gradient_accumulation_steps: 4
|
|
micro_batch_size: 4
|
|
num_epochs: 4
|
|
optimizer: adamw_torch_fused
|
|
lr_scheduler: cosine
|
|
learning_rate: 0.00001
|
|
|
|
bf16: auto
|
|
tf32: false
|
|
|
|
gradient_checkpointing: true
|
|
gradient_checkpointing_kwargs:
|
|
use_reentrant: true
|
|
resume_from_checkpoint:
|
|
logging_steps: 1
|
|
flash_attention: true
|
|
|
|
warmup_ratio: 0.1
|
|
evals_per_epoch: 4
|
|
saves_per_epoch: 1
|
|
weight_decay: 0.0
|
|
fsdp:
|
|
- full_shard
|
|
- auto_wrap
|
|
fsdp_config:
|
|
fsdp_limit_all_gathers: true
|
|
fsdp_sync_module_states: true
|
|
fsdp_offload_params: true
|
|
fsdp_use_orig_params: false
|
|
fsdp_cpu_ram_efficient_loading: true
|
|
fsdp_auto_wrap_policy: TRANSFORMER_BASED_WRAP
|
|
fsdp_transformer_layer_cls_to_wrap: LlamaDecoderLayer
|
|
fsdp_state_dict_type: FULL_STATE_DICT
|
|
# fsdp_cpu_offload_pin_memory: false # uncomment to enable swap memory usage when RAM is insufficient
|
|
special_tokens:
|
|
|
|
# save_first_step: true # uncomment this to validate checkpoint saving works with your config
|