* Prepare for transformers v5 upgrade * fix hf cli * update for hf hub changes * fix tokenizer apply_chat_template args * remap include_tokens_per_second * fix tps * handle migration for warmup * use latest hf hub * Fix scan -> ls * fix import * fix for renaming of mistral common tokenizer -> backend * update for fixed tokenziation for llama * Skip phi35 tests for now * remove mistral patch fixed upstream in huggingface/transformers#41439 * use namespacing for patch * don't rely on sdist for e2e tests for now * run modal ci without waiting too * Fix dep for ci * fix imports * Fix fp8 check * fsdp2 fixes * fix version handling * update fsdp version tests for new v5 behavior * Fail multigpu tests after 3 failures * skip known v5 broken tests for now and cleanup * bump deps * unmark skipped test * re-enable test_fsdp_qlora_prequant_packed test * increase multigpu ci timeout * skip broken gemma3 test * reduce timout back to original 120min now that the hanging test is skipped * fix for un-necessary collator for pretraining with bsz=1 * fix: safe_serialization deprecated in transformers v5 rc01 (#3318) * torch_dtype deprecated * load model in float32 for consistency with tests * revert some test fixtures back * use hf cache ls instead of scan * don't strip fsdp_version more fdsp_Version fixes for v5 fix version in fsdp_config fix aliasing fix fsdp_version check check fsdp_version is 2 in both places * Transformers v5 rc2 (#3347) * bump dep * use latest fbgemm, grab model config as part of fixture, un-skip test * import AutoConfig * don't need more problematic autoconfig when specifying config.json manually * add fixtures for argilla ultrafeedback datasets * download phi4-reasoning * fix arg * update tests for phi fast tokenizer changes * use explicit model types for gemma3 --------- Co-authored-by: Wing Lian <wing@axolotl.ai> * fix: AutoModelForVision2Seq -> AutoModelForImageTextToText * chore: remove duplicate * fix: attempt fix gemma3 text mode * chore: lint * ga release of v5 * need property setter for name_or_path for mistral tokenizer * vllm not compatible with transformers v5 * setter for chat_template w mistral too --------- Co-authored-by: NanoCode012 <nano@axolotl.ai> Co-authored-by: salman <salman.mohammadi@outlook.com>
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
base_model: ai21labs/AI21-Jamba-1.5-Large
|
|
# optionally might have model_type or tokenizer_type
|
|
tokenizer_type: AutoTokenizer
|
|
# Automatically upload checkpoint and final model to HF
|
|
# hub_model_id: username/custom_model_name
|
|
|
|
load_in_4bit: true
|
|
use_tensorboard: true
|
|
chat_template: jamba
|
|
datasets:
|
|
- path: cgato/SlimOrcaDedupCleaned
|
|
type: chat_template
|
|
drop_system_message: true
|
|
field_messages: conversations
|
|
message_property_mappings:
|
|
role: from
|
|
content: value
|
|
|
|
dataset_prepared_path: last_run_prepared
|
|
val_set_size: 0.0
|
|
output_dir: jamba-large-fsdp-qlora-ft
|
|
adapter: qlora
|
|
sequence_len: 2048
|
|
sample_packing: true
|
|
|
|
|
|
lora_r: 16
|
|
lora_alpha: 16
|
|
lora_dropout: 0.05
|
|
lora_target_modules: [down_proj,gate_proj,in_proj,k_proj,o_proj,out_proj,q_proj,up_proj,v_proj,x_proj]
|
|
lora_target_linear: false
|
|
|
|
gradient_accumulation_steps: 4
|
|
micro_batch_size: 1
|
|
num_epochs: 2
|
|
optimizer: adamw_torch_fused
|
|
lr_scheduler: cosine
|
|
learning_rate: 0.00001
|
|
|
|
bf16: true
|
|
tf32: true
|
|
|
|
gradient_checkpointing: true
|
|
gradient_checkpointing_kwargs:
|
|
use_reentrant: true
|
|
logging_steps: 1
|
|
flash_attention: true
|
|
|
|
warmup_ratio: 0.1
|
|
evals_per_epoch: 1
|
|
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: false
|
|
fsdp_use_orig_params: false
|
|
fsdp_cpu_ram_efficient_loading: true
|
|
fsdp_auto_wrap_policy: TRANSFORMER_BASED_WRAP
|
|
fsdp_transformer_layer_cls_to_wrap: JambaAttentionDecoderLayer,JambaMambaDecoderLayer
|
|
fsdp_state_dict_type: FULL_STATE_DICT
|
|
fsdp_sharding_strategy: FULL_SHARD
|
|
|
|
# save_first_step: true # uncomment this to validate checkpoint saving works with your config
|