Commit
·
4bd627a
1
Parent(s):
8cc0219
Training in progress, step 1000
Browse files- .gitignore +1 -0
- config.json +45 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "cross-encoder/nli-deberta-v3-xsmall",
|
| 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": 384,
|
| 10 |
+
"id2label": {
|
| 11 |
+
"0": "contradiction",
|
| 12 |
+
"1": "entailment",
|
| 13 |
+
"2": "neutral"
|
| 14 |
+
},
|
| 15 |
+
"initializer_range": 0.02,
|
| 16 |
+
"intermediate_size": 1536,
|
| 17 |
+
"label2id": {
|
| 18 |
+
"contradiction": 0,
|
| 19 |
+
"entailment": 1,
|
| 20 |
+
"neutral": 2
|
| 21 |
+
},
|
| 22 |
+
"layer_norm_eps": 1e-07,
|
| 23 |
+
"max_position_embeddings": 512,
|
| 24 |
+
"max_relative_positions": -1,
|
| 25 |
+
"model_type": "deberta-v2",
|
| 26 |
+
"norm_rel_ebd": "layer_norm",
|
| 27 |
+
"num_attention_heads": 6,
|
| 28 |
+
"num_hidden_layers": 12,
|
| 29 |
+
"pad_token_id": 0,
|
| 30 |
+
"pooler_dropout": 0,
|
| 31 |
+
"pooler_hidden_act": "gelu",
|
| 32 |
+
"pooler_hidden_size": 384,
|
| 33 |
+
"pos_att_type": [
|
| 34 |
+
"p2c",
|
| 35 |
+
"c2p"
|
| 36 |
+
],
|
| 37 |
+
"position_biased_input": false,
|
| 38 |
+
"position_buckets": 256,
|
| 39 |
+
"relative_attention": true,
|
| 40 |
+
"share_att_key": true,
|
| 41 |
+
"torch_dtype": "float32",
|
| 42 |
+
"transformers_version": "4.27.4",
|
| 43 |
+
"type_vocab_size": 0,
|
| 44 |
+
"vocab_size": 128100
|
| 45 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbc7480db24718f3334e00f4eb591f2e3a3fca83e3e5c6c7ee6b5483075dc5e8
|
| 3 |
+
size 283398457
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee63ed83711fc04803089047c158e6459a87158539367e0e9c080b3f8fc132eb
|
| 3 |
+
size 3643
|