WYHu commited on
Commit
199f344
·
1 Parent(s): 9dd18e9

Training in progress epoch 0

Browse files
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-edition",
14
+ "1": "B-product",
15
+ "2": "B-update",
16
+ "3": "B-vendor",
17
+ "4": "B-version",
18
+ "5": "I-product",
19
+ "6": "I-update",
20
+ "7": "I-vendor",
21
+ "8": "I-version",
22
+ "9": "O"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 3072,
26
+ "label2id": {
27
+ "B-edition": 0,
28
+ "B-product": 1,
29
+ "B-update": 2,
30
+ "B-vendor": 3,
31
+ "B-version": 4,
32
+ "I-product": 5,
33
+ "I-update": 6,
34
+ "I-vendor": 7,
35
+ "I-version": 8,
36
+ "O": 9
37
+ },
38
+ "layer_norm_eps": 1e-12,
39
+ "max_position_embeddings": 512,
40
+ "model_type": "bert",
41
+ "num_attention_heads": 12,
42
+ "num_hidden_layers": 12,
43
+ "pad_token_id": 0,
44
+ "position_embedding_type": "absolute",
45
+ "torch_dtype": "float32",
46
+ "transformers_version": "4.21.0.dev0",
47
+ "type_vocab_size": 2,
48
+ "use_cache": true,
49
+ "vocab_size": 28996
50
+ }
ner_no_trainer/1673421099.8914928/events.out.tfevents.1673421099.wyLinux.48910.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63146a097df4bce49e21a6f4b517fa90d3a782aef968fb4766d883836b1ded31
3
+ size 1655
ner_no_trainer/events.out.tfevents.1673421092.wyLinux.48910.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69d6c1860f3746e8e335c0ddfc5cb74dab4a320d3cbcd4257c2093cfdc2bce01
3
+ size 179
ner_no_trainer/seqeval_accuracy/events.out.tfevents.1673423922.wyLinux.48910.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee534126d08eefb857207c1a7cfe82bece072206b4a7496947f05b7c7c757bc4
3
+ size 87
ner_no_trainer/seqeval_f1/events.out.tfevents.1673423922.wyLinux.48910.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:465073102716327047a32e6ceef5b7dbfd98fa880e7ca35410fc6ba1addc9c05
3
+ size 87
ner_no_trainer/seqeval_precision/events.out.tfevents.1673423922.wyLinux.48910.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea61f469e4b36a4cf92ac60ac1c86fd60bd0fbba36951d78af62a016fcd88df6
3
+ size 87
ner_no_trainer/seqeval_recall/events.out.tfevents.1673423922.wyLinux.48910.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f38eab8f9eeda6d0b829ec7e09bc33b0bc5309e3d3f3ce41b3c34282d1354f9f
3
+ size 87
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5418094484e98c05e18138cfec42c1b08df44d87940c1c9413228cbb459a0bd
3
+ size 430979889
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
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff