Upload checkpoint-14539
Browse files- .gitattributes +1 -0
- checkpoint-14539/chat_template.jinja +4 -0
- checkpoint-14539/optimizer.pt +3 -0
- checkpoint-14539/rng_state_1.pth +3 -0
- checkpoint-14539/rng_state_2.pth +3 -0
- checkpoint-14539/rng_state_3.pth +3 -0
- checkpoint-14539/tokenizer.json +3 -0
- checkpoint-14539/tokenizer_config.json +17 -0
- checkpoint-14539/trainable_params.pt +3 -0
- checkpoint-14539/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -39,3 +39,4 @@ checkpoint-6231/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
| 39 |
checkpoint-8308/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 40 |
checkpoint-10385/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 41 |
checkpoint-12462/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 39 |
checkpoint-8308/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 40 |
checkpoint-10385/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 41 |
checkpoint-12462/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
checkpoint-14539/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-14539/chat_template.jinja
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if (message['role'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '
|
| 2 |
+
' + message['content'] | trim + '<end_of_turn>
|
| 3 |
+
' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model
|
| 4 |
+
'}}{% endif %}
|
checkpoint-14539/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1053979ce25db4cff1d7c2eb2b8b2082b62dd57ebbb2e850b3c0a814a107b6a2
|
| 3 |
+
size 37657227
|
checkpoint-14539/rng_state_1.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1c1ce88716bdd512d49e6e89955d40502fe0bdf81ecb9c55aac51c60cad0f7d
|
| 3 |
+
size 15429
|
checkpoint-14539/rng_state_2.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f63bb63a65621473c2889df5adf207826e1d634155cc067a0d36c9e3d80c027
|
| 3 |
+
size 15429
|
checkpoint-14539/rng_state_3.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5037346cd786112925321b3d0459ae0cd3053e2d7cc147d137e418adfd6695e4
|
| 3 |
+
size 15429
|
checkpoint-14539/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdc0fd8410449f9ab91a0bc149a04e4f2565ef5d608b588c971e500863286adf
|
| 3 |
+
size 34362526
|
checkpoint-14539/tokenizer_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<bos>",
|
| 4 |
+
"clean_up_tokenization_spaces": false,
|
| 5 |
+
"eos_token": "<eos>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"local_files_only": false,
|
| 8 |
+
"mask_token": "<mask>",
|
| 9 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 10 |
+
"pad_token": "<pad>",
|
| 11 |
+
"padding_side": "right",
|
| 12 |
+
"sp_model_kwargs": {},
|
| 13 |
+
"spaces_between_special_tokens": false,
|
| 14 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 15 |
+
"unk_token": "<unk>",
|
| 16 |
+
"use_default_system_prompt": false
|
| 17 |
+
}
|
checkpoint-14539/trainable_params.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e26d8371834cbaaa8d4111176b52f0d910a821cbba7657b99629b3b2aeaf280a
|
| 3 |
+
size 18815091
|
checkpoint-14539/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bb2c1c94aa0fdd3230268e016f0540025019dc2d2135c0ef925a101aa0459fa
|
| 3 |
+
size 5265
|