terzimert commited on
Commit
355581b
1 Parent(s): 5329481

Training in progress, epoch 0

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "[PAD]": 100000
3
+ }
config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "ai-forever/mGPT",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2ForTokenClassification"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "gradient_checkpointing": false,
12
+ "id2label": {
13
+ "0": "B-LOC",
14
+ "1": "B-MISC",
15
+ "2": "B-ORG",
16
+ "3": "B-PERS",
17
+ "4": "I-LOC",
18
+ "5": "I-MISC",
19
+ "6": "I-ORG",
20
+ "7": "I-PERS",
21
+ "8": "O"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "label2id": {
25
+ "B-LOC": 0,
26
+ "B-MISC": 1,
27
+ "B-ORG": 2,
28
+ "B-PERS": 3,
29
+ "I-LOC": 4,
30
+ "I-MISC": 5,
31
+ "I-ORG": 6,
32
+ "I-PERS": 7,
33
+ "O": 8
34
+ },
35
+ "layer_norm_epsilon": 1e-05,
36
+ "model_type": "gpt2",
37
+ "n_ctx": 2048,
38
+ "n_embd": 2048,
39
+ "n_head": 16,
40
+ "n_inner": null,
41
+ "n_layer": 24,
42
+ "n_positions": 2048,
43
+ "reorder_and_upcast_attn": false,
44
+ "resid_pdrop": 0.1,
45
+ "scale_attn_by_inverse_layer_idx": false,
46
+ "scale_attn_weights": true,
47
+ "summary_activation": null,
48
+ "summary_first_dropout": 0.1,
49
+ "summary_proj_to_labels": true,
50
+ "summary_type": "cls_index",
51
+ "summary_use_proj": true,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.28.0",
54
+ "use_cache": true,
55
+ "vocab_size": 100001
56
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c1a081ecc6791de15862451e83ffe4bc6232b4a3d22c87709e010961c7013ae
3
+ size 5771245557
runs/May25_11-37-56_59c3bb2d0507/1685014691.375387/events.out.tfevents.1685014691.59c3bb2d0507.5404.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9dacb31c68586176760bf2083202ed7bc2d5c919add1b021bccb20856e57ccf
3
+ size 5850
runs/May25_11-37-56_59c3bb2d0507/events.out.tfevents.1685014691.59c3bb2d0507.5404.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44d856bb52f2aa0ff8c7e2243cb47f14f85521d17448615293fafa6f765396d4
3
+ size 5147
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|endoftext|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "[PAD]",
17
+ "unk_token": {
18
+ "content": "<|endoftext|>",
19
+ "lstrip": false,
20
+ "normalized": true,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "bos_token": {
5
+ "__type": "AddedToken",
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": true,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "clean_up_tokenization_spaces": true,
13
+ "eos_token": {
14
+ "__type": "AddedToken",
15
+ "content": "<|endoftext|>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false
20
+ },
21
+ "errors": "replace",
22
+ "model_max_length": 512,
23
+ "pad_token": null,
24
+ "tokenizer_class": "GPT2Tokenizer",
25
+ "unk_token": {
26
+ "__type": "AddedToken",
27
+ "content": "<|endoftext|>",
28
+ "lstrip": false,
29
+ "normalized": true,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8765f49f17fe0db8543e35c858f426004b9d70bde24b79457647edf55cafb705
3
+ size 3579
vocab.json ADDED
The diff for this file is too large to render. See raw diff