初始化项目,由ModelHub XC社区提供模型
Model: fpadovani/eus-latn-100mb-after-ppt-Dp-10mb-ckpt500_seed10 Source: Original Platform
This commit is contained in:
35
.gitattributes
vendored
Normal file
35
.gitattributes
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.arrow filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bin filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ftz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.h5 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.joblib filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.model filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npy filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.onnx filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ot filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.parquet filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pb filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pickle filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pkl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pth filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||||
|
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tflite filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.wasm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||||
58
README.md
Normal file
58
README.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
base_model: fpadovani/eus-latn-100mb-ppt-Dp-10mb_seed10
|
||||||
|
library_name: transformers
|
||||||
|
model_name: eus-latn-100mb-after-ppt-Dp-10mb-ckpt500_seed10
|
||||||
|
tags:
|
||||||
|
- generated_from_trainer
|
||||||
|
- sft
|
||||||
|
- trl
|
||||||
|
licence: license
|
||||||
|
---
|
||||||
|
|
||||||
|
# Model Card for eus-latn-100mb-after-ppt-Dp-10mb-ckpt500_seed10
|
||||||
|
|
||||||
|
This model is a fine-tuned version of [fpadovani/eus-latn-100mb-ppt-Dp-10mb_seed10](https://huggingface.co/fpadovani/eus-latn-100mb-ppt-Dp-10mb_seed10).
|
||||||
|
It has been trained using [TRL](https://github.com/huggingface/trl).
|
||||||
|
|
||||||
|
## Quick start
|
||||||
|
|
||||||
|
```python
|
||||||
|
from transformers import pipeline
|
||||||
|
|
||||||
|
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
||||||
|
generator = pipeline("text-generation", model="fpadovani/eus-latn-100mb-after-ppt-Dp-10mb-ckpt500_seed10", device="cuda")
|
||||||
|
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
||||||
|
print(output["generated_text"])
|
||||||
|
```
|
||||||
|
|
||||||
|
## Training procedure
|
||||||
|
|
||||||
|
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/f-padovani-university-of-groningen/new_tokenizers/runs/149t1zma)
|
||||||
|
|
||||||
|
|
||||||
|
This model was trained with SFT.
|
||||||
|
|
||||||
|
### Framework versions
|
||||||
|
|
||||||
|
- TRL: 0.23.0
|
||||||
|
- Transformers: 4.56.2
|
||||||
|
- Pytorch: 2.11.0
|
||||||
|
- Datasets: 4.8.4
|
||||||
|
- Tokenizers: 0.22.1
|
||||||
|
|
||||||
|
## Citations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Cite TRL as:
|
||||||
|
|
||||||
|
```bibtex
|
||||||
|
@misc{vonwerra2022trl,
|
||||||
|
title = {{TRL: Transformer Reinforcement Learning}},
|
||||||
|
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
||||||
|
year = 2020,
|
||||||
|
journal = {GitHub repository},
|
||||||
|
publisher = {GitHub},
|
||||||
|
howpublished = {\url{https://github.com/huggingface/trl}}
|
||||||
|
}
|
||||||
|
```
|
||||||
1202
added_tokens.json
Normal file
1202
added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
1202
checkpoint-1000/added_tokens.json
Normal file
1202
checkpoint-1000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-1000/config.json
Normal file
34
checkpoint-1000/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-1000/generation_config.json
Normal file
9
checkpoint-1000/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-1000/model.safetensors
Normal file
3
checkpoint-1000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c6e6accdf5ddeac3d4216218635650b16211ce6673e372e289d5b8c3b864dba5
|
||||||
|
size 249556672
|
||||||
3
checkpoint-1000/rng_state.pth
Normal file
3
checkpoint-1000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c1b707711038ec495bd23923835b044ad296279a770ff45670fec5522e66dc22
|
||||||
|
size 14645
|
||||||
1249
checkpoint-1000/special_tokens_map.json
Normal file
1249
checkpoint-1000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-1000/spiece.model
Normal file
3
checkpoint-1000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-1000/tokenizer_config.json
Normal file
10825
checkpoint-1000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
2056
checkpoint-1000/trainer_state.json
Normal file
2056
checkpoint-1000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-1000/training_args.bin
Normal file
3
checkpoint-1000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-10000/added_tokens.json
Normal file
1202
checkpoint-10000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-10000/config.json
Normal file
34
checkpoint-10000/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-10000/generation_config.json
Normal file
9
checkpoint-10000/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-10000/model.safetensors
Normal file
3
checkpoint-10000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ad41f49116dc7792073b616986d672abc68d4eba251c5e44e5b3ac43dd4b94d5
|
||||||
|
size 249556672
|
||||||
3
checkpoint-10000/rng_state.pth
Normal file
3
checkpoint-10000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fec5090336b50f51b539b25085b6128db73472566de32af15f62fd99ed074d6f
|
||||||
|
size 14645
|
||||||
1249
checkpoint-10000/special_tokens_map.json
Normal file
1249
checkpoint-10000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-10000/spiece.model
Normal file
3
checkpoint-10000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-10000/tokenizer_config.json
Normal file
10825
checkpoint-10000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
20254
checkpoint-10000/trainer_state.json
Normal file
20254
checkpoint-10000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-10000/training_args.bin
Normal file
3
checkpoint-10000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-10500/added_tokens.json
Normal file
1202
checkpoint-10500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-10500/config.json
Normal file
34
checkpoint-10500/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-10500/generation_config.json
Normal file
9
checkpoint-10500/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-10500/model.safetensors
Normal file
3
checkpoint-10500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:27d2d3e979845caed8372eb9589b28010017568ab24cf58d02879525f6708494
|
||||||
|
size 249556672
|
||||||
3
checkpoint-10500/rng_state.pth
Normal file
3
checkpoint-10500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c181d6defecf7b2d711f6d6f5f172167e7df9f7744f33a1ebd1c08c73bfc581c
|
||||||
|
size 14645
|
||||||
1249
checkpoint-10500/special_tokens_map.json
Normal file
1249
checkpoint-10500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-10500/spiece.model
Normal file
3
checkpoint-10500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-10500/tokenizer_config.json
Normal file
10825
checkpoint-10500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
21265
checkpoint-10500/trainer_state.json
Normal file
21265
checkpoint-10500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-10500/training_args.bin
Normal file
3
checkpoint-10500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-11000/added_tokens.json
Normal file
1202
checkpoint-11000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-11000/config.json
Normal file
34
checkpoint-11000/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-11000/generation_config.json
Normal file
9
checkpoint-11000/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-11000/model.safetensors
Normal file
3
checkpoint-11000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:80029d2aaf5c0535ca35d4373a570014c9297af5fe75504178e6d809cefbc8d5
|
||||||
|
size 249556672
|
||||||
3
checkpoint-11000/rng_state.pth
Normal file
3
checkpoint-11000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:51702411707e22fc41a2387fca5a084c048f6fcf6fb18b3039b8f4633f67c004
|
||||||
|
size 14645
|
||||||
1249
checkpoint-11000/special_tokens_map.json
Normal file
1249
checkpoint-11000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11000/spiece.model
Normal file
3
checkpoint-11000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-11000/tokenizer_config.json
Normal file
10825
checkpoint-11000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
22276
checkpoint-11000/trainer_state.json
Normal file
22276
checkpoint-11000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11000/training_args.bin
Normal file
3
checkpoint-11000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-11500/added_tokens.json
Normal file
1202
checkpoint-11500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-11500/config.json
Normal file
34
checkpoint-11500/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-11500/generation_config.json
Normal file
9
checkpoint-11500/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-11500/model.safetensors
Normal file
3
checkpoint-11500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:52e78e7184c253178731705681faa26fb3242fc8b2a763c474d04b9d3a02e7a8
|
||||||
|
size 249556672
|
||||||
3
checkpoint-11500/rng_state.pth
Normal file
3
checkpoint-11500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1a7f01802c2a672cb0a904e362fce60cd31d2224f84af56181f0ab1a4cc977aa
|
||||||
|
size 14645
|
||||||
1249
checkpoint-11500/special_tokens_map.json
Normal file
1249
checkpoint-11500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11500/spiece.model
Normal file
3
checkpoint-11500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-11500/tokenizer_config.json
Normal file
10825
checkpoint-11500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
23287
checkpoint-11500/trainer_state.json
Normal file
23287
checkpoint-11500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11500/training_args.bin
Normal file
3
checkpoint-11500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-11630/added_tokens.json
Normal file
1202
checkpoint-11630/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-11630/config.json
Normal file
34
checkpoint-11630/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-11630/generation_config.json
Normal file
9
checkpoint-11630/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-11630/model.safetensors
Normal file
3
checkpoint-11630/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:04a34b932b8da16d598859c402c31c78a74ebb445cd765495f0580ab47367b52
|
||||||
|
size 249556672
|
||||||
3
checkpoint-11630/rng_state.pth
Normal file
3
checkpoint-11630/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:981141c9c3c490542d587bf5c201f07e0d9f6601c3d3adac2beab7fa2b76ebb4
|
||||||
|
size 14645
|
||||||
1249
checkpoint-11630/special_tokens_map.json
Normal file
1249
checkpoint-11630/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11630/spiece.model
Normal file
3
checkpoint-11630/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-11630/tokenizer_config.json
Normal file
10825
checkpoint-11630/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
23547
checkpoint-11630/trainer_state.json
Normal file
23547
checkpoint-11630/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-11630/training_args.bin
Normal file
3
checkpoint-11630/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-1500/added_tokens.json
Normal file
1202
checkpoint-1500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-1500/config.json
Normal file
34
checkpoint-1500/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-1500/generation_config.json
Normal file
9
checkpoint-1500/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-1500/model.safetensors
Normal file
3
checkpoint-1500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:052e8d2d3606ea6f1fe585087fb3b5cb6a8db45c7c0c651db74937c83b0c8588
|
||||||
|
size 249556672
|
||||||
3
checkpoint-1500/rng_state.pth
Normal file
3
checkpoint-1500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bf4d935a510a09d613c7b1bf2be558a1b558b0ce5f011f6fe52ed0dbdac82830
|
||||||
|
size 14645
|
||||||
1249
checkpoint-1500/special_tokens_map.json
Normal file
1249
checkpoint-1500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-1500/spiece.model
Normal file
3
checkpoint-1500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-1500/tokenizer_config.json
Normal file
10825
checkpoint-1500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
3067
checkpoint-1500/trainer_state.json
Normal file
3067
checkpoint-1500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-1500/training_args.bin
Normal file
3
checkpoint-1500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-2000/added_tokens.json
Normal file
1202
checkpoint-2000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-2000/config.json
Normal file
34
checkpoint-2000/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-2000/generation_config.json
Normal file
9
checkpoint-2000/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-2000/model.safetensors
Normal file
3
checkpoint-2000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:845ac7f5b6393532fdb21e8108531e69035e41c7fefe722c78a3739ca7b7fe0e
|
||||||
|
size 249556672
|
||||||
3
checkpoint-2000/rng_state.pth
Normal file
3
checkpoint-2000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b82855d2a5abf4e1b17f644df9c0ffd17c6db6b714b0e701d6b1bcfeaba5755b
|
||||||
|
size 14645
|
||||||
1249
checkpoint-2000/special_tokens_map.json
Normal file
1249
checkpoint-2000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-2000/spiece.model
Normal file
3
checkpoint-2000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-2000/tokenizer_config.json
Normal file
10825
checkpoint-2000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
4078
checkpoint-2000/trainer_state.json
Normal file
4078
checkpoint-2000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-2000/training_args.bin
Normal file
3
checkpoint-2000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-2500/added_tokens.json
Normal file
1202
checkpoint-2500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-2500/config.json
Normal file
34
checkpoint-2500/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-2500/generation_config.json
Normal file
9
checkpoint-2500/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-2500/model.safetensors
Normal file
3
checkpoint-2500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4fbaab243b3d9c12a149166efbd4bfc7409235fcff1528d43c8f281d7d4167b6
|
||||||
|
size 249556672
|
||||||
3
checkpoint-2500/rng_state.pth
Normal file
3
checkpoint-2500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a1237c483e21f9d1a2ff53c3addba3ecb37b597b3affb652e404fe79744ddc0b
|
||||||
|
size 14645
|
||||||
1249
checkpoint-2500/special_tokens_map.json
Normal file
1249
checkpoint-2500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-2500/spiece.model
Normal file
3
checkpoint-2500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
10825
checkpoint-2500/tokenizer_config.json
Normal file
10825
checkpoint-2500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
5089
checkpoint-2500/trainer_state.json
Normal file
5089
checkpoint-2500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-2500/training_args.bin
Normal file
3
checkpoint-2500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e3f4c4a77dd409761577b520e12d7c936046fe1ab583b7ef30a0e51d097177b
|
||||||
|
size 6353
|
||||||
1202
checkpoint-3000/added_tokens.json
Normal file
1202
checkpoint-3000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-3000/config.json
Normal file
34
checkpoint-3000/config.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"dtype": "bfloat16",
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50001,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 512,
|
||||||
|
"n_embd": 768,
|
||||||
|
"n_head": 12,
|
||||||
|
"n_inner": 3072,
|
||||||
|
"n_layer": 12,
|
||||||
|
"n_positions": 512,
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"prefix": "[CLS]",
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"transformers_version": "4.56.2",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 51200
|
||||||
|
}
|
||||||
9
checkpoint-3000/generation_config.json
Normal file
9
checkpoint-3000/generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50000,
|
||||||
|
"eos_token_id": [
|
||||||
|
50001
|
||||||
|
],
|
||||||
|
"pad_token_id": 50002,
|
||||||
|
"transformers_version": "4.56.2"
|
||||||
|
}
|
||||||
3
checkpoint-3000/model.safetensors
Normal file
3
checkpoint-3000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:48fbf9c739da4834a6b364a418680490a2e072ff7a9ba8af094da200a4ec499f
|
||||||
|
size 249556672
|
||||||
3
checkpoint-3000/rng_state.pth
Normal file
3
checkpoint-3000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3e4077eb0625a0a12f4f3dee94a616d3d4b9481a395b7e0d1ebf9d3743372086
|
||||||
|
size 14645
|
||||||
1249
checkpoint-3000/special_tokens_map.json
Normal file
1249
checkpoint-3000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-3000/spiece.model
Normal file
3
checkpoint-3000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f712559c1ce506dfb7aa691ca770055d2170d3339aa7ee2e0e463181c2fe1e01
|
||||||
|
size 1173726
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user