SundayNwovu commited on
Commit
f9bf9b5
·
1 Parent(s): b59d040

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +28 -1
config.json CHANGED
@@ -15,5 +15,32 @@
15
  "num_hidden_layers": 12,
16
  "pad_token_id": 0,
17
  "type_vocab_size": 2,
18
- "vocab_size": 30522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
 
15
  "num_hidden_layers": 12,
16
  "pad_token_id": 0,
17
  "type_vocab_size": 2,
18
+ "vocab_size": 30522,
19
+ "adapter_config": {
20
+ "adapter_type": "lora",
21
+ "quantization": {
22
+ "bits": 4
23
+ }
24
+ },
25
+ "quantization_config": {
26
+ "bits": 4
27
+ },
28
+ "temperature": 0.04,
29
+ "max_new_tokens": 100,
30
+ "trainer": {
31
+ "type": "finetune",
32
+ "epochs": 6,
33
+ "batch_size": 1,
34
+ "eval_batch_size": 2,
35
+ "gradient_accumulation_steps": 16,
36
+ "learning_rate": 0.001,
37
+ "learning_rate_scheduler": {
38
+ "decay": "cosine"
39
+ }
40
+ },
41
+ "text_defaults": {
42
+ "preprocessing": {
43
+ "max_sequence_length": 256
44
+ }
45
+ }
46
  }