bharatwwt commited on
Commit
6988ce8
1 Parent(s): f60e128

Upload cfg.yaml

Browse files
Files changed (1) hide show
  1. cfg.yaml +96 -0
cfg.yaml ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ architecture:
2
+ backbone_dtype: bfloat16
3
+ force_embedding_gradients: false
4
+ gradient_checkpointing: true
5
+ intermediate_dropout: 0.0
6
+ pretrained: true
7
+ pretrained_weights: ''
8
+ augmentation:
9
+ neftune_noise_alpha: 0.0
10
+ random_parent_probability: 0.0
11
+ skip_parent_probability: 0.0
12
+ token_mask_probability: 0.0
13
+ dataset:
14
+ add_eos_token_to_answer: false
15
+ add_eos_token_to_prompt: false
16
+ add_eos_token_to_system: false
17
+ answer_column: label
18
+ chatbot_author: H2O.ai
19
+ chatbot_name: h2oGPT
20
+ data_sample: 1.0
21
+ data_sample_choice:
22
+ - Train
23
+ - Validation
24
+ limit_chained_samples: false
25
+ mask_prompt_labels: true
26
+ num_classes: 10
27
+ parent_id_column: None
28
+ personalize: false
29
+ prompt_column:
30
+ - Description
31
+ system_column: None
32
+ text_answer_separator: ''
33
+ text_prompt_start: ''
34
+ text_system_start: ''
35
+ train_dataframe: /app/train_df.csv
36
+ validation_dataframe: ''
37
+ validation_size: 0.1
38
+ validation_strategy: automatic
39
+ environment:
40
+ compile_model: false
41
+ deepspeed_reduce_bucket_size: 1000000
42
+ deepspeed_stage3_param_persistence_threshold: 1000000
43
+ deepspeed_stage3_prefetch_bucket_size: 1000000
44
+ find_unused_parameters: false
45
+ gpus:
46
+ - '0'
47
+ - '1'
48
+ huggingface_branch: main
49
+ mixed_precision: false
50
+ number_of_workers: 2
51
+ seed: -1
52
+ trust_remote_code: true
53
+ use_deepspeed: false
54
+ experiment_name: LLM_classification
55
+ llm_backbone: tiiuae/falcon-7b
56
+ logging:
57
+ logger: None
58
+ neptune_project: ''
59
+ output_directory: /app/output
60
+ prediction:
61
+ batch_size_inference: 1
62
+ metric: AUC
63
+ problem_type: text_causal_classification_modeling
64
+ tokenizer:
65
+ add_prefix_space: false
66
+ add_prompt_answer_tokens: false
67
+ max_length: 512
68
+ max_length_answer: 50
69
+ max_length_prompt: 512
70
+ padding_quantile: 1.0
71
+ use_fast: true
72
+ training:
73
+ batch_size: 8
74
+ differential_learning_rate: 1.0e-05
75
+ differential_learning_rate_layers:
76
+ - classification_head
77
+ drop_last_batch: true
78
+ epochs: 15
79
+ evaluate_before_training: false
80
+ evaluation_epochs: 1.0
81
+ grad_accumulation: 1
82
+ gradient_clip: 0.0
83
+ learning_rate: 0.0001
84
+ lora: true
85
+ lora_alpha: 16
86
+ lora_dropout: 0.0500000007
87
+ lora_r: 4
88
+ lora_target_modules: ''
89
+ loss_function: CrossEntropyLoss
90
+ optimizer: AdamW
91
+ save_best_checkpoint: true
92
+ schedule: Linear
93
+ train_validation_data: false
94
+ use_flash_attention_2: false
95
+ warmup_epochs: 33.0
96
+ weight_decay: 0.0