RowRed commited on
Commit
920c837
·
verified ·
1 Parent(s): 9a44212

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. config.json +21 -0
  2. pytorch_model.bin +3 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +24 -0
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/deberta-v3-base",
3
+ "backbone_model": "microsoft/deberta-v3-base",
4
+ "hidden_size": 768,
5
+ "num_labels": 4,
6
+ "id2label": {
7
+ "0": "L0-Trivial",
8
+ "1": "L1-Simple",
9
+ "2": "L2-Moderate",
10
+ "3": "L3-Complex"
11
+ },
12
+ "label2id": {
13
+ "L0-Trivial": 0,
14
+ "L1-Simple": 1,
15
+ "L2-Moderate": 2,
16
+ "L3-Complex": 3
17
+ },
18
+ "model_type": "deberta-v2",
19
+ "torch_dtype": "float32",
20
+ "transformers_version": "4.46.0"
21
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:331060f17fd572991c2668c49cac9167584ed626f78c19a99620eee5e3a5ab4e
3
+ size 736994459
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "local_files_only": false,
15
+ "mask_token": "[MASK]",
16
+ "model_max_length": 1000000000000000019884624838656,
17
+ "pad_token": "[PAD]",
18
+ "sep_token": "[SEP]",
19
+ "split_by_punct": false,
20
+ "tokenizer_class": "DebertaV2Tokenizer",
21
+ "unk_id": 3,
22
+ "unk_token": "[UNK]",
23
+ "vocab_type": "spm"
24
+ }