selsar commited on
Commit
e94798f
·
verified ·
1 Parent(s): be92cf1

Training in progress, epoch 1

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
best_threshold.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"best_threshold": 0.5}
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DebertaV2ForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 1,
7
+ "dtype": "float16",
8
+ "eos_token_id": 2,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "entailment",
14
+ "1": "neutral",
15
+ "2": "contradiction"
16
+ },
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 3072,
19
+ "label2id": {
20
+ "contradiction": 2,
21
+ "entailment": 0,
22
+ "neutral": 1
23
+ },
24
+ "layer_norm_eps": 1e-07,
25
+ "legacy": true,
26
+ "max_position_embeddings": 512,
27
+ "max_relative_positions": -1,
28
+ "model_type": "deberta-v2",
29
+ "norm_rel_ebd": "layer_norm",
30
+ "num_attention_heads": 12,
31
+ "num_hidden_layers": 12,
32
+ "pad_token_id": 0,
33
+ "pooler_dropout": 0,
34
+ "pooler_hidden_act": "gelu",
35
+ "pooler_hidden_size": 768,
36
+ "pos_att_type": [
37
+ "p2c",
38
+ "c2p"
39
+ ],
40
+ "position_biased_input": false,
41
+ "position_buckets": 256,
42
+ "relative_attention": true,
43
+ "share_att_key": true,
44
+ "tie_word_embeddings": true,
45
+ "transformers_version": "5.0.0",
46
+ "type_vocab_size": 0,
47
+ "use_cache": false,
48
+ "vocab_size": 251000
49
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29b8ba7c2ffae85b1a074667b8d12f632c4d023a504c84e94a456cbc767e6dd9
3
+ size 557647822
test_per_outlet_summary.csv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ outlet,support,precision_entailment,recall_entailment,f1_entailment,precision_contradiction,recall_contradiction,f1_contradiction,accuracy,macro_f1,weighted_f1
2
+ Bild,180,0.12804878048780488,0.875,0.22340425531914893,0.8125,0.08333333333333333,0.1511627906976744,0.18888888888888888,0.18728352300841167,0.16079498598053768
3
+ FAZ,188,0.25675675675675674,0.7755102040816326,0.38578680203045684,0.725,0.20863309352517986,0.3240223463687151,0.35638297872340424,0.354904574199586,0.3401205289614031
4
+ SZ,180,0.12422360248447205,0.9523809523809523,0.21978021978021978,0.9473684210526315,0.11320754716981132,0.20224719101123595,0.2111111111111111,0.21101370539572786,0.20429271103428404
5
+ Spiegel,180,0.13986013986013987,0.7407407407407407,0.23529411764705882,0.8108108108108109,0.19607843137254902,0.3157894736842105,0.2777777777777778,0.27554179566563464,0.30371517027863776
6
+ Welt,180,0.22875816993464052,0.8536585365853658,0.36082474226804123,0.7777777777777778,0.1510791366906475,0.25301204819277107,0.3111111111111111,0.30691839523040615,0.2775693840654715
7
+ Zeit,180,0.2549019607843137,0.8478260869565217,0.39195979899497485,0.7407407407407407,0.14925373134328357,0.2484472049689441,0.3277777777777778,0.32020350198195946,0.2851226456644853
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a66269b2b7b04009c9e482ef6a99accee231b6822b83e7eb6df36626b61db43a
3
+ size 16014878
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "backend": "tokenizers",
4
+ "bos_token": "[CLS]",
5
+ "clean_up_tokenization_spaces": true,
6
+ "cls_token": "[CLS]",
7
+ "do_lower_case": false,
8
+ "eos_token": "[SEP]",
9
+ "is_local": false,
10
+ "mask_token": "[MASK]",
11
+ "model_max_length": 512,
12
+ "pad_token": "[PAD]",
13
+ "sep_token": "[SEP]",
14
+ "sp_model_kwargs": {},
15
+ "split_by_punct": false,
16
+ "tokenizer_class": "DebertaV2Tokenizer",
17
+ "unk_id": 3,
18
+ "unk_token": "[UNK]",
19
+ "vocab_type": "spm"
20
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38747397f40204ef789b870a748edc5308acbfeed87cf84f7d27c55161a4e3ae
3
+ size 5265