kanak8278 commited on
Commit
af3c0c7
1 Parent(s): 044495c

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/electra-large-discriminator",
3
+ "architectures": [
4
+ "ElectraForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 1024,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 1024,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "PROC"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 4096,
18
+ "label2id": {
19
+ "O": 0,
20
+ "PROC": 1
21
+ },
22
+ "layer_norm_eps": 1e-12,
23
+ "max_position_embeddings": 512,
24
+ "model_type": "electra",
25
+ "num_attention_heads": 16,
26
+ "num_hidden_layers": 24,
27
+ "pad_token_id": 0,
28
+ "position_embedding_type": "absolute",
29
+ "summary_activation": "gelu",
30
+ "summary_last_dropout": 0.1,
31
+ "summary_type": "first",
32
+ "summary_use_proj": true,
33
+ "torch_dtype": "float32",
34
+ "transformers_version": "4.27.4",
35
+ "type_vocab_size": 2,
36
+ "use_cache": true,
37
+ "vocab_size": 30522
38
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e531a15df7feccae367e7de743bfccda191a508e7ffc400e29b1fb6d85c4774b
3
+ size 1336516717
runs/Apr10_18-33-03_3c6eef730eb0/1681151671.1699967/events.out.tfevents.1681151671.3c6eef730eb0.153.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e0c1f4650429486770fd14569b2fa4e7c23927c5c271568b55ea9efbdcc12f7
3
+ size 5964
runs/Apr10_18-33-03_3c6eef730eb0/events.out.tfevents.1681151671.3c6eef730eb0.153.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29e25e103bcd83d7a3ca00df5b5256a675ed9975444f71aaf2ebd12bc6b2ec79
3
+ size 4327
runs/Apr10_18-35-44_3c6eef730eb0/1681151756.3858116/events.out.tfevents.1681151756.3c6eef730eb0.153.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11802323d272501069c1853a36635ec131667c08da4b386db9777f37e50d449e
3
+ size 5967
runs/Apr10_18-35-44_3c6eef730eb0/events.out.tfevents.1681151756.3c6eef730eb0.153.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d99ebdf1cfc9c176f0b25f4f8e249bc682149880765f4e40b35c01fd7c45b55
3
+ size 4329
runs/Apr10_18-39-10_3c6eef730eb0/1681151964.5923064/events.out.tfevents.1681151964.3c6eef730eb0.153.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ee401a5e4589ce5ba2ac4e517ce94cf2a1b37225c9cc9bc05f8a8b264cf4726
3
+ size 5967
runs/Apr10_18-39-10_3c6eef730eb0/events.out.tfevents.1681151964.3c6eef730eb0.153.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f158a7a33bc6b6d6eb6c02d7ecbb6eff5ce4ac2dbd29a1981061e047c3b4fe74
3
+ size 4960
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
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "ElectraTokenizer",
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:fa6390562b000db65df3a88e5a1cca6ceb52fd4714607dd0500778e383df763b
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff