初始化项目,由ModelHub XC社区提供模型
Model: fpadovani/swe-latn-10mb-100mb_seed3407 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: goldfish-models/swe_latn_10mb
|
||||||
|
library_name: transformers
|
||||||
|
model_name: swe-latn-10mb-100mb_seed3407
|
||||||
|
tags:
|
||||||
|
- generated_from_trainer
|
||||||
|
- trl
|
||||||
|
- sft
|
||||||
|
licence: license
|
||||||
|
---
|
||||||
|
|
||||||
|
# Model Card for swe-latn-10mb-100mb_seed3407
|
||||||
|
|
||||||
|
This model is a fine-tuned version of [goldfish-models/swe_latn_10mb](https://huggingface.co/goldfish-models/swe_latn_10mb).
|
||||||
|
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/swe-latn-10mb-100mb_seed3407", 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/43desdy2)
|
||||||
|
|
||||||
|
|
||||||
|
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-102000/added_tokens.json
Normal file
1202
checkpoint-102000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-102000/config.json
Normal file
34
checkpoint-102000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-102000/generation_config.json
Normal file
9
checkpoint-102000/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-102000/model.safetensors
Normal file
3
checkpoint-102000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:30fa7759234a4babece6e2d8a11e9f4a051371cf2b6ef1d1a9db33cae2cdc0e6
|
||||||
|
size 78179408
|
||||||
3
checkpoint-102000/rng_state.pth
Normal file
3
checkpoint-102000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e63b9c7fa22296b40cc5ed0efeb2074a85c843264f88e19ff5abca22176e8466
|
||||||
|
size 14645
|
||||||
1249
checkpoint-102000/special_tokens_map.json
Normal file
1249
checkpoint-102000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-102000/spiece.model
Normal file
3
checkpoint-102000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-102000/tokenizer_config.json
Normal file
10825
checkpoint-102000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
204408
checkpoint-102000/trainer_state.json
Normal file
204408
checkpoint-102000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-102000/training_args.bin
Normal file
3
checkpoint-102000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-105000/added_tokens.json
Normal file
1202
checkpoint-105000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-105000/config.json
Normal file
34
checkpoint-105000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-105000/generation_config.json
Normal file
9
checkpoint-105000/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-105000/model.safetensors
Normal file
3
checkpoint-105000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9bbad3aba3bff6189c7ed98caab3d54637c11ddff327b542cafbb66693f666e0
|
||||||
|
size 78179408
|
||||||
3
checkpoint-105000/rng_state.pth
Normal file
3
checkpoint-105000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d0348b5d5403640bf8ec459d05dba290ef617234d11fe7500e3b23571e57a781
|
||||||
|
size 14645
|
||||||
1249
checkpoint-105000/special_tokens_map.json
Normal file
1249
checkpoint-105000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-105000/spiece.model
Normal file
3
checkpoint-105000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-105000/tokenizer_config.json
Normal file
10825
checkpoint-105000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
210419
checkpoint-105000/trainer_state.json
Normal file
210419
checkpoint-105000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-105000/training_args.bin
Normal file
3
checkpoint-105000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-108000/added_tokens.json
Normal file
1202
checkpoint-108000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-108000/config.json
Normal file
34
checkpoint-108000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-108000/generation_config.json
Normal file
9
checkpoint-108000/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-108000/model.safetensors
Normal file
3
checkpoint-108000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4a9ed1adbd8b97ebb7728a2dc13953384053b4f1a44d9044faee9081b1060579
|
||||||
|
size 78179408
|
||||||
3
checkpoint-108000/rng_state.pth
Normal file
3
checkpoint-108000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c4e087afc181240576a9e3bc5e13b20ea97e3637bbb1604b9aa4679711f66fc2
|
||||||
|
size 14645
|
||||||
1249
checkpoint-108000/special_tokens_map.json
Normal file
1249
checkpoint-108000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-108000/spiece.model
Normal file
3
checkpoint-108000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-108000/tokenizer_config.json
Normal file
10825
checkpoint-108000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
216430
checkpoint-108000/trainer_state.json
Normal file
216430
checkpoint-108000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-108000/training_args.bin
Normal file
3
checkpoint-108000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-111000/added_tokens.json
Normal file
1202
checkpoint-111000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-111000/config.json
Normal file
34
checkpoint-111000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-111000/generation_config.json
Normal file
9
checkpoint-111000/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-111000/model.safetensors
Normal file
3
checkpoint-111000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7a7303fa5bb867bc78f978a3a31533f69eab2e00f36f28dd5c5afec597782940
|
||||||
|
size 78179408
|
||||||
3
checkpoint-111000/rng_state.pth
Normal file
3
checkpoint-111000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:35ea43a73a4d411da6a57dd9bdf2967014076400ff53cffd5f09823a2cdd67e5
|
||||||
|
size 14645
|
||||||
1249
checkpoint-111000/special_tokens_map.json
Normal file
1249
checkpoint-111000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-111000/spiece.model
Normal file
3
checkpoint-111000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-111000/tokenizer_config.json
Normal file
10825
checkpoint-111000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
222441
checkpoint-111000/trainer_state.json
Normal file
222441
checkpoint-111000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-111000/training_args.bin
Normal file
3
checkpoint-111000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-114000/added_tokens.json
Normal file
1202
checkpoint-114000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-114000/config.json
Normal file
34
checkpoint-114000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-114000/generation_config.json
Normal file
9
checkpoint-114000/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-114000/model.safetensors
Normal file
3
checkpoint-114000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cac63060523b56ef7f8c3b45f347e04603d0b20369a0a7eae09d1d0223833d5d
|
||||||
|
size 78179408
|
||||||
3
checkpoint-114000/rng_state.pth
Normal file
3
checkpoint-114000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fad98e56eb538afcefdf92f3a770a50caa0daa0930ee904b04bc0fd21870b3c5
|
||||||
|
size 14645
|
||||||
1249
checkpoint-114000/special_tokens_map.json
Normal file
1249
checkpoint-114000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-114000/spiece.model
Normal file
3
checkpoint-114000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-114000/tokenizer_config.json
Normal file
10825
checkpoint-114000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
228452
checkpoint-114000/trainer_state.json
Normal file
228452
checkpoint-114000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-114000/training_args.bin
Normal file
3
checkpoint-114000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-117000/added_tokens.json
Normal file
1202
checkpoint-117000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-117000/config.json
Normal file
34
checkpoint-117000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-117000/generation_config.json
Normal file
9
checkpoint-117000/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-117000/model.safetensors
Normal file
3
checkpoint-117000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:12029228f996a3bd9224b806b557ccc176a75540d426f6403dbc319b45fb0912
|
||||||
|
size 78179408
|
||||||
3
checkpoint-117000/rng_state.pth
Normal file
3
checkpoint-117000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fc891fe0c47bed07e1f6d51fc33bfc4692e6b2a9134f6febc704aee6899163fc
|
||||||
|
size 14645
|
||||||
1249
checkpoint-117000/special_tokens_map.json
Normal file
1249
checkpoint-117000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-117000/spiece.model
Normal file
3
checkpoint-117000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-117000/tokenizer_config.json
Normal file
10825
checkpoint-117000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
234463
checkpoint-117000/trainer_state.json
Normal file
234463
checkpoint-117000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-117000/training_args.bin
Normal file
3
checkpoint-117000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-119020/added_tokens.json
Normal file
1202
checkpoint-119020/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-119020/config.json
Normal file
34
checkpoint-119020/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-119020/generation_config.json
Normal file
9
checkpoint-119020/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-119020/model.safetensors
Normal file
3
checkpoint-119020/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8e306af0ca58cdc420a7b013b8a937d2d7ea6216a6370d6f63d0914a47396d07
|
||||||
|
size 78179408
|
||||||
3
checkpoint-119020/rng_state.pth
Normal file
3
checkpoint-119020/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:99aa8cfc79594dda6729a2b0cbdf931f7d81804de1c9d0dd87a6ba689110e470
|
||||||
|
size 14645
|
||||||
1249
checkpoint-119020/special_tokens_map.json
Normal file
1249
checkpoint-119020/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-119020/spiece.model
Normal file
3
checkpoint-119020/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-119020/tokenizer_config.json
Normal file
10825
checkpoint-119020/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
238503
checkpoint-119020/trainer_state.json
Normal file
238503
checkpoint-119020/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-119020/training_args.bin
Normal file
3
checkpoint-119020/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-12000/added_tokens.json
Normal file
1202
checkpoint-12000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-12000/config.json
Normal file
34
checkpoint-12000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-12000/generation_config.json
Normal file
9
checkpoint-12000/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-12000/model.safetensors
Normal file
3
checkpoint-12000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:46d3bc4e263dd2c857aa0f242f62ea83fe4aa03088e7b565b63c4425d462003e
|
||||||
|
size 78179408
|
||||||
3
checkpoint-12000/rng_state.pth
Normal file
3
checkpoint-12000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8086968c6f84cf169b33eb66e712bd9c19b14a78876c6a662f8d85ea7524c691
|
||||||
|
size 14645
|
||||||
1249
checkpoint-12000/special_tokens_map.json
Normal file
1249
checkpoint-12000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-12000/spiece.model
Normal file
3
checkpoint-12000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-12000/tokenizer_config.json
Normal file
10825
checkpoint-12000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
24078
checkpoint-12000/trainer_state.json
Normal file
24078
checkpoint-12000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-12000/training_args.bin
Normal file
3
checkpoint-12000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-15000/added_tokens.json
Normal file
1202
checkpoint-15000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-15000/config.json
Normal file
34
checkpoint-15000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-15000/generation_config.json
Normal file
9
checkpoint-15000/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-15000/model.safetensors
Normal file
3
checkpoint-15000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d6e11a0f5c73770079b912b767c6875c2d5d2a5c63a01cf22945a7af4a291c5c
|
||||||
|
size 78179408
|
||||||
3
checkpoint-15000/rng_state.pth
Normal file
3
checkpoint-15000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9455ed41c164a602091b14190bc3ef597975a158bb7ba0cf8da696f039f793a6
|
||||||
|
size 14645
|
||||||
1249
checkpoint-15000/special_tokens_map.json
Normal file
1249
checkpoint-15000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-15000/spiece.model
Normal file
3
checkpoint-15000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
10825
checkpoint-15000/tokenizer_config.json
Normal file
10825
checkpoint-15000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
30089
checkpoint-15000/trainer_state.json
Normal file
30089
checkpoint-15000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-15000/training_args.bin
Normal file
3
checkpoint-15000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1194893e85ecf6efab4da1ec7a6f72e75d60bee8886cefedf3f56aaec356e77c
|
||||||
|
size 6289
|
||||||
1202
checkpoint-18000/added_tokens.json
Normal file
1202
checkpoint-18000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-18000/config.json
Normal file
34
checkpoint-18000/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": 512,
|
||||||
|
"n_head": 8,
|
||||||
|
"n_inner": 2048,
|
||||||
|
"n_layer": 4,
|
||||||
|
"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-18000/generation_config.json
Normal file
9
checkpoint-18000/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-18000/model.safetensors
Normal file
3
checkpoint-18000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cb7988c5796af9fcc98d1bfc0a0e824f012c790978e9c57c51f0880aa9be1cb4
|
||||||
|
size 78179408
|
||||||
3
checkpoint-18000/rng_state.pth
Normal file
3
checkpoint-18000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d6d62063f6745a4d5b9e0bfc68da325c5f8e2d69e0ceb41e379d9b9eb8698397
|
||||||
|
size 14645
|
||||||
1249
checkpoint-18000/special_tokens_map.json
Normal file
1249
checkpoint-18000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-18000/spiece.model
Normal file
3
checkpoint-18000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8271d1417e6fd5086cb5cf30c822b0bd079bd1a54aa5188d09f57dc3475b84f
|
||||||
|
size 1159614
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user