jordyvl commited on
Commit
fa2f9fa
1 Parent(s): 4315414

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "O",
14
+ "1": "B-PER",
15
+ "2": "I-PER",
16
+ "3": "B-ORG",
17
+ "4": "I-ORG",
18
+ "5": "B-LOC",
19
+ "6": "I-LOC",
20
+ "7": "B-MISC",
21
+ "8": "I-MISC"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "intermediate_size": 3072,
25
+ "label2id": {
26
+ "B-LOC": 5,
27
+ "B-MISC": 7,
28
+ "B-ORG": 3,
29
+ "B-PER": 1,
30
+ "I-LOC": 6,
31
+ "I-MISC": 8,
32
+ "I-ORG": 4,
33
+ "I-PER": 2,
34
+ "O": 0
35
+ },
36
+ "layer_norm_eps": 1e-12,
37
+ "max_position_embeddings": 512,
38
+ "model_type": "bert",
39
+ "num_attention_heads": 12,
40
+ "num_hidden_layers": 12,
41
+ "pad_token_id": 0,
42
+ "position_embedding_type": "absolute",
43
+ "test_args": {
44
+ "dataset": "conll2003",
45
+ "model": "bert-base-cased",
46
+ "subword_alignment": "all",
47
+ "task": "ner",
48
+ "train_args": {
49
+ "batch_size": 4,
50
+ "epochs": 3,
51
+ "learning_rate": 2e-05,
52
+ "warmup_ratio": 0.1,
53
+ "weight_decay": 0.01
54
+ }
55
+ },
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.18.0",
58
+ "type_vocab_size": 2,
59
+ "use_cache": true,
60
+ "vocab_size": 28996
61
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8e0cbb1918d52f22f46057727c054eede5d0617c2b3666dcdc77c34a4207012
3
+ size 430976817
runs/Jul13_11-59-24_jordy-OMEN/1657706375.2294035/events.out.tfevents.1657706375.jordy-OMEN.72502.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4089b372a2a05606913c13cb69c40a1cba39b1ec1ffeec1a7893f5df9ca38f48
3
+ size 4901
runs/Jul13_11-59-24_jordy-OMEN/events.out.tfevents.1657706375.jordy-OMEN.72502.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ccc765f8cc32ca7d5f9349c5cd45452cd1edddef87192fa3fc21a04411225c
3
+ size 5596
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:6a776c83fa41260a8dfff9b2c52fbee9864c53ed5f820a6cfcf1faf1e3bfa31f
3
+ size 3119
vocab.txt ADDED
The diff for this file is too large to render. See raw diff