dmilush commited on
Commit
42c7ef5
·
verified ·
1 Parent(s): c59310b

Upload folder using huggingface_hub

Browse files
calibrated_thresholds.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "0.001": {
3
+ "threshold": 0.9997545523643494,
4
+ "tpr": 0.9521968365553602,
5
+ "fpr_target": 0.001
6
+ },
7
+ "0.005": {
8
+ "threshold": 0.9695353005826474,
9
+ "tpr": 0.9813708260105448,
10
+ "fpr_target": 0.005
11
+ },
12
+ "0.01": {
13
+ "threshold": 0.12387542909383768,
14
+ "tpr": 0.9880492091388401,
15
+ "fpr_target": 0.01
16
+ },
17
+ "0.05": {
18
+ "threshold": 0.002375577176280785,
19
+ "tpr": 0.9964850615114236,
20
+ "fpr_target": 0.05
21
+ }
22
+ }
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DebertaV2ForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": null,
7
+ "dtype": "float32",
8
+ "eos_token_id": null,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "layer_norm_eps": 1e-07,
15
+ "legacy": true,
16
+ "max_position_embeddings": 512,
17
+ "max_relative_positions": -1,
18
+ "model_type": "deberta-v2",
19
+ "norm_rel_ebd": "layer_norm",
20
+ "num_attention_heads": 12,
21
+ "num_hidden_layers": 12,
22
+ "pad_token_id": 0,
23
+ "pooler_dropout": 0,
24
+ "pooler_hidden_act": "gelu",
25
+ "pooler_hidden_size": 768,
26
+ "pos_att_type": [
27
+ "p2c",
28
+ "c2p"
29
+ ],
30
+ "position_biased_input": false,
31
+ "position_buckets": 256,
32
+ "problem_type": "single_label_classification",
33
+ "relative_attention": true,
34
+ "share_att_key": true,
35
+ "tie_word_embeddings": true,
36
+ "transformers_version": "5.2.0",
37
+ "type_vocab_size": 0,
38
+ "use_cache": false,
39
+ "vocab_size": 128100
40
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95729650ba6a8211ee931335e3ada1be46af3e98b6ec6a757f9f40a87fc344cd
3
+ size 737719248
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "backend": "tokenizers",
4
+ "bos_token": "[CLS]",
5
+ "cls_token": "[CLS]",
6
+ "do_lower_case": false,
7
+ "eos_token": "[SEP]",
8
+ "extra_special_tokens": [
9
+ "[PAD]",
10
+ "[CLS]",
11
+ "[SEP]"
12
+ ],
13
+ "is_local": false,
14
+ "mask_token": "[MASK]",
15
+ "model_max_length": 1000000000000000019884624838656,
16
+ "pad_token": "[PAD]",
17
+ "sep_token": "[SEP]",
18
+ "split_by_punct": false,
19
+ "tokenizer_class": "DebertaV2Tokenizer",
20
+ "unk_id": 3,
21
+ "unk_token": "[UNK]",
22
+ "vocab_type": "spm"
23
+ }