Upload folder using huggingface_hub
Browse files- .ipynb_checkpoints/ort_config-checkpoint.json +37 -0
- added_tokens.json +3 -0
- config.json +42 -0
- model.onnx +3 -0
- ort_config.json +37 -0
- special_tokens_map.json +51 -0
- spm.model +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +62 -0
.ipynb_checkpoints/ort_config-checkpoint.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"one_external_file": true,
|
| 3 |
+
"opset": null,
|
| 4 |
+
"optimization": {
|
| 5 |
+
"disable_attention": null,
|
| 6 |
+
"disable_attention_fusion": false,
|
| 7 |
+
"disable_bias_gelu": null,
|
| 8 |
+
"disable_bias_gelu_fusion": false,
|
| 9 |
+
"disable_bias_skip_layer_norm": null,
|
| 10 |
+
"disable_bias_skip_layer_norm_fusion": false,
|
| 11 |
+
"disable_embed_layer_norm": true,
|
| 12 |
+
"disable_embed_layer_norm_fusion": true,
|
| 13 |
+
"disable_gelu": null,
|
| 14 |
+
"disable_gelu_fusion": false,
|
| 15 |
+
"disable_group_norm_fusion": true,
|
| 16 |
+
"disable_layer_norm": null,
|
| 17 |
+
"disable_layer_norm_fusion": false,
|
| 18 |
+
"disable_packed_kv": true,
|
| 19 |
+
"disable_rotary_embeddings": false,
|
| 20 |
+
"disable_shape_inference": true,
|
| 21 |
+
"disable_skip_layer_norm": null,
|
| 22 |
+
"disable_skip_layer_norm_fusion": false,
|
| 23 |
+
"enable_gelu_approximation": true,
|
| 24 |
+
"enable_gemm_fast_gelu_fusion": false,
|
| 25 |
+
"enable_transformers_specific_optimizations": true,
|
| 26 |
+
"fp16": true,
|
| 27 |
+
"no_attention_mask": false,
|
| 28 |
+
"optimization_level": 2,
|
| 29 |
+
"optimize_for_gpu": true,
|
| 30 |
+
"optimize_with_onnxruntime_only": null,
|
| 31 |
+
"use_mask_index": false,
|
| 32 |
+
"use_multi_head_attention": false,
|
| 33 |
+
"use_raw_attention_mask": false
|
| 34 |
+
},
|
| 35 |
+
"quantization": {},
|
| 36 |
+
"use_external_data_format": false
|
| 37 |
+
}
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"[MASK]": 128000
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "deberta-v3-base-prompt-injection-v2-O4",
|
| 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": "SAFE",
|
| 12 |
+
"1": "INJECTION"
|
| 13 |
+
},
|
| 14 |
+
"initializer_range": 0.02,
|
| 15 |
+
"intermediate_size": 3072,
|
| 16 |
+
"label2id": {
|
| 17 |
+
"INJECTION": 1,
|
| 18 |
+
"SAFE": 0
|
| 19 |
+
},
|
| 20 |
+
"layer_norm_eps": 1e-07,
|
| 21 |
+
"max_position_embeddings": 512,
|
| 22 |
+
"max_relative_positions": -1,
|
| 23 |
+
"model_type": "deberta-v2",
|
| 24 |
+
"norm_rel_ebd": "layer_norm",
|
| 25 |
+
"num_attention_heads": 12,
|
| 26 |
+
"num_hidden_layers": 12,
|
| 27 |
+
"pad_token_id": 0,
|
| 28 |
+
"pooler_dropout": 0,
|
| 29 |
+
"pooler_hidden_act": "gelu",
|
| 30 |
+
"pooler_hidden_size": 768,
|
| 31 |
+
"pos_att_type": [
|
| 32 |
+
"p2c",
|
| 33 |
+
"c2p"
|
| 34 |
+
],
|
| 35 |
+
"position_biased_input": false,
|
| 36 |
+
"position_buckets": 256,
|
| 37 |
+
"relative_attention": true,
|
| 38 |
+
"share_att_key": true,
|
| 39 |
+
"transformers_version": "4.44.2",
|
| 40 |
+
"type_vocab_size": 0,
|
| 41 |
+
"vocab_size": 128100
|
| 42 |
+
}
|
model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f91b7709a49dfe9d240f0a4ffbb1bc58aaeeffaaf6c66e71f7c7cc6e6f3609c
|
| 3 |
+
size 387557163
|
ort_config.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"one_external_file": true,
|
| 3 |
+
"opset": null,
|
| 4 |
+
"optimization": {
|
| 5 |
+
"disable_attention": null,
|
| 6 |
+
"disable_attention_fusion": false,
|
| 7 |
+
"disable_bias_gelu": null,
|
| 8 |
+
"disable_bias_gelu_fusion": false,
|
| 9 |
+
"disable_bias_skip_layer_norm": null,
|
| 10 |
+
"disable_bias_skip_layer_norm_fusion": false,
|
| 11 |
+
"disable_embed_layer_norm": true,
|
| 12 |
+
"disable_embed_layer_norm_fusion": true,
|
| 13 |
+
"disable_gelu": null,
|
| 14 |
+
"disable_gelu_fusion": false,
|
| 15 |
+
"disable_group_norm_fusion": true,
|
| 16 |
+
"disable_layer_norm": null,
|
| 17 |
+
"disable_layer_norm_fusion": false,
|
| 18 |
+
"disable_packed_kv": true,
|
| 19 |
+
"disable_rotary_embeddings": false,
|
| 20 |
+
"disable_shape_inference": true,
|
| 21 |
+
"disable_skip_layer_norm": null,
|
| 22 |
+
"disable_skip_layer_norm_fusion": false,
|
| 23 |
+
"enable_gelu_approximation": true,
|
| 24 |
+
"enable_gemm_fast_gelu_fusion": false,
|
| 25 |
+
"enable_transformers_specific_optimizations": true,
|
| 26 |
+
"fp16": true,
|
| 27 |
+
"no_attention_mask": false,
|
| 28 |
+
"optimization_level": 2,
|
| 29 |
+
"optimize_for_gpu": true,
|
| 30 |
+
"optimize_with_onnxruntime_only": null,
|
| 31 |
+
"use_mask_index": false,
|
| 32 |
+
"use_multi_head_attention": false,
|
| 33 |
+
"use_raw_attention_mask": false
|
| 34 |
+
},
|
| 35 |
+
"quantization": {},
|
| 36 |
+
"use_external_data_format": false
|
| 37 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "[CLS]",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "[CLS]",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "[SEP]",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "[MASK]",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "[PAD]",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "[SEP]",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "[UNK]",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
spm.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
|
| 3 |
+
size 2464616
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "[PAD]",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"1": {
|
| 12 |
+
"content": "[CLS]",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"2": {
|
| 20 |
+
"content": "[SEP]",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"3": {
|
| 28 |
+
"content": "[UNK]",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": true,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"128000": {
|
| 36 |
+
"content": "[MASK]",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
"bos_token": "[CLS]",
|
| 45 |
+
"clean_up_tokenization_spaces": true,
|
| 46 |
+
"cls_token": "[CLS]",
|
| 47 |
+
"do_lower_case": false,
|
| 48 |
+
"eos_token": "[SEP]",
|
| 49 |
+
"mask_token": "[MASK]",
|
| 50 |
+
"max_length": 512,
|
| 51 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 52 |
+
"pad_token": "[PAD]",
|
| 53 |
+
"sep_token": "[SEP]",
|
| 54 |
+
"sp_model_kwargs": {},
|
| 55 |
+
"split_by_punct": false,
|
| 56 |
+
"stride": 0,
|
| 57 |
+
"tokenizer_class": "DebertaV2Tokenizer",
|
| 58 |
+
"truncation_side": "right",
|
| 59 |
+
"truncation_strategy": "longest_first",
|
| 60 |
+
"unk_token": "[UNK]",
|
| 61 |
+
"vocab_type": "spm"
|
| 62 |
+
}
|