PuxAI commited on
Commit
cd3d41b
·
verified ·
1 Parent(s): 81e7715

Training in progress, epoch 1

Browse files
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "[/E1]": 119548,
3
+ "[E1]": 119547
4
+ }
config.json CHANGED
@@ -4,11 +4,9 @@
4
  "DistilBertForSequenceClassification"
5
  ],
6
  "attention_dropout": 0.1,
7
- "bos_token_id": null,
8
  "dim": 768,
9
  "dropout": 0.1,
10
  "dtype": "float32",
11
- "eos_token_id": null,
12
  "hidden_dim": 3072,
13
  "id2label": {
14
  "0": "NON_PII",
@@ -30,8 +28,6 @@
30
  "seq_classif_dropout": 0.2,
31
  "sinusoidal_pos_embds": false,
32
  "tie_weights_": true,
33
- "tie_word_embeddings": true,
34
- "transformers_version": "5.3.0",
35
- "use_cache": false,
36
  "vocab_size": 119549
37
  }
 
4
  "DistilBertForSequenceClassification"
5
  ],
6
  "attention_dropout": 0.1,
 
7
  "dim": 768,
8
  "dropout": 0.1,
9
  "dtype": "float32",
 
10
  "hidden_dim": 3072,
11
  "id2label": {
12
  "0": "NON_PII",
 
28
  "seq_classif_dropout": 0.2,
29
  "sinusoidal_pos_embds": false,
30
  "tie_weights_": true,
31
+ "transformers_version": "4.56.0",
 
 
32
  "vocab_size": 119549
33
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:76c4465fb8624cc9cd898e578ca6f3399675db43b48662ac1ba283472eca5b29
3
  size 541323512
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c7d323402572abc3239c830de708d98fa4a99992b34436e66c09abe89e37ec5
3
  size 541323512
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "[E1]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ {
11
+ "content": "[/E1]",
12
+ "lstrip": false,
13
+ "normalized": false,
14
+ "rstrip": false,
15
+ "single_word": false
16
+ }
17
+ ],
18
+ "cls_token": "[CLS]",
19
+ "mask_token": "[MASK]",
20
+ "pad_token": "[PAD]",
21
+ "sep_token": "[SEP]",
22
+ "unk_token": "[UNK]"
23
+ }
tokenizer_config.json CHANGED
@@ -1,18 +1,76 @@
1
  {
2
- "backend": "tokenizers",
3
- "cls_token": "[CLS]",
4
- "do_lower_case": false,
5
- "extra_special_tokens": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  "[E1]",
7
  "[/E1]"
8
  ],
9
- "is_local": false,
 
 
 
10
  "mask_token": "[MASK]",
11
  "model_max_length": 512,
12
  "pad_token": "[PAD]",
13
  "sep_token": "[SEP]",
14
  "strip_accents": null,
15
  "tokenize_chinese_chars": true,
16
- "tokenizer_class": "BertTokenizer",
17
  "unk_token": "[UNK]"
18
  }
 
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
+ "119547": {
44
+ "content": "[E1]",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "119548": {
52
+ "content": "[/E1]",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ }
59
+ },
60
+ "additional_special_tokens": [
61
  "[E1]",
62
  "[/E1]"
63
  ],
64
+ "clean_up_tokenization_spaces": false,
65
+ "cls_token": "[CLS]",
66
+ "do_lower_case": false,
67
+ "extra_special_tokens": {},
68
  "mask_token": "[MASK]",
69
  "model_max_length": 512,
70
  "pad_token": "[PAD]",
71
  "sep_token": "[SEP]",
72
  "strip_accents": null,
73
  "tokenize_chinese_chars": true,
74
+ "tokenizer_class": "DistilBertTokenizer",
75
  "unk_token": "[UNK]"
76
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a3a0cd494c27eeaf6b6ec38699d3be62f1238c3acd0f0fecb215eeb9cba1d3fd
3
- size 5265
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84bce02998a399ce78ddea796fba6d834f7a0c05f49812681797f191f2d0182a
3
+ size 5841
vocab.txt ADDED
The diff for this file is too large to render. See raw diff