Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +44 -0
- pytorch_model.bin +3 -0
- runs/Jun04_09-16-42_46e815022ed7/1654334235.7249956/events.out.tfevents.1654334235.46e815022ed7.86.1 +3 -0
- runs/Jun04_09-16-42_46e815022ed7/events.out.tfevents.1654334235.46e815022ed7.86.0 +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/content/gdrive/MyDrive/0531_tinybert/tinybert_model",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"cell": {},
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"emb_size": 312,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 312,
|
13 |
+
"id2label": {
|
14 |
+
"0": "NORM",
|
15 |
+
"1": "COMMA",
|
16 |
+
"2": "PERIOD",
|
17 |
+
"3": "QUEST_MARK",
|
18 |
+
"4": "EXCLAMATION"
|
19 |
+
},
|
20 |
+
"initializer_range": 0.02,
|
21 |
+
"intermediate_size": 1200,
|
22 |
+
"label2id": {
|
23 |
+
"COMMA": "1",
|
24 |
+
"EXCLAMATION": "4",
|
25 |
+
"NORM": "0",
|
26 |
+
"PERIOD": "2",
|
27 |
+
"QUEST_MARK": "3"
|
28 |
+
},
|
29 |
+
"layer_norm_eps": 1e-12,
|
30 |
+
"max_position_embeddings": 512,
|
31 |
+
"model_type": "bert",
|
32 |
+
"num_attention_heads": 12,
|
33 |
+
"num_hidden_layers": 4,
|
34 |
+
"pad_token_id": 0,
|
35 |
+
"position_embedding_type": "absolute",
|
36 |
+
"pre_trained": "",
|
37 |
+
"structure": [],
|
38 |
+
"torch_dtype": "float32",
|
39 |
+
"training": "",
|
40 |
+
"transformers_version": "4.19.2",
|
41 |
+
"type_vocab_size": 2,
|
42 |
+
"use_cache": true,
|
43 |
+
"vocab_size": 21128
|
44 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5ed60aa621647466295c6a335f532e0543ae99483191992b3766bc45e33b2f76
|
3 |
+
size 45319309
|
runs/Jun04_09-16-42_46e815022ed7/1654334235.7249956/events.out.tfevents.1654334235.46e815022ed7.86.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e14385469f78592b295a9b8e84e910159f4bcfec88d93539ac34945662952d8e
|
3 |
+
size 5136
|
runs/Jun04_09-16-42_46e815022ed7/events.out.tfevents.1654334235.46e815022ed7.86.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f106ee1bc24aee958b29bc2b8a74bd464b5fbaa18076937fffb3d87b7d0ae96f
|
3 |
+
size 3925
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "special_tokens_map_file": null, "name_or_path": "/content/gdrive/MyDrive/0531_tinybert/tinybert_model/", "do_basic_tokenize": true, "never_split": null, "tokenizer_class": "BertTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41b73f6574bdcac0da5bf716f6a3b2e6c69185a07eac45d14e72ec38f7e445e7
|
3 |
+
size 3183
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|