Training in progress epoch 0
Browse files- .gitignore +2 -0
- added_tokens.json +3 -0
- config.json +63 -0
- merges.txt +0 -0
- ner_no_trainer/1659660814.0775173/events.out.tfevents.1659660814.wyLinux.285481.1 +3 -0
- ner_no_trainer/1659663549.1627095/events.out.tfevents.1659663549.wyLinux.285667.1 +3 -0
- ner_no_trainer/1659663747.0893154/events.out.tfevents.1659663747.wyLinux.285778.1 +3 -0
- ner_no_trainer/1659664065.7742915/events.out.tfevents.1659664065.wyLinux.285885.1 +3 -0
- ner_no_trainer/1659664455.6157084/events.out.tfevents.1659664455.wyLinux.286633.1 +3 -0
- ner_no_trainer/events.out.tfevents.1659660807.wyLinux.285481.0 +3 -0
- ner_no_trainer/events.out.tfevents.1659663542.wyLinux.285667.0 +3 -0
- ner_no_trainer/events.out.tfevents.1659663740.wyLinux.285778.0 +3 -0
- ner_no_trainer/events.out.tfevents.1659664058.wyLinux.285885.0 +3 -0
- ner_no_trainer/events.out.tfevents.1659664448.wyLinux.286633.0 +3 -0
- ner_no_trainer/seqeval_accuracy/events.out.tfevents.1659716203.wyLinux.286633.5 +3 -0
- ner_no_trainer/seqeval_f1/events.out.tfevents.1659716203.wyLinux.286633.4 +3 -0
- ner_no_trainer/seqeval_precision/events.out.tfevents.1659716203.wyLinux.286633.2 +3 -0
- ner_no_trainer/seqeval_recall/events.out.tfevents.1659716203.wyLinux.286633.3 +3 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +6 -0
- tokenizer.json +0 -0
- tokenizer_config.json +10 -0
- vocab.json +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step_*
|
| 2 |
+
epoch_*
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"[PAD]": 50257
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "gpt2",
|
| 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 |
+
"id2label": {
|
| 12 |
+
"0": "B-edition",
|
| 13 |
+
"1": "B-product",
|
| 14 |
+
"2": "B-update",
|
| 15 |
+
"3": "B-vendor",
|
| 16 |
+
"4": "B-version",
|
| 17 |
+
"5": "I-product",
|
| 18 |
+
"6": "I-update",
|
| 19 |
+
"7": "I-vendor",
|
| 20 |
+
"8": "I-version",
|
| 21 |
+
"9": "O"
|
| 22 |
+
},
|
| 23 |
+
"initializer_range": 0.02,
|
| 24 |
+
"label2id": {
|
| 25 |
+
"B-edition": 0,
|
| 26 |
+
"B-product": 1,
|
| 27 |
+
"B-update": 2,
|
| 28 |
+
"B-vendor": 3,
|
| 29 |
+
"B-version": 4,
|
| 30 |
+
"I-product": 5,
|
| 31 |
+
"I-update": 6,
|
| 32 |
+
"I-vendor": 7,
|
| 33 |
+
"I-version": 8,
|
| 34 |
+
"O": 9
|
| 35 |
+
},
|
| 36 |
+
"layer_norm_epsilon": 1e-05,
|
| 37 |
+
"model_type": "gpt2",
|
| 38 |
+
"n_ctx": 1024,
|
| 39 |
+
"n_embd": 768,
|
| 40 |
+
"n_head": 12,
|
| 41 |
+
"n_inner": null,
|
| 42 |
+
"n_layer": 12,
|
| 43 |
+
"n_positions": 1024,
|
| 44 |
+
"reorder_and_upcast_attn": false,
|
| 45 |
+
"resid_pdrop": 0.1,
|
| 46 |
+
"scale_attn_by_inverse_layer_idx": false,
|
| 47 |
+
"scale_attn_weights": true,
|
| 48 |
+
"summary_activation": null,
|
| 49 |
+
"summary_first_dropout": 0.1,
|
| 50 |
+
"summary_proj_to_labels": true,
|
| 51 |
+
"summary_type": "cls_index",
|
| 52 |
+
"summary_use_proj": true,
|
| 53 |
+
"task_specific_params": {
|
| 54 |
+
"text-generation": {
|
| 55 |
+
"do_sample": true,
|
| 56 |
+
"max_length": 50
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
"torch_dtype": "float32",
|
| 60 |
+
"transformers_version": "4.21.0.dev0",
|
| 61 |
+
"use_cache": true,
|
| 62 |
+
"vocab_size": 50258
|
| 63 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
ner_no_trainer/1659660814.0775173/events.out.tfevents.1659660814.wyLinux.285481.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1510ed1cfbe712cc0df179fe90370e005229225054189cadcb0ca17320cc4a81
|
| 3 |
+
size 1590
|
ner_no_trainer/1659663549.1627095/events.out.tfevents.1659663549.wyLinux.285667.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30aaa9f513eb18b78ce7ddabd13efe792e601f7ab8a1769704ea7aeef11c9b67
|
| 3 |
+
size 1590
|
ner_no_trainer/1659663747.0893154/events.out.tfevents.1659663747.wyLinux.285778.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:011b33fb4bfad9fbc213b713ed587a461b404008cd7a18775feb51fdd7235958
|
| 3 |
+
size 1590
|
ner_no_trainer/1659664065.7742915/events.out.tfevents.1659664065.wyLinux.285885.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ec2f3cb069767418da25d3cba9bc7be4be876fde7cfbed421e6326b911ec7b2
|
| 3 |
+
size 1590
|
ner_no_trainer/1659664455.6157084/events.out.tfevents.1659664455.wyLinux.286633.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:685fb2f1f9aaac96efeee960a471c657bc639826d0eff5864b9609c80ab1c09c
|
| 3 |
+
size 1590
|
ner_no_trainer/events.out.tfevents.1659660807.wyLinux.285481.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3596325e2a2e65e6a4ae133d7bc581dc66848a47000c2958c0b8c891e3f122cd
|
| 3 |
+
size 40
|
ner_no_trainer/events.out.tfevents.1659663542.wyLinux.285667.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7cd7e58569404603126438104c4f5f9e088c594d745cfff4e1e5c8fcf8676cc
|
| 3 |
+
size 40
|
ner_no_trainer/events.out.tfevents.1659663740.wyLinux.285778.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10311ca6161183709df93f65a3e40ae1b3fd3d1a1c283f14e9133bd71a73798c
|
| 3 |
+
size 40
|
ner_no_trainer/events.out.tfevents.1659664058.wyLinux.285885.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d67a4ef933448a0ec481f7d63c72b1ef9922bc841abb2f654554c94ec37308b9
|
| 3 |
+
size 40
|
ner_no_trainer/events.out.tfevents.1659664448.wyLinux.286633.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:753352fa16b414e122377543178c37d7036ff59084a58413946f0f7e0486601d
|
| 3 |
+
size 179
|
ner_no_trainer/seqeval_accuracy/events.out.tfevents.1659716203.wyLinux.286633.5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ff31928d3541159fde3920833295f89045189b5dea835d349d7db04ca2120f7
|
| 3 |
+
size 87
|
ner_no_trainer/seqeval_f1/events.out.tfevents.1659716203.wyLinux.286633.4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47e49e88ce31fdd17f08f3d947512e2d2722859ec3d570ee8ca8803fee28f829
|
| 3 |
+
size 87
|
ner_no_trainer/seqeval_precision/events.out.tfevents.1659716203.wyLinux.286633.2
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0a0ea96c7998be3fafea812400ef35a544b8f3d645a2217b24fa3f367a1552a
|
| 3 |
+
size 87
|
ner_no_trainer/seqeval_recall/events.out.tfevents.1659716203.wyLinux.286633.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:626805ec975d234a58a6e763e5f44ab486cd2c94430ee8063d2642d59c13c6fe
|
| 3 |
+
size 87
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc1279362462f3b67eaa360c8e6c93a71899ca8170a101f797161ae753105e85
|
| 3 |
+
size 510428389
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "<|endoftext|>",
|
| 3 |
+
"eos_token": "<|endoftext|>",
|
| 4 |
+
"pad_token": "[PAD]",
|
| 5 |
+
"unk_token": "<|endoftext|>"
|
| 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 |
+
"add_prefix_space": true,
|
| 3 |
+
"bos_token": "<|endoftext|>",
|
| 4 |
+
"eos_token": "<|endoftext|>",
|
| 5 |
+
"model_max_length": 1024,
|
| 6 |
+
"name_or_path": "gpt2",
|
| 7 |
+
"special_tokens_map_file": null,
|
| 8 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 9 |
+
"unk_token": "<|endoftext|>"
|
| 10 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|