Cippppy commited on
Commit
1c4c3bc
1 Parent(s): 3d6849f

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -10,10 +10,18 @@
10
  "hidden_act": "relu",
11
  "hidden_dropout_prob": 0.0,
12
  "hidden_size": 512,
 
 
 
 
13
  "initializer_range": 0.02,
14
  "intermediate_size": 512,
15
  "intra_bottleneck_size": 128,
16
  "key_query_shared_bottleneck": true,
 
 
 
 
17
  "layer_norm_eps": 1e-12,
18
  "max_position_embeddings": 512,
19
  "model_type": "mobilebert",
 
10
  "hidden_act": "relu",
11
  "hidden_dropout_prob": 0.0,
12
  "hidden_size": 512,
13
+ "id2label": {
14
+ "0": "NEGATIVE",
15
+ "1": "POSITIVE"
16
+ },
17
  "initializer_range": 0.02,
18
  "intermediate_size": 512,
19
  "intra_bottleneck_size": 128,
20
  "key_query_shared_bottleneck": true,
21
+ "label2id": {
22
+ "NEGATIVE": 0,
23
+ "POSITIVE": 1
24
+ },
25
  "layer_norm_eps": 1e-12,
26
  "max_position_embeddings": 512,
27
  "model_type": "mobilebert",
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:11b472cc574a00567fc1faec82c33099636cc694632d38650fb1b30234eadc51
3
  size 98470112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a63f02037971bbdeb1d276c31e1d3ca6cab4dbcbbca198036bbdb0eddc96f192
3
  size 98470112
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": 1000000000000000019884624838656,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "MobileBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8ee4edd55c68fd76e57d3fcd0028ffc65ddc1d568b37f68508aa491c24d87f9c
3
  size 4728
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d11e51a9b39ec6941e38e49b776acd54d747dd1606c49642716bafad47ce66d
3
  size 4728
vocab.txt ADDED
The diff for this file is too large to render. See raw diff