salmanshahid commited on
Commit
6d8a00c
1 Parent(s): 14dfaf7

Upload training_config.yml with huggingface_hub

Browse files
Files changed (1) hide show
  1. training_config.yml +70 -0
training_config.yml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ _component_: models.lora_mmllama3_8b
3
+ lora_attn_modules:
4
+ - q_proj
5
+ - v_proj
6
+ apply_lora_to_mlp: false
7
+ apply_lora_to_output: false
8
+ lora_rank: 8
9
+ lora_alpha: 16
10
+ perception_tokens: 2
11
+ use_clip: false
12
+ tokenizer:
13
+ _component_: models.a2a_tokenizer
14
+ path: checkpoints/Meta-Llama-3-8B-Instruct/tokenizer.model
15
+ checkpointer:
16
+ _component_: torchtune.utils.FullModelMetaCheckpointer
17
+ checkpoint_dir: checkpoints/Meta-Llama-3-8B-Instruct/
18
+ checkpoint_files:
19
+ - consolidated.00.pth
20
+ adapter_checkpoint: null
21
+ recipe_checkpoint: null
22
+ output_dir: output_checkpoints/experiment_1
23
+ model_type: LLAMA3
24
+ resume_from_checkpoint: false
25
+ interim_checkpoint_steps: 5000
26
+ interim_gen_steps: null
27
+ max_new_tokens: 100
28
+ temperature: 0.6
29
+ top_k: 300
30
+ dataset:
31
+ _component_: ds.EvenBatcher
32
+ dataset:
33
+ _component_: ds.RoundRobinDataset
34
+ datasets:
35
+ - _component_: ds.LlavaInstructDataset
36
+ dataset_path: ds/coco_llava_instruct/output.parquet
37
+ train_on_input: false
38
+ seed: null
39
+ shuffle: true
40
+ batch_size: 4
41
+ optimizer:
42
+ _component_: torch.optim.AdamW
43
+ weight_decay: 0.01
44
+ lr: 0.0003
45
+ lr_scheduler:
46
+ _component_: torchtune.modules.get_cosine_schedule_with_warmup
47
+ num_warmup_steps: 100
48
+ loss:
49
+ _component_: torch.nn.CrossEntropyLoss
50
+ epochs: 1
51
+ max_steps_per_epoch: null
52
+ gradient_accumulation_steps: 64
53
+ compile: false
54
+ output_dir: /tmp/lora_finetune_output
55
+ metric_logger:
56
+ _component_: torchtune.utils.metric_logging.DiskLogger
57
+ log_dir: ${output_dir}
58
+ log_every_n_steps: null
59
+ device: cuda
60
+ dtype: bf16
61
+ enable_activation_checkpointing: false
62
+ profiler:
63
+ _component_: torchtune.utils.profiler
64
+ enabled: false
65
+ inference:
66
+ prompt_template: "Video:\n{video}\nCaption the previous video."
67
+ max_new_tokens: 300
68
+ temperature: 0.6 # 0.8 and 0.6 are popular values to try
69
+ top_k: 300
70
+ quantizer: null