AlekseyKorshuk
commited on
Commit
•
cf5a035
1
Parent(s):
dbabf3d
huggingartists
Browse files- README.md +97 -0
- config.json +41 -0
- evaluation.txt +1 -0
- flax_model.msgpack +3 -0
- merges.txt +0 -0
- optimizer.pt +3 -0
- pytorch_model.bin +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- trainer_state.json +264 -0
- training_args.bin +3 -0
- vocab.json +0 -0
README.md
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
datasets:
|
4 |
+
- huggingartists/pharaoh
|
5 |
+
tags:
|
6 |
+
- huggingartists
|
7 |
+
- lyrics
|
8 |
+
- lm-head
|
9 |
+
- causal-lm
|
10 |
+
widget:
|
11 |
+
- text: "I am"
|
12 |
+
---
|
13 |
+
|
14 |
+
<div class="inline-flex flex-col" style="line-height: 1.5;">
|
15 |
+
<div class="flex">
|
16 |
+
<div
|
17 |
+
style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/3bb9817ec1fbf2b9f944e9da3662bee6.1000x1000x1.jpg')">
|
18 |
+
</div>
|
19 |
+
</div>
|
20 |
+
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
|
21 |
+
<div style="text-align: center; font-size: 16px; font-weight: 800">PHARAOH</div>
|
22 |
+
<a href="https://genius.com/artists/pharaoh">
|
23 |
+
<div style="text-align: center; font-size: 14px;">@pharaoh</div>
|
24 |
+
</a>
|
25 |
+
</div>
|
26 |
+
|
27 |
+
I was made with [huggingartists](https://github.com/AlekseyKorshuk/huggingartists).
|
28 |
+
|
29 |
+
Create your own bot based on your favorite artist with [the demo](https://colab.research.google.com/github/AlekseyKorshuk/huggingartists/blob/master/huggingartists-demo.ipynb)!
|
30 |
+
|
31 |
+
## How does it work?
|
32 |
+
|
33 |
+
To understand how the model was developed, check the [W&B report](https://wandb.ai/huggingartists/huggingartists/reportlist).
|
34 |
+
|
35 |
+
## Training data
|
36 |
+
|
37 |
+
The model was trained on lyrics from PHARAOH.
|
38 |
+
|
39 |
+
Dataset is available [here](https://huggingface.co/datasets/huggingartists/pharaoh).
|
40 |
+
And can be used with:
|
41 |
+
|
42 |
+
```python
|
43 |
+
from datasets import load_dataset
|
44 |
+
|
45 |
+
dataset = load_dataset("huggingartists/pharaoh")
|
46 |
+
```
|
47 |
+
|
48 |
+
[Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/2j2p1ulk/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline.
|
49 |
+
|
50 |
+
## Training procedure
|
51 |
+
|
52 |
+
The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on PHARAOH's lyrics.
|
53 |
+
|
54 |
+
Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/1dgmwwm3) for full transparency and reproducibility.
|
55 |
+
|
56 |
+
At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/1dgmwwm3/artifacts) is logged and versioned.
|
57 |
+
|
58 |
+
## How to use
|
59 |
+
|
60 |
+
You can use this model directly with a pipeline for text generation:
|
61 |
+
|
62 |
+
```python
|
63 |
+
from transformers import pipeline
|
64 |
+
generator = pipeline('text-generation',
|
65 |
+
model='huggingartists/pharaoh')
|
66 |
+
generator("I am", num_return_sequences=5)
|
67 |
+
```
|
68 |
+
|
69 |
+
Or with Transformers library:
|
70 |
+
|
71 |
+
```python
|
72 |
+
from transformers import AutoTokenizer, AutoModelWithLMHead
|
73 |
+
|
74 |
+
tokenizer = AutoTokenizer.from_pretrained("huggingartists/pharaoh")
|
75 |
+
|
76 |
+
model = AutoModelWithLMHead.from_pretrained("huggingartists/pharaoh")
|
77 |
+
```
|
78 |
+
|
79 |
+
## Limitations and bias
|
80 |
+
|
81 |
+
The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias).
|
82 |
+
|
83 |
+
In addition, the data present in the user's tweets further affects the text generated by the model.
|
84 |
+
|
85 |
+
## About
|
86 |
+
|
87 |
+
*Built by Aleksey Korshuk*
|
88 |
+
|
89 |
+
[![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk)
|
90 |
+
|
91 |
+
[![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
|
92 |
+
|
93 |
+
[![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
|
94 |
+
|
95 |
+
For more details, visit the project repository.
|
96 |
+
|
97 |
+
[![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
|
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "gpt2",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"GPT2LMHeadModel"
|
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 |
+
"initializer_range": 0.02,
|
13 |
+
"layer_norm_epsilon": 1e-05,
|
14 |
+
"model_type": "gpt2",
|
15 |
+
"n_ctx": 1024,
|
16 |
+
"n_embd": 768,
|
17 |
+
"n_head": 12,
|
18 |
+
"n_inner": null,
|
19 |
+
"n_layer": 12,
|
20 |
+
"n_positions": 1024,
|
21 |
+
"resid_pdrop": 0.1,
|
22 |
+
"scale_attn_weights": true,
|
23 |
+
"summary_activation": null,
|
24 |
+
"summary_first_dropout": 0.1,
|
25 |
+
"summary_proj_to_labels": true,
|
26 |
+
"summary_type": "cls_index",
|
27 |
+
"summary_use_proj": true,
|
28 |
+
"task_specific_params": {
|
29 |
+
"text-generation": {
|
30 |
+
"do_sample": true,
|
31 |
+
"max_length": 200,
|
32 |
+
"min_length": 100,
|
33 |
+
"temperature": 1.0,
|
34 |
+
"top_p": 0.95
|
35 |
+
}
|
36 |
+
},
|
37 |
+
"torch_dtype": "float32",
|
38 |
+
"transformers_version": "4.10.0",
|
39 |
+
"use_cache": true,
|
40 |
+
"vocab_size": 50257
|
41 |
+
}
|
evaluation.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"eval_loss": 1.699326515197754, "eval_runtime": 10.4841, "eval_samples_per_second": 22.606, "eval_steps_per_second": 2.861, "epoch": 1.0}
|
flax_model.msgpack
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26cbcf0420766236c89194181a5733b514b4c264cdea2f09855e9306bfd740c7
|
3 |
+
size 497764120
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fe1daefc1a60e30524b28874d4be522c1e80a4766d1a84d1d30ff9599aabf714
|
3 |
+
size 995603825
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f77e516fe0382ad6598763db798fe469510208becc1e25a055700e3eee0fb6f
|
3 |
+
size 510403817
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f77f96ae7ce45ce31ca4af2726b72623ac2be13cdb55ba1d562b78afb740e564
|
3 |
+
size 14503
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48b660f4750a1868cd1a9877f5c933f8f45093566a7accb3c6c62e58f34d678f
|
3 |
+
size 623
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "unk_token": "<|endoftext|>"}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "<|endoftext|>", "bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "add_prefix_space": false, "model_max_length": 1024, "special_tokens_map_file": null, "name_or_path": "gpt2", "tokenizer_class": "GPT2Tokenizer"}
|
trainer_state.json
ADDED
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": 1.699326515197754,
|
3 |
+
"best_model_checkpoint": "output/pharaoh/checkpoint-200",
|
4 |
+
"epoch": 1.0,
|
5 |
+
"global_step": 200,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.03,
|
12 |
+
"learning_rate": 0.0001369885290940926,
|
13 |
+
"loss": 2.5312,
|
14 |
+
"step": 5
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.05,
|
18 |
+
"learning_rate": 0.00013635542016482644,
|
19 |
+
"loss": 2.1558,
|
20 |
+
"step": 10
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.07,
|
24 |
+
"learning_rate": 0.0001353045765392806,
|
25 |
+
"loss": 2.1677,
|
26 |
+
"step": 15
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 0.1,
|
30 |
+
"learning_rate": 0.00013384247701784754,
|
31 |
+
"loss": 2.0874,
|
32 |
+
"step": 20
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"epoch": 0.12,
|
36 |
+
"learning_rate": 0.00013197813593027427,
|
37 |
+
"loss": 2.0224,
|
38 |
+
"step": 25
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.15,
|
42 |
+
"learning_rate": 0.00012972304755932203,
|
43 |
+
"loss": 1.9402,
|
44 |
+
"step": 30
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"epoch": 0.17,
|
48 |
+
"learning_rate": 0.00012709111527469072,
|
49 |
+
"loss": 2.113,
|
50 |
+
"step": 35
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"epoch": 0.2,
|
54 |
+
"learning_rate": 0.0001240985658141214,
|
55 |
+
"loss": 2.0482,
|
56 |
+
"step": 40
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.23,
|
60 |
+
"learning_rate": 0.00012076384924016213,
|
61 |
+
"loss": 1.843,
|
62 |
+
"step": 45
|
63 |
+
},
|
64 |
+
{
|
65 |
+
"epoch": 0.25,
|
66 |
+
"learning_rate": 0.00011710752518939715,
|
67 |
+
"loss": 2.0109,
|
68 |
+
"step": 50
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"epoch": 0.28,
|
72 |
+
"learning_rate": 0.00011315213611545058,
|
73 |
+
"loss": 1.9608,
|
74 |
+
"step": 55
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"epoch": 0.3,
|
78 |
+
"learning_rate": 0.00010892206830726365,
|
79 |
+
"loss": 2.053,
|
80 |
+
"step": 60
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.33,
|
84 |
+
"learning_rate": 0.00010444340153951408,
|
85 |
+
"loss": 1.9682,
|
86 |
+
"step": 65
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"epoch": 0.35,
|
90 |
+
"learning_rate": 9.974374828213291e-05,
|
91 |
+
"loss": 1.9954,
|
92 |
+
"step": 70
|
93 |
+
},
|
94 |
+
{
|
95 |
+
"epoch": 0.38,
|
96 |
+
"learning_rate": 9.485208346024516e-05,
|
97 |
+
"loss": 1.9485,
|
98 |
+
"step": 75
|
99 |
+
},
|
100 |
+
{
|
101 |
+
"epoch": 0.4,
|
102 |
+
"learning_rate": 8.97985658141214e-05,
|
103 |
+
"loss": 1.8621,
|
104 |
+
"step": 80
|
105 |
+
},
|
106 |
+
{
|
107 |
+
"epoch": 0.42,
|
108 |
+
"learning_rate": 8.461435196051512e-05,
|
109 |
+
"loss": 1.9375,
|
110 |
+
"step": 85
|
111 |
+
},
|
112 |
+
{
|
113 |
+
"epoch": 0.45,
|
114 |
+
"learning_rate": 7.933140430175984e-05,
|
115 |
+
"loss": 1.8682,
|
116 |
+
"step": 90
|
117 |
+
},
|
118 |
+
{
|
119 |
+
"epoch": 0.47,
|
120 |
+
"learning_rate": 7.398229396693017e-05,
|
121 |
+
"loss": 1.9141,
|
122 |
+
"step": 95
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.5,
|
126 |
+
"learning_rate": 6.86e-05,
|
127 |
+
"loss": 1.8811,
|
128 |
+
"step": 100
|
129 |
+
},
|
130 |
+
{
|
131 |
+
"epoch": 0.53,
|
132 |
+
"learning_rate": 6.321770603306985e-05,
|
133 |
+
"loss": 1.9623,
|
134 |
+
"step": 105
|
135 |
+
},
|
136 |
+
{
|
137 |
+
"epoch": 0.55,
|
138 |
+
"learning_rate": 5.786859569824015e-05,
|
139 |
+
"loss": 1.8849,
|
140 |
+
"step": 110
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"epoch": 0.57,
|
144 |
+
"learning_rate": 5.258564803948491e-05,
|
145 |
+
"loss": 1.891,
|
146 |
+
"step": 115
|
147 |
+
},
|
148 |
+
{
|
149 |
+
"epoch": 0.6,
|
150 |
+
"learning_rate": 4.740143418587861e-05,
|
151 |
+
"loss": 1.7659,
|
152 |
+
"step": 120
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"epoch": 0.62,
|
156 |
+
"learning_rate": 4.2347916539754844e-05,
|
157 |
+
"loss": 1.8337,
|
158 |
+
"step": 125
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 0.65,
|
162 |
+
"learning_rate": 3.745625171786709e-05,
|
163 |
+
"loss": 1.8855,
|
164 |
+
"step": 130
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.68,
|
168 |
+
"learning_rate": 3.275659846048591e-05,
|
169 |
+
"loss": 1.8395,
|
170 |
+
"step": 135
|
171 |
+
},
|
172 |
+
{
|
173 |
+
"epoch": 0.7,
|
174 |
+
"learning_rate": 2.8277931692736352e-05,
|
175 |
+
"loss": 1.8782,
|
176 |
+
"step": 140
|
177 |
+
},
|
178 |
+
{
|
179 |
+
"epoch": 0.72,
|
180 |
+
"learning_rate": 2.4047863884549408e-05,
|
181 |
+
"loss": 1.8944,
|
182 |
+
"step": 145
|
183 |
+
},
|
184 |
+
{
|
185 |
+
"epoch": 0.75,
|
186 |
+
"learning_rate": 2.0092474810602843e-05,
|
187 |
+
"loss": 1.913,
|
188 |
+
"step": 150
|
189 |
+
},
|
190 |
+
{
|
191 |
+
"epoch": 0.78,
|
192 |
+
"learning_rate": 1.6436150759837878e-05,
|
193 |
+
"loss": 1.7538,
|
194 |
+
"step": 155
|
195 |
+
},
|
196 |
+
{
|
197 |
+
"epoch": 0.8,
|
198 |
+
"learning_rate": 1.3101434185878613e-05,
|
199 |
+
"loss": 1.9117,
|
200 |
+
"step": 160
|
201 |
+
},
|
202 |
+
{
|
203 |
+
"epoch": 0.82,
|
204 |
+
"learning_rate": 1.0108884725309277e-05,
|
205 |
+
"loss": 1.8817,
|
206 |
+
"step": 165
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.85,
|
210 |
+
"learning_rate": 7.476952440677969e-06,
|
211 |
+
"loss": 1.8265,
|
212 |
+
"step": 170
|
213 |
+
},
|
214 |
+
{
|
215 |
+
"epoch": 0.88,
|
216 |
+
"learning_rate": 5.22186406972573e-06,
|
217 |
+
"loss": 1.7538,
|
218 |
+
"step": 175
|
219 |
+
},
|
220 |
+
{
|
221 |
+
"epoch": 0.9,
|
222 |
+
"learning_rate": 3.357522982152468e-06,
|
223 |
+
"loss": 1.7725,
|
224 |
+
"step": 180
|
225 |
+
},
|
226 |
+
{
|
227 |
+
"epoch": 0.93,
|
228 |
+
"learning_rate": 1.8954234607193881e-06,
|
229 |
+
"loss": 1.8434,
|
230 |
+
"step": 185
|
231 |
+
},
|
232 |
+
{
|
233 |
+
"epoch": 0.95,
|
234 |
+
"learning_rate": 8.445798351735566e-07,
|
235 |
+
"loss": 1.7535,
|
236 |
+
"step": 190
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"epoch": 0.97,
|
240 |
+
"learning_rate": 2.1147090590742169e-07,
|
241 |
+
"loss": 1.8311,
|
242 |
+
"step": 195
|
243 |
+
},
|
244 |
+
{
|
245 |
+
"epoch": 1.0,
|
246 |
+
"learning_rate": 0.0,
|
247 |
+
"loss": 1.862,
|
248 |
+
"step": 200
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 1.0,
|
252 |
+
"eval_loss": 1.699326515197754,
|
253 |
+
"eval_runtime": 10.3078,
|
254 |
+
"eval_samples_per_second": 22.992,
|
255 |
+
"eval_steps_per_second": 2.91,
|
256 |
+
"step": 200
|
257 |
+
}
|
258 |
+
],
|
259 |
+
"max_steps": 200,
|
260 |
+
"num_train_epochs": 1,
|
261 |
+
"total_flos": 208772333568000.0,
|
262 |
+
"trial_name": null,
|
263 |
+
"trial_params": null
|
264 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd6418f8aaf396178babd67aee6ff50924acc2cdcb8097797e754c240edd3780
|
3 |
+
size 2671
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|