Sifal commited on
Commit
177823a
1 Parent(s): dc05782

Upload tokenizer

Browse files
Files changed (5) hide show
  1. README.md +10 -10
  2. special_tokens_map.json +7 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +55 -0
  5. vocab.txt +0 -0
README.md CHANGED
@@ -1,6 +1,5 @@
1
  ---
2
  license: apache-2.0
3
- base_model: bert-large-uncased
4
  tags:
5
  - generated_from_trainer
6
  datasets:
@@ -10,12 +9,13 @@ metrics:
10
  - f1
11
  - precision
12
  - recall
 
13
  model-index:
14
  - name: trainer
15
  results:
16
  - task:
17
- name: Text Classification
18
  type: text-classification
 
19
  dataset:
20
  name: glue
21
  type: glue
@@ -23,18 +23,18 @@ model-index:
23
  split: validation
24
  args: cola
25
  metrics:
26
- - name: Accuracy
27
- type: accuracy
28
  value: 0.8465963566634708
29
- - name: F1
30
- type: f1
31
  value: 0.8064540073113251
32
- - name: Precision
33
- type: precision
34
  value: 0.840606542828289
35
- - name: Recall
36
- type: recall
37
  value: 0.7876439727431708
 
38
  ---
39
 
40
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
1
  ---
2
  license: apache-2.0
 
3
  tags:
4
  - generated_from_trainer
5
  datasets:
 
9
  - f1
10
  - precision
11
  - recall
12
+ base_model: bert-large-uncased
13
  model-index:
14
  - name: trainer
15
  results:
16
  - task:
 
17
  type: text-classification
18
+ name: Text Classification
19
  dataset:
20
  name: glue
21
  type: glue
 
23
  split: validation
24
  args: cola
25
  metrics:
26
+ - type: accuracy
 
27
  value: 0.8465963566634708
28
+ name: Accuracy
29
+ - type: f1
30
  value: 0.8064540073113251
31
+ name: F1
32
+ - type: precision
33
  value: 0.840606542828289
34
+ name: Precision
35
+ - type: recall
36
  value: 0.7876439727431708
37
+ name: Recall
38
  ---
39
 
40
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff