samvelkoch commited on
Commit
e395bca
1 Parent(s): 6768dbf

Upload cfg.yaml

Browse files
Files changed (1) hide show
  1. cfg.yaml +105 -0
cfg.yaml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ architecture:
2
+ backbone_dtype: int4
3
+ force_embedding_gradients: false
4
+ gradient_checkpointing: true
5
+ intermediate_dropout: 0.0
6
+ pretrained: true
7
+ pretrained_weights: ''
8
+ augmentation:
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: false
14
+ add_eos_token_to_prompt: false
15
+ add_eos_token_to_system: false
16
+ answer_column: generated
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
+ num_classes: 1
26
+ parent_id_column: None
27
+ personalize: false
28
+ prompt_column:
29
+ - text
30
+ system_column: None
31
+ text_answer_separator: ''
32
+ text_prompt_start: ''
33
+ text_system_start: ''
34
+ train_dataframe: /workspace/data/user/data_calud2/data_calud2.csv
35
+ validation_dataframe: None
36
+ validation_size: 0.2
37
+ validation_strategy: automatic
38
+ environment:
39
+ compile_model: false
40
+ deepspeed_reduce_bucket_size: 1000000
41
+ deepspeed_stage3_param_persistence_threshold: 1000000
42
+ deepspeed_stage3_prefetch_bucket_size: 1000000
43
+ find_unused_parameters: false
44
+ gpus:
45
+ - '0'
46
+ huggingface_branch: main
47
+ mixed_precision: true
48
+ number_of_workers: 8
49
+ seed: 2977
50
+ trust_remote_code: true
51
+ use_deepspeed: false
52
+ use_fsdp: false
53
+ experiment_name: friendly-mouse
54
+ llm_backbone: h2oai/h2ogpt-4096-llama2-7b
55
+ logging:
56
+ logger: None
57
+ neptune_project: ''
58
+ output_directory: /workspace/output/user/friendly-mouse/
59
+ prediction:
60
+ batch_size_inference: 0
61
+ do_sample: false
62
+ max_length_inference: 256
63
+ metric: AUC
64
+ metric_gpt_model: gpt-3.5-turbo-0301
65
+ min_length_inference: 2
66
+ num_beams: 1
67
+ num_history: 4
68
+ repetition_penalty: 1.2
69
+ stop_tokens: ''
70
+ temperature: 0.0
71
+ top_k: 0
72
+ top_p: 1.0
73
+ problem_type: text_causal_classification_modeling
74
+ tokenizer:
75
+ add_prefix_space: false
76
+ add_prompt_answer_tokens: false
77
+ max_length: 512
78
+ max_length_answer: 256
79
+ max_length_prompt: 256
80
+ padding_quantile: 1.0
81
+ use_fast: true
82
+ training:
83
+ batch_size: 2
84
+ differential_learning_rate: 1.0e-05
85
+ differential_learning_rate_layers:
86
+ - classification_head
87
+ drop_last_batch: true
88
+ epochs: 1
89
+ evaluate_before_training: false
90
+ evaluation_epochs: 1.0
91
+ grad_accumulation: 1
92
+ gradient_clip: 0.0
93
+ learning_rate: 0.0001
94
+ lora: true
95
+ lora_alpha: 16
96
+ lora_dropout: 0.05
97
+ lora_r: 4
98
+ lora_target_modules: ''
99
+ loss_function: BinaryCrossEntropyLoss
100
+ optimizer: AdamW
101
+ save_best_checkpoint: false
102
+ schedule: Cosine
103
+ train_validation_data: false
104
+ warmup_epochs: 0.0
105
+ weight_decay: 0.0