piccora commited on
Commit
1bf3cae
·
verified ·
1 Parent(s): 4412f0a

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +17 -1
config.json CHANGED
@@ -1 +1,17 @@
1
- {"max_length": 40, "max_samples": 50000, "batch_size": 64, "buffer_size": 20000, "num_layers": 2, "d_model": 256, "num_heads": 8, "units": 512, "dropout": 0.1, "epochs": 40}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "transformer",
3
+ "max_length": 40,
4
+ "max_samples": 50000,
5
+ "batch_size": 64,
6
+ "buffer_size": 20000,
7
+ "num_layers": 2,
8
+ "d_model": 256,
9
+ "num_heads": 8,
10
+ "units": 512,
11
+ "dropout": 0.1,
12
+ "epochs": 40,
13
+ "vocab_size": 30522, // Example vocab size; adjust as needed
14
+ "num_labels": 2, // Example for classification; adjust as needed
15
+ "activation_function": "relu",
16
+ "initializer_range": 0.02
17
+ }