Update config.json
Browse files- config.json +22 -1
config.json
CHANGED
|
@@ -1 +1,22 @@
|
|
| 1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "deberta",
|
| 3 |
+
"architectures": ["CustomDebertaClassifier"],
|
| 4 |
+
"num_labels": 19,
|
| 5 |
+
"hidden_size": 768,
|
| 6 |
+
"intermediate_size": 3072,
|
| 7 |
+
"max_position_embeddings": 512,
|
| 8 |
+
"hidden_act": "gelu",
|
| 9 |
+
"hidden_dropout_prob": 0.3,
|
| 10 |
+
"attention_probs_dropout_prob": 0.1,
|
| 11 |
+
"layer_norm_eps": 1e-7,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"vocab_size": 128100,
|
| 14 |
+
"position_buckets": 512,
|
| 15 |
+
"rel_pos_bins": 512,
|
| 16 |
+
"position_embeddings_type": "relative_key",
|
| 17 |
+
"base_model": "microsoft/deberta-v3-base",
|
| 18 |
+
"classifier_dropout": 0.3,
|
| 19 |
+
"output_hidden_states": false,
|
| 20 |
+
"output_attentions": false,
|
| 21 |
+
"use_return_dict": true
|
| 22 |
+
}
|