Sharpaxis commited on
Commit
047068c
·
verified ·
1 Parent(s): 13f9e76

Upload tokenizer

Browse files
Files changed (5) hide show
  1. README.md +3 -3
  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
@@ -12,8 +12,8 @@ model-index:
12
  - name: Finance_DistilBERT_sentiment
13
  results:
14
  - task:
15
- name: Text Classification
16
  type: text-classification
 
17
  dataset:
18
  name: financial_phrasebank
19
  type: financial_phrasebank
@@ -21,9 +21,9 @@ model-index:
21
  split: train
22
  args: sentences_75agree
23
  metrics:
24
- - name: F1
25
- type: f1
26
  value: 0.9101001493367561
 
27
  ---
28
 
29
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
12
  - name: Finance_DistilBERT_sentiment
13
  results:
14
  - task:
 
15
  type: text-classification
16
+ name: Text Classification
17
  dataset:
18
  name: financial_phrasebank
19
  type: financial_phrasebank
 
21
  split: train
22
  args: sentences_75agree
23
  metrics:
24
+ - type: f1
 
25
  value: 0.9101001493367561
26
+ name: F1
27
  ---
28
 
29
  <!-- 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": false,
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": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff