KoichiYasuoka commited on
Commit
cf7a2f2
·
1 Parent(s): 32d94b2

initial release

Browse files
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - "zh"
4
+ tags:
5
+ - "chinese"
6
+ - "masked-lm"
7
+ - "wikipedia"
8
+ license: "cc-by-sa-4.0"
9
+ pipeline_tag: "fill-mask"
10
+ mask_token: "[MASK]"
11
+ ---
12
+
13
+ # deberta-base-chinese
14
+
15
+ ## Model Description
16
+
17
+ This is a DeBERTa(V2) model pre-trained on Chinese Wikipedia texts (both simplified and traditional). NVIDIA A100-SXM4-40GB took 52 hours 10 minutes for training. You can fine-tune `deberta-base-chinese` for downstream tasks, such as [POS-tagging](https://huggingface.co/KoichiYasuoka/deberta-base-chinese-upos), [dependency-parsing](https://huggingface.co/KoichiYasuoka/deberta-base-chinese-ud-goeswith), and so on.
18
+
19
+ ## How to Use
20
+
21
+ ```py
22
+ from transformers import AutoTokenizer,AutoModelForMaskedLM
23
+ tokenizer=AutoTokenizer.from_pretrained("KoichiYasuoka/deberta-base-chinese")
24
+ model=AutoModelForMaskedLM.from_pretrained("KoichiYasuoka/deberta-base-chinese")
25
+ ```
26
+
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DebertaV2ForMaskedLM"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "hidden_act": "gelu",
7
+ "hidden_dropout_prob": 0.1,
8
+ "hidden_size": 768,
9
+ "initializer_range": 0.02,
10
+ "intermediate_size": 3072,
11
+ "layer_norm_eps": 1e-07,
12
+ "max_position_embeddings": 512,
13
+ "max_relative_positions": -1,
14
+ "model_type": "deberta-v2",
15
+ "num_attention_heads": 12,
16
+ "num_hidden_layers": 12,
17
+ "pad_token_id": 0,
18
+ "pooler_dropout": 0,
19
+ "pooler_hidden_act": "gelu",
20
+ "pooler_hidden_size": 768,
21
+ "pos_att_type": null,
22
+ "position_biased_input": true,
23
+ "relative_attention": false,
24
+ "tokenizer_class": "BertTokenizerFast",
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.22.1",
27
+ "type_vocab_size": 0,
28
+ "vocab_size": 26582
29
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e62658c30ba60e956f8958c6c44bddc57db9dbf85b38235f040e38afbb711f47
3
+ size 426001005
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "never_split": [
8
+ "[CLS]",
9
+ "[PAD]",
10
+ "[SEP]",
11
+ "[UNK]",
12
+ "[MASK]"
13
+ ],
14
+ "pad_token": "[PAD]",
15
+ "sep_token": "[SEP]",
16
+ "strip_accents": false,
17
+ "tokenize_chinese_chars": true,
18
+ "tokenizer_class": "BertTokenizerFast",
19
+ "unk_token": "[UNK]"
20
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff