Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +77 -0
- pytorch_model.bin +3 -0
- runs/Jun09_09-54-29_stevenzou-pc0/1654739766.8158603/events.out.tfevents.1654739766.stevenzou-pc0.22384.1 +3 -0
- runs/Jun09_09-54-29_stevenzou-pc0/events.out.tfevents.1654739766.stevenzou-pc0.22384.0 +3 -0
- runs/Jun09_10-54-16_stevenzou-pc0/1654743269.84467/events.out.tfevents.1654743269.stevenzou-pc0.5956.1 +3 -0
- runs/Jun09_10-54-16_stevenzou-pc0/events.out.tfevents.1654743269.stevenzou-pc0.5956.0 +3 -0
- runs/Jun09_10-58-48_stevenzou-pc0/1654743540.0899103/events.out.tfevents.1654743540.stevenzou-pc0.5956.3 +3 -0
- runs/Jun09_10-58-48_stevenzou-pc0/events.out.tfevents.1654743540.stevenzou-pc0.5956.2 +3 -0
- runs/Jun09_11-00-01_stevenzou-pc0/1654743612.7332594/events.out.tfevents.1654743612.stevenzou-pc0.5956.5 +3 -0
- runs/Jun09_11-00-01_stevenzou-pc0/events.out.tfevents.1654743612.stevenzou-pc0.5956.4 +3 -0
- runs/Jun09_11-01-14_stevenzou-pc0/1654743686.4941933/events.out.tfevents.1654743686.stevenzou-pc0.5956.7 +3 -0
- runs/Jun09_11-01-14_stevenzou-pc0/events.out.tfevents.1654743686.stevenzou-pc0.5956.6 +3 -0
- runs/Jun09_11-54-17_stevenzou-pc0/1654746869.6085804/events.out.tfevents.1654746869.stevenzou-pc0.5956.9 +3 -0
- runs/Jun09_11-54-17_stevenzou-pc0/events.out.tfevents.1654746869.stevenzou-pc0.5956.8 +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,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-chinese",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"directionality": "bidi",
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.1,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "0",
|
14 |
+
"1": "B_address",
|
15 |
+
"10": "I_government",
|
16 |
+
"11": "B_movie",
|
17 |
+
"12": "I_movie",
|
18 |
+
"13": "B_name",
|
19 |
+
"14": "I_name",
|
20 |
+
"15": "B_organization",
|
21 |
+
"16": "I_organization",
|
22 |
+
"17": "B_position",
|
23 |
+
"18": "I_position",
|
24 |
+
"19": "B_scene",
|
25 |
+
"2": "I_address",
|
26 |
+
"20": "I_scene",
|
27 |
+
"3": "B_book",
|
28 |
+
"4": "I_book",
|
29 |
+
"5": "B_company",
|
30 |
+
"6": "I_company",
|
31 |
+
"7": "B_game",
|
32 |
+
"8": "I_game",
|
33 |
+
"9": "B_government"
|
34 |
+
},
|
35 |
+
"initializer_range": 0.02,
|
36 |
+
"intermediate_size": 3072,
|
37 |
+
"label2id": {
|
38 |
+
"0": 0,
|
39 |
+
"B_address": 1,
|
40 |
+
"B_book": 3,
|
41 |
+
"B_company": 5,
|
42 |
+
"B_game": 7,
|
43 |
+
"B_government": 9,
|
44 |
+
"B_movie": 11,
|
45 |
+
"B_name": 13,
|
46 |
+
"B_organization": 15,
|
47 |
+
"B_position": 17,
|
48 |
+
"B_scene": 19,
|
49 |
+
"I_address": 2,
|
50 |
+
"I_book": 4,
|
51 |
+
"I_company": 6,
|
52 |
+
"I_game": 8,
|
53 |
+
"I_government": 10,
|
54 |
+
"I_movie": 12,
|
55 |
+
"I_name": 14,
|
56 |
+
"I_organization": 16,
|
57 |
+
"I_position": 18,
|
58 |
+
"I_scene": 20
|
59 |
+
},
|
60 |
+
"layer_norm_eps": 1e-12,
|
61 |
+
"max_position_embeddings": 512,
|
62 |
+
"model_type": "bert",
|
63 |
+
"num_attention_heads": 12,
|
64 |
+
"num_hidden_layers": 12,
|
65 |
+
"pad_token_id": 0,
|
66 |
+
"pooler_fc_size": 768,
|
67 |
+
"pooler_num_attention_heads": 12,
|
68 |
+
"pooler_num_fc_layers": 3,
|
69 |
+
"pooler_size_per_head": 128,
|
70 |
+
"pooler_type": "first_token_transform",
|
71 |
+
"position_embedding_type": "absolute",
|
72 |
+
"torch_dtype": "float32",
|
73 |
+
"transformers_version": "4.19.2",
|
74 |
+
"type_vocab_size": 2,
|
75 |
+
"use_cache": true,
|
76 |
+
"vocab_size": 21128
|
77 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92beeff03ad2575820dcd097bf6859208b72bc419d5a61e09b304cfc69beddbf
|
3 |
+
size 406840433
|
runs/Jun09_09-54-29_stevenzou-pc0/1654739766.8158603/events.out.tfevents.1654739766.stevenzou-pc0.22384.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:441637df3e76c5d8975a80e704a85267941c0ee3a3161357c03a4ce69092242c
|
3 |
+
size 5188
|
runs/Jun09_09-54-29_stevenzou-pc0/events.out.tfevents.1654739766.stevenzou-pc0.22384.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4dee5871286066dfe5cf9364d589b6365d10b042e081867f2047e9285494d812
|
3 |
+
size 3824
|
runs/Jun09_10-54-16_stevenzou-pc0/1654743269.84467/events.out.tfevents.1654743269.stevenzou-pc0.5956.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:43612ae9eb8cd4ce2cf19c3d900c62f770c94872b462984f9afaffcc2a6eb5dc
|
3 |
+
size 5188
|
runs/Jun09_10-54-16_stevenzou-pc0/events.out.tfevents.1654743269.stevenzou-pc0.5956.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1b363f15f6c41dc3046acea005160bc8f6810805de57f36aafc848a72e2bf2cd
|
3 |
+
size 4716
|
runs/Jun09_10-58-48_stevenzou-pc0/1654743540.0899103/events.out.tfevents.1654743540.stevenzou-pc0.5956.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0711c0bfdf107118f0e7b4e4f149d30dd85845aef02a0f157d189144d1f8e406
|
3 |
+
size 5188
|
runs/Jun09_10-58-48_stevenzou-pc0/events.out.tfevents.1654743540.stevenzou-pc0.5956.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d5410351c7f7b001944ae69d75d5d12f7fbea273af8a6ff3b3ee1e5edb16d02c
|
3 |
+
size 4602
|
runs/Jun09_11-00-01_stevenzou-pc0/1654743612.7332594/events.out.tfevents.1654743612.stevenzou-pc0.5956.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:96eda7d564d6601a1d50942dd3aca26d39ae821a51940bd4cd4a9a06b0a8a49d
|
3 |
+
size 5188
|
runs/Jun09_11-00-01_stevenzou-pc0/events.out.tfevents.1654743612.stevenzou-pc0.5956.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8d00c6f75d34d1dfc67c69f909a72858ee478e55e1142e3b85ae0123ad8d5a0
|
3 |
+
size 4602
|
runs/Jun09_11-01-14_stevenzou-pc0/1654743686.4941933/events.out.tfevents.1654743686.stevenzou-pc0.5956.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6193415eead10f453cfb3895f955eb77ab1dea9c0b57f6ff8a6fdf1857373077
|
3 |
+
size 5188
|
runs/Jun09_11-01-14_stevenzou-pc0/events.out.tfevents.1654743686.stevenzou-pc0.5956.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3bf16d933f37f1bca9b3c791b7b593caea1fcd512df5bff11ccd9e3b2066e52
|
3 |
+
size 4916
|
runs/Jun09_11-54-17_stevenzou-pc0/1654746869.6085804/events.out.tfevents.1654746869.stevenzou-pc0.5956.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2872842d8a0bec2684603bf5ffb5072c586ff9fc1ac8af215caf9e8a4bbfcec0
|
3 |
+
size 5188
|
runs/Jun09_11-54-17_stevenzou-pc0/events.out.tfevents.1654746869.stevenzou-pc0.5956.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69c45837102399356b8c6c37356dd6be24624d6f3f6e528df6c3b6a602246767
|
3 |
+
size 5388
|
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": false, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-chinese", "tokenizer_class": "BertTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3411a96a302d805273b0062eed5addab305f8461be5e9320e64fd93dc88ad6e5
|
3 |
+
size 3247
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|