Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +27 -0
- pytorch_model.bin +3 -0
- runs/Jun27_20-52-06_480cfde9fa8e/events.out.tfevents.1687899136.480cfde9fa8e.13345.7 +3 -0
- runs/Jun27_20-54-11_480cfde9fa8e/events.out.tfevents.1687899256.480cfde9fa8e.13345.8 +3 -0
- runs/Jun27_21-01-56_480cfde9fa8e/events.out.tfevents.1687899720.480cfde9fa8e.13345.9 +3 -0
- runs/Jun27_21-04-38_480cfde9fa8e/events.out.tfevents.1687899881.480cfde9fa8e.13345.10 +3 -0
- special_tokens_map.json +7 -0
- tokenizer_config.json +17 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 3072,
|
14 |
+
"layer_norm_eps": 1e-12,
|
15 |
+
"max_position_embeddings": 512,
|
16 |
+
"model_type": "bert",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 12,
|
19 |
+
"pad_token_id": 0,
|
20 |
+
"position_embedding_type": "absolute",
|
21 |
+
"problem_type": "single_label_classification",
|
22 |
+
"torch_dtype": "float32",
|
23 |
+
"transformers_version": "4.30.2",
|
24 |
+
"type_vocab_size": 2,
|
25 |
+
"use_cache": true,
|
26 |
+
"vocab_size": 28996
|
27 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:211efeaf88ebb20b7b5765c46c532cedb268b64bbdd509505aadc1770423b57a
|
3 |
+
size 433320053
|
runs/Jun27_20-52-06_480cfde9fa8e/events.out.tfevents.1687899136.480cfde9fa8e.13345.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3e3a45509cc2ec7feb6cfae9138029ca2afdceea03c8625530358396077271f
|
3 |
+
size 4105
|
runs/Jun27_20-54-11_480cfde9fa8e/events.out.tfevents.1687899256.480cfde9fa8e.13345.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7fa083b596ca7907854ec940a8a1c38dd06381635d692f1adf36cc00b1bd2546
|
3 |
+
size 4154
|
runs/Jun27_21-01-56_480cfde9fa8e/events.out.tfevents.1687899720.480cfde9fa8e.13345.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b310131797f1b18a49df5545a5df8e56e0720b10cf90900d40118793721a7578
|
3 |
+
size 4105
|
runs/Jun27_21-04-38_480cfde9fa8e/events.out.tfevents.1687899881.480cfde9fa8e.13345.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:790d2befb0ca88201f0a3cacf1f110827c792bc96bd1440e09a28b75cd123424
|
3 |
+
size 4465
|
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_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"clean_up_tokenization_spaces": true,
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"do_basic_tokenize": true,
|
5 |
+
"do_lower_case": false,
|
6 |
+
"mask_token": "[MASK]",
|
7 |
+
"model_max_length": 512,
|
8 |
+
"never_split": null,
|
9 |
+
"pad_token": "[PAD]",
|
10 |
+
"padding": true,
|
11 |
+
"sep_token": "[SEP]",
|
12 |
+
"strip_accents": null,
|
13 |
+
"tokenize_chinese_chars": true,
|
14 |
+
"tokenizer_class": "BertTokenizer",
|
15 |
+
"truncation": true,
|
16 |
+
"unk_token": "[UNK]"
|
17 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f76cdf662d1d6e0ccd476c7c2ce8d4d88f658a33dc1089461c3d904ed2a58fe5
|
3 |
+
size 4027
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|