JoshuaRubin
commited on
Commit
•
16b30d9
1
Parent(s):
74a9c1a
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +38 -0
- pytorch_model.bin +3 -0
- runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/1673893020.430322/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.5 +3 -0
- runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/1673893020.43853/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.7 +3 -0
- runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.4 +3 -0
- runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.6 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +14 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-uncased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
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": "EMPTY",
|
14 |
+
"1": ".",
|
15 |
+
"2": ",",
|
16 |
+
"3": "?"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 3072,
|
20 |
+
"label2id": {
|
21 |
+
",": 2,
|
22 |
+
".": 1,
|
23 |
+
"?": 3,
|
24 |
+
"EMPTY": 0
|
25 |
+
},
|
26 |
+
"layer_norm_eps": 1e-12,
|
27 |
+
"max_position_embeddings": 512,
|
28 |
+
"model_type": "bert",
|
29 |
+
"num_attention_heads": 12,
|
30 |
+
"num_hidden_layers": 12,
|
31 |
+
"pad_token_id": 0,
|
32 |
+
"position_embedding_type": "absolute",
|
33 |
+
"torch_dtype": "float32",
|
34 |
+
"transformers_version": "4.25.1",
|
35 |
+
"type_vocab_size": 2,
|
36 |
+
"use_cache": true,
|
37 |
+
"vocab_size": 30522
|
38 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:440868a9ee263ceac57b273650b041a0d7f37077c33c38c21328dded98a39c2f
|
3 |
+
size 435648237
|
runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/1673893020.430322/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8167f29659689cdcca09d368ab3e173fdc15f91a866ba889e2f64068bd7b8d49
|
3 |
+
size 5633
|
runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/1673893020.43853/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0f6b6acd25d8b8e7e6075928cfc386258079e81941dda39c7b37a541e794964
|
3 |
+
size 5633
|
runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bcf263e84317cd8eac4f84f72fb2b16f935a63f65091a277bbdc7804e19560e
|
3 |
+
size 4937
|
runs/Jan16_20-16-54_Joshuas-MacBook-Air-4.local/events.out.tfevents.1673893020.Joshuas-MacBook-Air-4.local.29705.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80d5b9d235c08e85700a86156f72bf7ac2c837aef68fc156963b54b373f71661
|
3 |
+
size 4937
|
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.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": true,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "bert-base-uncased",
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
10 |
+
"strip_accents": null,
|
11 |
+
"tokenize_chinese_chars": true,
|
12 |
+
"tokenizer_class": "BertTokenizer",
|
13 |
+
"unk_token": "[UNK]"
|
14 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd1ba66d1c64ac1a363bf8094e42122a3966b06a9533e4cab02b0490bea8a3b1
|
3 |
+
size 3515
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|