theArif commited on
Commit
c3b07c2
·
1 Parent(s): 8eadc57

Add model and tokenizer files

Browse files
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/xlm-v-base",
3
+ "architectures": [
4
+ "XLMRobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "O",
15
+ "1": "B-REDUPLICATION",
16
+ "2": "I-REDUPLICATION",
17
+ "3": "B-REPETITION",
18
+ "4": "I-REPETITION",
19
+ "5": "B-REDUPLICATION-PARTIAL",
20
+ "6": "I-REDUPLICATION-PARTIAL",
21
+ "7": "B-REPETITION-PARTIAL",
22
+ "8": "I-REPETITION-PARTIAL",
23
+ "9": "B-SENTENCE-BOUNDARY",
24
+ "10": "I-SENTENCE-BOUNDARY"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 3072,
28
+ "label2id": {
29
+ "B-REDUPLICATION": 1,
30
+ "B-REDUPLICATION-PARTIAL": 5,
31
+ "B-REPETITION": 3,
32
+ "B-REPETITION-PARTIAL": 7,
33
+ "B-SENTENCE-BOUNDARY": 9,
34
+ "I-REDUPLICATION": 2,
35
+ "I-REDUPLICATION-PARTIAL": 6,
36
+ "I-REPETITION": 4,
37
+ "I-REPETITION-PARTIAL": 8,
38
+ "I-SENTENCE-BOUNDARY": 10,
39
+ "O": 0
40
+ },
41
+ "layer_norm_eps": 1e-05,
42
+ "max_position_embeddings": 514,
43
+ "model_type": "xlm-roberta",
44
+ "num_attention_heads": 12,
45
+ "num_hidden_layers": 12,
46
+ "pad_token_id": 1,
47
+ "position_embedding_type": "absolute",
48
+ "torch_dtype": "float32",
49
+ "transformers_version": "4.21.1",
50
+ "type_vocab_size": 1,
51
+ "use_cache": true,
52
+ "vocab_size": 901629
53
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a3372a16354a11b50eafc1568966b87cf848d0ba9c7e903e191e8a499069e2f
3
+ size 3111715249
sentencepiece.bpe.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbee9f6b1c2cba29b335e70d6088eea943c7d5ae55ac7dd17174760bf758e309
3
+ size 18241665
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
Binary file (61.3 MB). View file
 
tokenizer_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "__type": "AddedToken",
7
+ "content": "<mask>",
8
+ "lstrip": true,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "name_or_path": "facebook/xlm-v-base",
14
+ "pad_token": "<pad>",
15
+ "sep_token": "</s>",
16
+ "special_tokens_map_file": null,
17
+ "tokenizer_class": "XLMRobertaTokenizer",
18
+ "unk_token": "<unk>"
19
+ }