Update config.json
Browse files- config.json +17 -1
config.json
CHANGED
@@ -1 +1,17 @@
|
|
1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
}
|