RowRed commited on
Commit
fdfc80a
·
verified ·
1 Parent(s): b317f8b

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. config.json +19 -0
  2. model.safetensors +3 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +24 -0
config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/deberta-v3-xsmall",
3
+ "backbone_model": "microsoft/deberta-v3-xsmall",
4
+ "hidden_size": 384,
5
+ "num_labels": 3,
6
+ "id2label": {
7
+ "0": "L0+L1 (Easy)",
8
+ "1": "L2 (Moderate)",
9
+ "2": "L3 (Complex)"
10
+ },
11
+ "label2id": {
12
+ "L0+L1": 0,
13
+ "L2": 1,
14
+ "L3": 2
15
+ },
16
+ "model_type": "deberta-v3",
17
+ "torch_dtype": "float32",
18
+ "transformers_version": "4.46.0"
19
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa731167e94dd015942f9bcdc84c85ba96cfa73c40fe981d4470b8c16b56b5aa
3
+ size 283150516
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
+ }