anthonymeo commited on
Commit
08882af
1 Parent(s): 3395c0b

Upload cfg.yaml

Browse files
Files changed (1) hide show
  1. cfg.yaml +112 -0
cfg.yaml ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ architecture:
2
+ backbone_dtype: bfloat16
3
+ gradient_checkpointing: true
4
+ intermediate_dropout: 0.0
5
+ pretrained: true
6
+ pretrained_weights: ''
7
+ augmentation:
8
+ neftune_noise_alpha: 0.0
9
+ random_parent_probability: 0.0
10
+ skip_parent_probability: 0.0
11
+ token_mask_probability: 0.0
12
+ dataset:
13
+ add_eos_token_to_answer: true
14
+ add_eos_token_to_prompt: true
15
+ add_eos_token_to_system: true
16
+ answer_column: Answer
17
+ chatbot_author: H2O.ai
18
+ chatbot_name: h2oGPT
19
+ data_sample: 1.0
20
+ data_sample_choice:
21
+ - Train
22
+ - Validation
23
+ limit_chained_samples: false
24
+ mask_prompt_labels: true
25
+ only_last_answer: false
26
+ parent_id_column: None
27
+ personalize: false
28
+ prompt_column:
29
+ - Context
30
+ - Question
31
+ prompt_column_separator: \n\n
32
+ system_column: None
33
+ text_answer_separator: <|answer|>
34
+ text_prompt_start: <|prompt|>
35
+ text_system_start: <|system|>
36
+ train_dataframe: /home/llmstudio/mount/data/user/Archive/train.csv
37
+ validation_dataframe: /home/llmstudio/mount/data/user/Archive/validation.csv
38
+ validation_size: 0.01
39
+ validation_strategy: custom
40
+ environment:
41
+ compile_model: false
42
+ deepspeed_allgather_bucket_size: 1000000
43
+ deepspeed_method: ZeRO2
44
+ deepspeed_reduce_bucket_size: 1000000
45
+ deepspeed_stage3_param_persistence_threshold: 1000000
46
+ deepspeed_stage3_prefetch_bucket_size: 1000000
47
+ find_unused_parameters: false
48
+ gpus:
49
+ - '0'
50
+ huggingface_branch: main
51
+ mixed_precision: true
52
+ mixed_precision_dtype: bfloat16
53
+ number_of_workers: 8
54
+ seed: -1
55
+ trust_remote_code: true
56
+ use_deepspeed: false
57
+ experiment_name: augmented-smilodon.1
58
+ llm_backbone: h2oai/h2o-danube3-500m-chat
59
+ logging:
60
+ logger: Neptune
61
+ neptune_project: meoanthony88/train
62
+ output_directory: /home/llmstudio/mount/output/user/augmented-smilodon.1/
63
+ prediction:
64
+ batch_size_inference: 0
65
+ do_sample: false
66
+ max_length_inference: 256
67
+ max_time: 0.0
68
+ metric: GPT
69
+ metric_gpt_model: gpt-3.5-turbo-0301
70
+ metric_gpt_template: general
71
+ min_length_inference: 2
72
+ num_beams: 1
73
+ num_history: 4
74
+ repetition_penalty: 1.3
75
+ stop_tokens: ''
76
+ temperature: 0.0
77
+ top_k: 0
78
+ top_p: 1.0
79
+ problem_type: text_causal_language_modeling
80
+ tokenizer:
81
+ add_prompt_answer_tokens: true
82
+ max_length: 1024
83
+ padding_quantile: 0.81
84
+ tokenizer_kwargs: '{"use_fast": true, "add_prefix_space": false}'
85
+ training:
86
+ attention_implementation: auto
87
+ batch_size: 8
88
+ differential_learning_rate: 1.0e-05
89
+ differential_learning_rate_layers: []
90
+ drop_last_batch: true
91
+ epochs: 1
92
+ evaluate_before_training: false
93
+ evaluation_epochs: 1.0
94
+ freeze_layers: []
95
+ grad_accumulation: 1
96
+ gradient_clip: 0.0
97
+ learning_rate: 0.0001
98
+ lora: true
99
+ lora_alpha: 16
100
+ lora_dropout: 0.05
101
+ lora_r: 4
102
+ lora_target_modules: ''
103
+ lora_unfreeze_layers: []
104
+ loss_function: TokenAveragedCrossEntropy
105
+ optimizer: AdamW
106
+ save_checkpoint: last
107
+ schedule: Cosine
108
+ train_validation_data: false
109
+ use_dora: false
110
+ use_rslora: false
111
+ warmup_epochs: 0.0
112
+ weight_decay: 0.0