Training in progress, step 1000
Browse files- .gitignore +1 -0
- config.json +57 -0
- pytorch_model.bin +3 -0
- runs/Jan27_17-37-53_24c5be87015a/1674841107.8581364/events.out.tfevents.1674841107.24c5be87015a.745.1 +3 -0
- runs/Jan27_17-37-53_24c5be87015a/events.out.tfevents.1674841107.24c5be87015a.745.0 +3 -0
- runs/Jan27_17-38-06_24c5be87015a/1674841116.227368/events.out.tfevents.1674841116.24c5be87015a.897.1 +3 -0
- runs/Jan27_17-38-06_24c5be87015a/events.out.tfevents.1674841116.24c5be87015a.897.0 +3 -0
- runs/Jan27_17-39-49_24c5be87015a/1674841218.0371497/events.out.tfevents.1674841218.24c5be87015a.1331.1 +3 -0
- runs/Jan27_17-39-49_24c5be87015a/events.out.tfevents.1674841218.24c5be87015a.1331.0 +3 -0
- runs/Jan27_17-42-45_24c5be87015a/1674841394.1750054/events.out.tfevents.1674841394.24c5be87015a.2110.1 +3 -0
- runs/Jan27_17-42-45_24c5be87015a/events.out.tfevents.1674841394.24c5be87015a.2110.0 +3 -0
- runs/Jan27_17-44-36_24c5be87015a/1674841505.3861609/events.out.tfevents.1674841505.24c5be87015a.2390.1 +3 -0
- runs/Jan27_17-44-36_24c5be87015a/events.out.tfevents.1674841505.24c5be87015a.2390.0 +3 -0
- runs/Jan27_17-46-14_24c5be87015a/1674841601.1201367/events.out.tfevents.1674841601.24c5be87015a.2988.1 +3 -0
- runs/Jan27_17-46-14_24c5be87015a/events.out.tfevents.1674841601.24c5be87015a.2988.0 +3 -0
- special_tokens_map.json +6 -0
- tokenizer.json +0 -0
- tokenizer_config.json +10 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "skt/kogpt2-base-v2",
|
3 |
+
"_num_labels": 1,
|
4 |
+
"activation_function": "gelu_new",
|
5 |
+
"architectures": [
|
6 |
+
"GPT2LMHeadModel"
|
7 |
+
],
|
8 |
+
"attn_pdrop": 0.1,
|
9 |
+
"author": "Heewon Jeon(madjakarta@gmail.com)",
|
10 |
+
"bos_token_id": 0,
|
11 |
+
"created_date": "2021-04-28",
|
12 |
+
"early_stopping": true,
|
13 |
+
"embd_pdrop": 0.1,
|
14 |
+
"eos_token_id": 1,
|
15 |
+
"gradient_checkpointing": false,
|
16 |
+
"id2label": {
|
17 |
+
"0": "LABEL_0"
|
18 |
+
},
|
19 |
+
"initializer_range": 0.02,
|
20 |
+
"label2id": {
|
21 |
+
"LABEL_0": 0
|
22 |
+
},
|
23 |
+
"layer_norm_epsilon": 1e-05,
|
24 |
+
"length_penalty": 3.0,
|
25 |
+
"license": "CC-BY-NC-SA 4.0",
|
26 |
+
"min_length": 60,
|
27 |
+
"model_type": "gpt2",
|
28 |
+
"n_ctx": 1024,
|
29 |
+
"n_embd": 768,
|
30 |
+
"n_head": 12,
|
31 |
+
"n_inner": null,
|
32 |
+
"n_layer": 12,
|
33 |
+
"n_positions": 1024,
|
34 |
+
"no_repeat_ngram_size": 2,
|
35 |
+
"num_beams": 5,
|
36 |
+
"pad_token_id": 3,
|
37 |
+
"reorder_and_upcast_attn": false,
|
38 |
+
"resid_pdrop": 0.1,
|
39 |
+
"scale_attn_by_inverse_layer_idx": false,
|
40 |
+
"scale_attn_weights": true,
|
41 |
+
"sep_token_id": 51200,
|
42 |
+
"summary_activation": null,
|
43 |
+
"summary_first_dropout": 0.1,
|
44 |
+
"summary_proj_to_labels": true,
|
45 |
+
"summary_type": "cls_index",
|
46 |
+
"summary_use_proj": true,
|
47 |
+
"task_specific_params": {
|
48 |
+
"text-generation": {
|
49 |
+
"do_sample": true,
|
50 |
+
"max_length": 50
|
51 |
+
}
|
52 |
+
},
|
53 |
+
"torch_dtype": "float32",
|
54 |
+
"transformers_version": "4.25.1",
|
55 |
+
"use_cache": true,
|
56 |
+
"vocab_size": 51201
|
57 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38f189137a6f75c0b8b4b03c79f5103d7ae681fabb47e53ba40fa236ed1f72d3
|
3 |
+
size 513296489
|
runs/Jan27_17-37-53_24c5be87015a/1674841107.8581364/events.out.tfevents.1674841107.24c5be87015a.745.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c97c35b2e2c05cad93ba1115a67aa64a2d5724c701830d79b412bde6218c5ed
|
3 |
+
size 5571
|
runs/Jan27_17-37-53_24c5be87015a/events.out.tfevents.1674841107.24c5be87015a.745.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d1634a97a3704581c9a26899d1b2c50540c3e032ac0d407c0da52fc187f0ef0d
|
3 |
+
size 4448
|
runs/Jan27_17-38-06_24c5be87015a/1674841116.227368/events.out.tfevents.1674841116.24c5be87015a.897.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b333827966d50632c44ebeb18206ff43b6c50916cacc48db95e80b793543e8a
|
3 |
+
size 5571
|
runs/Jan27_17-38-06_24c5be87015a/events.out.tfevents.1674841116.24c5be87015a.897.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:207eb8aae53d13adb1a9b43ff32dbe8c3033152aad6120bd8249c61b83746beb
|
3 |
+
size 4448
|
runs/Jan27_17-39-49_24c5be87015a/1674841218.0371497/events.out.tfevents.1674841218.24c5be87015a.1331.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:554f58cf6010b92ed8eda1cde7dd3259426b88fbcbf24f43adef7ab5dee484cf
|
3 |
+
size 5575
|
runs/Jan27_17-39-49_24c5be87015a/events.out.tfevents.1674841218.24c5be87015a.1331.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f24bf748a7c4a8691bebe238685940289038bf76967720aa16103036bcabef15
|
3 |
+
size 4451
|
runs/Jan27_17-42-45_24c5be87015a/1674841394.1750054/events.out.tfevents.1674841394.24c5be87015a.2110.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5e8f3c217ec05f544f06aa3a51d3f9ae4e357acbd9aaf721f37c48edf4c5f6e
|
3 |
+
size 5575
|
runs/Jan27_17-42-45_24c5be87015a/events.out.tfevents.1674841394.24c5be87015a.2110.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee6c78b3c2ffdcc6924da2ab17338a3c38f897b5cdedb56f93106bfa7d86053a
|
3 |
+
size 4451
|
runs/Jan27_17-44-36_24c5be87015a/1674841505.3861609/events.out.tfevents.1674841505.24c5be87015a.2390.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6412e330f55c2d71b349a69c62dc04c05c30a8bea64bae72aa2ff0c50b10891
|
3 |
+
size 5575
|
runs/Jan27_17-44-36_24c5be87015a/events.out.tfevents.1674841505.24c5be87015a.2390.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8af107c7bedf2038b526f559a184eac076be1cd1259750dc6f592605ea577883
|
3 |
+
size 4450
|
runs/Jan27_17-46-14_24c5be87015a/1674841601.1201367/events.out.tfevents.1674841601.24c5be87015a.2988.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3378fd5c1eb18319cb481656b31fe37e1bddaba72788353659713398a715fbc
|
3 |
+
size 5575
|
runs/Jan27_17-46-14_24c5be87015a/events.out.tfevents.1674841601.24c5be87015a.2988.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d8b7529af576a9afcf7d3659913a1bd12fc8e712adb9663d2f1210bdeeb7270
|
3 |
+
size 6288
|
special_tokens_map.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"eos_token": "</s>",
|
3 |
+
"pad_token": "<pad>",
|
4 |
+
"sep_token": "<sep>",
|
5 |
+
"unk_token": "<unk>"
|
6 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"eos_token": "</s>",
|
3 |
+
"model_max_length": 1000000000000000019884624838656,
|
4 |
+
"name_or_path": "skt/kogpt2-base-v2",
|
5 |
+
"pad_token": "<pad>",
|
6 |
+
"sep_token": "<sep>",
|
7 |
+
"special_tokens_map_file": null,
|
8 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
9 |
+
"unk_token": "<unk>"
|
10 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5857202b1ea19394c5f286672b19f2e18e246098ca81b526dd2f08cca37f26da
|
3 |
+
size 3503
|