fahadd-01 commited on
Commit
e22d3ce
1 Parent(s): 7051559

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "O",
14
+ "1": "B-corporation",
15
+ "2": "I-corporation",
16
+ "3": "B-creative-work",
17
+ "4": "I-creative-work",
18
+ "5": "B-group",
19
+ "6": "I-group",
20
+ "7": "B-location",
21
+ "8": "I-location",
22
+ "9": "B-person",
23
+ "10": "I-person",
24
+ "11": "B-product",
25
+ "12": "I-product"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "intermediate_size": 3072,
29
+ "label2id": {
30
+ "B-corporation": 1,
31
+ "B-creative-work": 3,
32
+ "B-group": 5,
33
+ "B-location": 7,
34
+ "B-person": 9,
35
+ "B-product": 11,
36
+ "I-corporation": 2,
37
+ "I-creative-work": 4,
38
+ "I-group": 6,
39
+ "I-location": 8,
40
+ "I-person": 10,
41
+ "I-product": 12,
42
+ "O": 0
43
+ },
44
+ "layer_norm_eps": 1e-12,
45
+ "max_position_embeddings": 512,
46
+ "model_type": "bert",
47
+ "num_attention_heads": 12,
48
+ "num_hidden_layers": 12,
49
+ "pad_token_id": 0,
50
+ "position_embedding_type": "absolute",
51
+ "torch_dtype": "float32",
52
+ "transformers_version": "4.25.1",
53
+ "type_vocab_size": 2,
54
+ "use_cache": true,
55
+ "vocab_size": 30522
56
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f827be601b3206ea9c9113e27637495f16fb9c5256ec8ee880925bf3f6315ad
3
+ size 435678701
runs/Dec26_09-58-04_4a6a99f72414/1672048691.2862399/events.out.tfevents.1672048691.4a6a99f72414.602.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c544a18699305a73f0f59736a329698413d1243ef1f002a42d0b14543474424e
3
+ size 5518
runs/Dec26_09-58-04_4a6a99f72414/events.out.tfevents.1672048691.4a6a99f72414.602.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31e2e36a4dddfbb9d5df64f42350db1acdccef8915ca15fd86c9e82f70ed51b4
3
+ size 4810
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:07b07a557010cc81c41838998a5b4607d00e80be8125ca5ee61e584535941baa
3
+ size 3451
vocab.txt ADDED
The diff for this file is too large to render. See raw diff