jabo commited on
Commit
8c104bc
·
verified ·
1 Parent(s): cc18c35

Upload TextClassificationPipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
adapter_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
- "base_model_name_or_path": "FacebookAI/roberta-large",
5
  "bias": "none",
6
  "corda_config": null,
7
  "eva_config": null,
@@ -30,8 +30,8 @@
30
  "rank_pattern": {},
31
  "revision": null,
32
  "target_modules": [
33
- "query",
34
  "value",
 
35
  "key"
36
  ],
37
  "target_parameters": null,
 
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
+ "base_model_name_or_path": "FacebookAI/xlm-roberta-large",
5
  "bias": "none",
6
  "corda_config": null,
7
  "eva_config": null,
 
30
  "rank_pattern": {},
31
  "revision": null,
32
  "target_modules": [
 
33
  "value",
34
+ "query",
35
  "key"
36
  ],
37
  "target_parameters": null,
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2cf45c84fc36baa22efc9a348851ceac6eb31d6ab06e30824c512be86a4c9a75
3
  size 13673432
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab494194c865dd24b390cf4e09904b8f82bb24dfc5a2d7e8673c299b8090893d
3
  size 13673432
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,10 +1,9 @@
1
  {
2
- "add_prefix_space": false,
3
  "added_tokens_decoder": {
4
  "0": {
5
  "content": "<s>",
6
  "lstrip": false,
7
- "normalized": true,
8
  "rstrip": false,
9
  "single_word": false,
10
  "special": true
@@ -12,7 +11,7 @@
12
  "1": {
13
  "content": "<pad>",
14
  "lstrip": false,
15
- "normalized": true,
16
  "rstrip": false,
17
  "single_word": false,
18
  "special": true
@@ -20,7 +19,7 @@
20
  "2": {
21
  "content": "</s>",
22
  "lstrip": false,
23
- "normalized": true,
24
  "rstrip": false,
25
  "single_word": false,
26
  "special": true
@@ -28,12 +27,12 @@
28
  "3": {
29
  "content": "<unk>",
30
  "lstrip": false,
31
- "normalized": true,
32
  "rstrip": false,
33
  "single_word": false,
34
  "special": true
35
  },
36
- "50264": {
37
  "content": "<mask>",
38
  "lstrip": true,
39
  "normalized": false,
@@ -46,7 +45,6 @@
46
  "clean_up_tokenization_spaces": false,
47
  "cls_token": "<s>",
48
  "eos_token": "</s>",
49
- "errors": "replace",
50
  "extra_special_tokens": {},
51
  "mask_token": "<mask>",
52
  "max_length": 512,
@@ -54,8 +52,7 @@
54
  "pad_token": "<pad>",
55
  "padding": "max_length",
56
  "sep_token": "</s>",
57
- "tokenizer_class": "RobertaTokenizer",
58
- "trim_offsets": true,
59
  "truncation": true,
60
  "unk_token": "<unk>"
61
  }
 
1
  {
 
2
  "added_tokens_decoder": {
3
  "0": {
4
  "content": "<s>",
5
  "lstrip": false,
6
+ "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
 
11
  "1": {
12
  "content": "<pad>",
13
  "lstrip": false,
14
+ "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
 
19
  "2": {
20
  "content": "</s>",
21
  "lstrip": false,
22
+ "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
 
27
  "3": {
28
  "content": "<unk>",
29
  "lstrip": false,
30
+ "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "250001": {
36
  "content": "<mask>",
37
  "lstrip": true,
38
  "normalized": false,
 
45
  "clean_up_tokenization_spaces": false,
46
  "cls_token": "<s>",
47
  "eos_token": "</s>",
 
48
  "extra_special_tokens": {},
49
  "mask_token": "<mask>",
50
  "max_length": 512,
 
52
  "pad_token": "<pad>",
53
  "padding": "max_length",
54
  "sep_token": "</s>",
55
+ "tokenizer_class": "XLMRobertaTokenizer",
 
56
  "truncation": true,
57
  "unk_token": "<unk>"
58
  }