bniladridas commited on
Commit
0e2106f
·
1 Parent(s): 9d02162

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "LABEL_0",
14
+ "1": "LABEL_1",
15
+ "2": "LABEL_2",
16
+ "3": "LABEL_3",
17
+ "4": "LABEL_4",
18
+ "5": "LABEL_5",
19
+ "6": "LABEL_6",
20
+ "7": "LABEL_7",
21
+ "8": "LABEL_8"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "intermediate_size": 3072,
25
+ "label2id": {
26
+ "LABEL_0": 0,
27
+ "LABEL_1": 1,
28
+ "LABEL_2": 2,
29
+ "LABEL_3": 3,
30
+ "LABEL_4": 4,
31
+ "LABEL_5": 5,
32
+ "LABEL_6": 6,
33
+ "LABEL_7": 7,
34
+ "LABEL_8": 8
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
+ "torch_dtype": "float32",
44
+ "transformers_version": "4.28.1",
45
+ "type_vocab_size": 2,
46
+ "use_cache": true,
47
+ "vocab_size": 30522
48
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db464a956ec81c07580a20665bfc9ae6415367ad91fca6a8da466089ec7b96d3
3
+ size 435663597
runs/Feb26_20-33-43_Niladris-MacBook-Air.local/1740582228.942312/events.out.tfevents.1740582228.Niladris-MacBook-Air.local.59521.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b8b996efc39a8f2909651491dae66e80488909b3d7d5640946ed0c22c1cf97
3
+ size 5901
runs/Feb26_20-33-43_Niladris-MacBook-Air.local/events.out.tfevents.1740582228.Niladris-MacBook-Air.local.59521.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd3118ddf68ed838c0eb96c696140185a18650b2c4b58bf88b3c6871a2296876
3
+ size 4401
runs/Feb26_20-34-44_Niladris-MacBook-Air.local/1740582287.412925/events.out.tfevents.1740582287.Niladris-MacBook-Air.local.60103.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccce72069188106be0e220aca0888b54dd86203cbd2d9ab0f67056dea9cc2672
3
+ size 5901
runs/Feb26_20-34-44_Niladris-MacBook-Air.local/events.out.tfevents.1740582287.Niladris-MacBook-Air.local.60103.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f45d65a0523ef67f1ee1dc853badd217d202b797eaec9d0c63291b7ce3887a23
3
+ size 4401
runs/Feb26_20-35-53_Niladris-MacBook-Air.local/1740582357.139341/events.out.tfevents.1740582357.Niladris-MacBook-Air.local.60359.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:611eaca1874ba30d2fcfa46740d65d6ce1d14eabcbb4c9245659625436d07453
3
+ size 5901
runs/Feb26_20-35-53_Niladris-MacBook-Air.local/events.out.tfevents.1740582357.Niladris-MacBook-Air.local.60359.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e79c5905394c2772771e8374b969b685e76339121faedde58cd253292aef696
3
+ size 4558
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da78fcfb6fe35c69a2b61e8d504d6be4aa84f09ae40fddc8fecd5c6a751a95b5
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff