lsoni commited on
Commit
2394934
1 Parent(s): f79d182

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
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": "B-corporation",
14
+ "1": "B-creative_work",
15
+ "2": "B-event",
16
+ "3": "B-group",
17
+ "4": "B-location",
18
+ "5": "B-person",
19
+ "6": "B-product",
20
+ "7": "I-corporation",
21
+ "8": "I-creative_work",
22
+ "9": "I-event",
23
+ "10": "I-group",
24
+ "11": "I-location",
25
+ "12": "I-person",
26
+ "13": "I-product",
27
+ "14": "O"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "B-corporation": 0,
33
+ "B-creative_work": 1,
34
+ "B-event": 2,
35
+ "B-group": 3,
36
+ "B-location": 4,
37
+ "B-person": 5,
38
+ "B-product": 6,
39
+ "I-corporation": 7,
40
+ "I-creative_work": 8,
41
+ "I-event": 9,
42
+ "I-group": 10,
43
+ "I-location": 11,
44
+ "I-person": 12,
45
+ "I-product": 13,
46
+ "O": 14
47
+ },
48
+ "layer_norm_eps": 1e-12,
49
+ "max_position_embeddings": 512,
50
+ "model_type": "bert",
51
+ "num_attention_heads": 12,
52
+ "num_hidden_layers": 12,
53
+ "pad_token_id": 0,
54
+ "position_embedding_type": "absolute",
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.20.1",
57
+ "type_vocab_size": 2,
58
+ "use_cache": true,
59
+ "vocab_size": 28996
60
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92c828f02dde5ecd636a26274e296ac35b5b49179f1214d7eb4d9275899cb169
3
+ size 430992433
runs/Aug29_22-04-13_Latikas-MBP/1693339497.7449899/events.out.tfevents.1693339497.Latikas-MBP ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30991790cbbc263ed245faabf8aaf12e77398819c507ceebdd2feb9c23580f6c
3
+ size 5160
runs/Aug29_22-04-13_Latikas-MBP/events.out.tfevents.1693339497.Latikas-MBP ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a803d6a6f73b1fb89bc9332ea031c4afb54da870154b695a49abc2c00dfa5a56
3
+ size 4515
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": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "bert-base-cased",
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:00a116dc90ca09078d0bce8f9c3038c86b2833d27dcc412b0beee62e1297b370
3
+ size 3311
vocab.txt ADDED
The diff for this file is too large to render. See raw diff