gk07 commited on
Commit
c83618e
·
1 Parent(s): 7ea34ee

Training in progress, step 10000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "torch_dtype": "float32",
44
+ "transformers_version": "4.18.0",
45
+ "type_vocab_size": 2,
46
+ "use_cache": true,
47
+ "vocab_size": 28996
48
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7527e27782a08faf0f084804eda2d5f9ac54fae47f670de640bdee3d01efb20d
3
+ size 430981943
runs/Apr11_09-23-37_df3dcc9801ea/1649669076.1112983/events.out.tfevents.1649669076.df3dcc9801ea.73.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:492a86b9032f7c3c9b2c9f206b43b30fde70dd09634c7593448ebf01a2e0950a
3
+ size 4870
runs/Apr11_09-23-37_df3dcc9801ea/1649669112.605486/events.out.tfevents.1649669112.df3dcc9801ea.73.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf96af403585afc98f3bde4acf50ecee483874730985544ff1c8efed7606f0ed
3
+ size 4870
runs/Apr11_09-23-37_df3dcc9801ea/1649669197.8957276/events.out.tfevents.1649669197.df3dcc9801ea.73.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b342c88677f8a5faa164a927a5f44825908be3b550ce9d596e3ae88205be2393
3
+ size 4870
runs/Apr11_09-23-37_df3dcc9801ea/1649669275.0507827/events.out.tfevents.1649669275.df3dcc9801ea.73.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd03ee582f024a65d9c5c2bd84cc8c1d5936c86fb45795d17391ab19c2f04d0e
3
+ size 4870
runs/Apr11_09-23-37_df3dcc9801ea/events.out.tfevents.1649669076.df3dcc9801ea.73.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e28beac7b37f4f78adb1e614684a869ad2049e7b79219499697473342a40213
3
+ size 14708
runs/Apr11_09-36-00_df3dcc9801ea/1649669767.3954024/events.out.tfevents.1649669767.df3dcc9801ea.7784.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84031aa4d6dd5472ed49bbb39e3cc441794f05990953e0dfb196c911635fc71a
3
+ size 4870
runs/Apr11_09-36-00_df3dcc9801ea/events.out.tfevents.1649669767.df3dcc9801ea.7784.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a56304a07a536575454739387a821537951c28504a0013ab228bbc4a222d09a7
3
+ size 7319
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:68723008283997bdbfbbd00eed6818f3cd48dd59a9911f9663e47f492b0fb33a
3
+ size 3055
vocab.txt ADDED
The diff for this file is too large to render. See raw diff