Upload config.json with huggingface_hub
Browse files- config.json +47 -0
config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "MoritzLaurer/deberta-v3-base-zeroshot-v1",
|
3 |
+
"architectures": [
|
4 |
+
"DebertaV2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"hidden_act": "gelu",
|
8 |
+
"hidden_dropout_prob": 0.1,
|
9 |
+
"hidden_size": 768,
|
10 |
+
"id2label": {
|
11 |
+
"0": "entailment",
|
12 |
+
"1": "not_entailment"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 3072,
|
16 |
+
"label2id": {
|
17 |
+
"entailment": 0,
|
18 |
+
"not_entailment": 1
|
19 |
+
},
|
20 |
+
"layer_norm_eps": 1e-07,
|
21 |
+
"max_position_embeddings": 512,
|
22 |
+
"max_relative_positions": -1,
|
23 |
+
"model_input_names": [
|
24 |
+
"input_ids",
|
25 |
+
"attention_mask"
|
26 |
+
],
|
27 |
+
"model_type": "deberta-v2",
|
28 |
+
"norm_rel_ebd": "layer_norm",
|
29 |
+
"num_attention_heads": 12,
|
30 |
+
"num_hidden_layers": 12,
|
31 |
+
"pad_token_id": 0,
|
32 |
+
"pooler_dropout": 0,
|
33 |
+
"pooler_hidden_act": "gelu",
|
34 |
+
"pooler_hidden_size": 768,
|
35 |
+
"pos_att_type": [
|
36 |
+
"p2c",
|
37 |
+
"c2p"
|
38 |
+
],
|
39 |
+
"position_biased_input": false,
|
40 |
+
"position_buckets": 256,
|
41 |
+
"relative_attention": true,
|
42 |
+
"share_att_key": true,
|
43 |
+
"torch_dtype": "float16",
|
44 |
+
"transformers_version": "4.35.0",
|
45 |
+
"type_vocab_size": 0,
|
46 |
+
"vocab_size": 128100
|
47 |
+
}
|