Update config.json
Browse files- config.json +11 -11
config.json
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
{
|
2 |
"model_type": "CustomModel",
|
3 |
-
"
|
4 |
-
"input_size": 512,
|
5 |
"hidden_size": 128,
|
6 |
-
"output_size":
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
|
|
15 |
}
|
|
|
1 |
{
|
2 |
"model_type": "CustomModel",
|
3 |
+
"input_size": 768,
|
|
|
4 |
"hidden_size": 128,
|
5 |
+
"output_size": 2,
|
6 |
+
"a": 0.5,
|
7 |
+
"epsilon": 0.1,
|
8 |
+
"init_weights_range": "-1 to 1",
|
9 |
+
"architecture": "Single layer linear transformation followed by Ba-inspired activation and another linear transformation.",
|
10 |
+
"activation_function": "Ba-inspired custom activation",
|
11 |
+
"num_labels": 2,
|
12 |
+
"problem_type": "Classification",
|
13 |
+
"vocab_size": 30522, // Assuming you're using a tokenizer similar to BERT's; adjust accordingly.
|
14 |
+
"_comment": "This is a custom model configuration. Some fields are specific to this custom implementation and may require custom handling code."
|
15 |
}
|