Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +43 -0
- pytorch_model.bin +3 -0
- runs/Jun13_14-32-42_a30db051be23/1655130773.5423882/events.out.tfevents.1655130773.a30db051be23.71.1 +3 -0
- runs/Jun13_14-32-42_a30db051be23/1655130875.4529006/events.out.tfevents.1655130875.a30db051be23.71.3 +3 -0
- runs/Jun13_14-32-42_a30db051be23/events.out.tfevents.1655130773.a30db051be23.71.0 +3 -0
- runs/Jun13_14-32-42_a30db051be23/events.out.tfevents.1655130875.a30db051be23.71.2 +3 -0
- runs/Jun13_14-49-07_a30db051be23/1655131756.536548/events.out.tfevents.1655131756.a30db051be23.71.5 +3 -0
- runs/Jun13_14-49-07_a30db051be23/1655131892.4088392/events.out.tfevents.1655131892.a30db051be23.71.7 +3 -0
- runs/Jun13_14-49-07_a30db051be23/1655132214.537838/events.out.tfevents.1655132214.a30db051be23.71.8 +3 -0
- runs/Jun13_14-49-07_a30db051be23/events.out.tfevents.1655131756.a30db051be23.71.4 +3 -0
- runs/Jun13_14-49-07_a30db051be23/events.out.tfevents.1655131892.a30db051be23.71.6 +3 -0
- runs/Jun13_14-58-11_a30db051be23/1655132300.4507105/events.out.tfevents.1655132300.a30db051be23.71.10 +3 -0
- runs/Jun13_14-58-11_a30db051be23/events.out.tfevents.1655132300.a30db051be23.71.9 +3 -0
- runs/Jun13_14-58-29_a30db051be23/1655132316.177574/events.out.tfevents.1655132316.a30db051be23.71.12 +3 -0
- runs/Jun13_14-58-29_a30db051be23/1655132334.414546/events.out.tfevents.1655132334.a30db051be23.71.14 +3 -0
- runs/Jun13_14-58-29_a30db051be23/events.out.tfevents.1655132316.a30db051be23.71.11 +3 -0
- runs/Jun13_14-58-29_a30db051be23/events.out.tfevents.1655132334.a30db051be23.71.13 +3 -0
- runs/Jun13_14-59-05_a30db051be23/1655132354.7267978/events.out.tfevents.1655132354.a30db051be23.71.16 +3 -0
- runs/Jun13_14-59-05_a30db051be23/events.out.tfevents.1655132354.a30db051be23.71.15 +3 -0
- runs/Jun13_14-59-23_a30db051be23/1655132371.4835234/events.out.tfevents.1655132371.a30db051be23.71.18 +3 -0
- runs/Jun13_14-59-23_a30db051be23/events.out.tfevents.1655132371.a30db051be23.71.17 +3 -0
- runs/Jun13_14-59-38_a30db051be23/1655132390.0797453/events.out.tfevents.1655132390.a30db051be23.71.20 +3 -0
- runs/Jun13_14-59-38_a30db051be23/1655132416.294792/events.out.tfevents.1655132416.a30db051be23.71.22 +3 -0
- runs/Jun13_14-59-38_a30db051be23/events.out.tfevents.1655132390.a30db051be23.71.19 +3 -0
- runs/Jun13_14-59-38_a30db051be23/events.out.tfevents.1655132416.a30db051be23.71.21 +3 -0
- runs/Jun13_15-02-17_a30db051be23/1655133094.2311091/events.out.tfevents.1655133094.a30db051be23.928.1 +3 -0
- runs/Jun13_15-02-17_a30db051be23/events.out.tfevents.1655133094.a30db051be23.928.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,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-cased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"gradient_checkpointing": false,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.1,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "LABEL_0",
|
14 |
+
"1": "LABEL_1",
|
15 |
+
"2": "LABEL_2",
|
16 |
+
"3": "LABEL_3",
|
17 |
+
"4": "LABEL_4",
|
18 |
+
"5": "LABEL_5"
|
19 |
+
},
|
20 |
+
"initializer_range": 0.02,
|
21 |
+
"intermediate_size": 3072,
|
22 |
+
"label2id": {
|
23 |
+
"LABEL_0": 0,
|
24 |
+
"LABEL_1": 1,
|
25 |
+
"LABEL_2": 2,
|
26 |
+
"LABEL_3": 3,
|
27 |
+
"LABEL_4": 4,
|
28 |
+
"LABEL_5": 5
|
29 |
+
},
|
30 |
+
"layer_norm_eps": 1e-12,
|
31 |
+
"max_position_embeddings": 512,
|
32 |
+
"model_type": "bert",
|
33 |
+
"num_attention_heads": 12,
|
34 |
+
"num_hidden_layers": 12,
|
35 |
+
"pad_token_id": 0,
|
36 |
+
"position_embedding_type": "absolute",
|
37 |
+
"problem_type": "single_label_classification",
|
38 |
+
"torch_dtype": "float32",
|
39 |
+
"transformers_version": "4.19.4",
|
40 |
+
"type_vocab_size": 2,
|
41 |
+
"use_cache": true,
|
42 |
+
"vocab_size": 28996
|
43 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc9b8bda00158a09e3c12ada1c8e7bd2fbc848c9b5b90ae3f29908b9c91e25bb
|
3 |
+
size 433330541
|
runs/Jun13_14-32-42_a30db051be23/1655130773.5423882/events.out.tfevents.1655130773.a30db051be23.71.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d49414aa992a9b0730e5d59a62b862d55edf5d4a8b5d1685255c3328a6b4bc7
|
3 |
+
size 5175
|
runs/Jun13_14-32-42_a30db051be23/1655130875.4529006/events.out.tfevents.1655130875.a30db051be23.71.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fe9ce0e6d6772630930ed6edf59d49c637e3fd0007f3b6b0b98920d9b04e501
|
3 |
+
size 5175
|
runs/Jun13_14-32-42_a30db051be23/events.out.tfevents.1655130773.a30db051be23.71.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:770102637312dd493896723cd3126ebda7b3debe8108955be4930b3c77f7ccde
|
3 |
+
size 3789
|
runs/Jun13_14-32-42_a30db051be23/events.out.tfevents.1655130875.a30db051be23.71.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8c3a305421b1bc180cbb9e6efabc5c53fd0ccb28d3668ae93fdbf3e1f2f8413
|
3 |
+
size 3789
|
runs/Jun13_14-49-07_a30db051be23/1655131756.536548/events.out.tfevents.1655131756.a30db051be23.71.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1677bef3ac5a3fd89f63e9cf3997787ae748f7fb8305af39e1b37aca016adaba
|
3 |
+
size 5175
|
runs/Jun13_14-49-07_a30db051be23/1655131892.4088392/events.out.tfevents.1655131892.a30db051be23.71.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3e8e6da24303d32e068d637b7643840ee6236e8e415149ff6c73d67417c7575
|
3 |
+
size 5175
|
runs/Jun13_14-49-07_a30db051be23/1655132214.537838/events.out.tfevents.1655132214.a30db051be23.71.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2a19e8c6416ad313fdab907688dba3e5b65e8211d7837c850c2b8270e8f274c
|
3 |
+
size 5175
|
runs/Jun13_14-49-07_a30db051be23/events.out.tfevents.1655131756.a30db051be23.71.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f20e46a87499857ef5363e678c40527b372a09c3ad3fdc6fde50fd0f70fa3f60
|
3 |
+
size 3787
|
runs/Jun13_14-49-07_a30db051be23/events.out.tfevents.1655131892.a30db051be23.71.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bd9114792caf8421084af84de3f9ff7cc5859c825899a8639f3e4d82cbb2662
|
3 |
+
size 7534
|
runs/Jun13_14-58-11_a30db051be23/1655132300.4507105/events.out.tfevents.1655132300.a30db051be23.71.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bc5f773d4ebd61f66cfd38792e0aca110465ca06d62cbf8b4187479fcb90c42
|
3 |
+
size 5175
|
runs/Jun13_14-58-11_a30db051be23/events.out.tfevents.1655132300.a30db051be23.71.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0138d5a427bbb56dda09191942b256284f96e1eebb3910b0940ee26ce1c8093
|
3 |
+
size 3787
|
runs/Jun13_14-58-29_a30db051be23/1655132316.177574/events.out.tfevents.1655132316.a30db051be23.71.12
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d3f57e6c9f2a0f762ad8c46251874efd741acc04eb3b57428546ce16cf25609
|
3 |
+
size 5175
|
runs/Jun13_14-58-29_a30db051be23/1655132334.414546/events.out.tfevents.1655132334.a30db051be23.71.14
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f964eabc79077df73583a33cf88156c22a944a84a9b65fb8052262038ed79a6c
|
3 |
+
size 5175
|
runs/Jun13_14-58-29_a30db051be23/events.out.tfevents.1655132316.a30db051be23.71.11
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6228008c0afccc06f27a74e3e3633fe16ebe00bf43680cfd832cb2661054fa79
|
3 |
+
size 3788
|
runs/Jun13_14-58-29_a30db051be23/events.out.tfevents.1655132334.a30db051be23.71.13
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8966529d8715c736120b55a515bb844fbbf63c4bdd60069edf2244d64af1b4c0
|
3 |
+
size 3788
|
runs/Jun13_14-59-05_a30db051be23/1655132354.7267978/events.out.tfevents.1655132354.a30db051be23.71.16
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a46f22547325bc8b5306c6f1deaa09348453a10582e0584c55259c4c8c09716
|
3 |
+
size 5175
|
runs/Jun13_14-59-05_a30db051be23/events.out.tfevents.1655132354.a30db051be23.71.15
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71799f57a738302de47af9c77c614eebc5dc061f4dccea21c13b7cbeeebe3baa
|
3 |
+
size 3786
|
runs/Jun13_14-59-23_a30db051be23/1655132371.4835234/events.out.tfevents.1655132371.a30db051be23.71.18
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91a4777d10f62667c765ff8f21dc426d09b41b54d137885e9ff842c10be7a67c
|
3 |
+
size 5175
|
runs/Jun13_14-59-23_a30db051be23/events.out.tfevents.1655132371.a30db051be23.71.17
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9d1d6930803ac692a28ed93ccfc4206f8db9edf7f3073d8acb447145262426a2
|
3 |
+
size 3786
|
runs/Jun13_14-59-38_a30db051be23/1655132390.0797453/events.out.tfevents.1655132390.a30db051be23.71.20
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0befaa6347a6536a774a6a7a92103382521746ee1a47f708d3fd4102fcd8d4ea
|
3 |
+
size 5175
|
runs/Jun13_14-59-38_a30db051be23/1655132416.294792/events.out.tfevents.1655132416.a30db051be23.71.22
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0384f4b66b1fba3c6eebac16fa9151921ec1ea3a8417aed8947606394240e43c
|
3 |
+
size 5175
|
runs/Jun13_14-59-38_a30db051be23/events.out.tfevents.1655132390.a30db051be23.71.19
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8234fa37c825efbb1df3f47489a518050accb084c8252f75c2e228fd2be62b04
|
3 |
+
size 3787
|
runs/Jun13_14-59-38_a30db051be23/events.out.tfevents.1655132416.a30db051be23.71.21
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a80fa9bc9c17b4b44d00b6d67049ee50235db01b9684cea4f09ff51417f33e3d
|
3 |
+
size 3787
|
runs/Jun13_15-02-17_a30db051be23/1655133094.2311091/events.out.tfevents.1655133094.a30db051be23.928.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13b8f56eac185b74ddc3c5bbce56681fb6e54fb63077345d387980f94bc1fa3a
|
3 |
+
size 5175
|
runs/Jun13_15-02-17_a30db051be23/events.out.tfevents.1655133094.a30db051be23.928.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:053edbac1f05ce0d90e9889f29a38564527c59b3451158acddd5c611faca4c1a
|
3 |
+
size 40
|
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-cased", "tokenizer_class": "BertTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef08a385e05f14cdf61a6d4f590275fb07f2afd3fe360ac86a492d3670984d36
|
3 |
+
size 3183
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|