初始化项目,由ModelHub XC社区提供模型
Model: fpadovani/swe-latn-100mb-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_100mb
|
||||||
|
library_name: transformers
|
||||||
|
model_name: swe-latn-100mb-100mb_seed3407
|
||||||
|
tags:
|
||||||
|
- generated_from_trainer
|
||||||
|
- trl
|
||||||
|
- sft
|
||||||
|
licence: license
|
||||||
|
---
|
||||||
|
|
||||||
|
# Model Card for swe-latn-100mb-100mb_seed3407
|
||||||
|
|
||||||
|
This model is a fine-tuned version of [goldfish-models/swe_latn_100mb](https://huggingface.co/goldfish-models/swe_latn_100mb).
|
||||||
|
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-100mb-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/qywqn9n6)
|
||||||
|
|
||||||
|
|
||||||
|
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": 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-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:5929b57455c814618aaf7ddec657b562715b133bb6b5993473b339cb8af38366
|
||||||
|
size 249556672
|
||||||
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:019b34b797aa0dd30a3a30ef7bd7e0d7b929e03785fed93f938d93d18871c29f
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:022dd086086e167facf61e1e29b9f49de54ce81b8a7c2e7104f5769f16968c43
|
||||||
|
size 249556672
|
||||||
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:99c9fd08136888fbf084432fcc683bae1eb9237fb5b6be8b58ffd80b2e84cc7f
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:db5d100bc527e22ef0885b1d90a3db671c424edd3b0b4bf85479a0b62079855e
|
||||||
|
size 249556672
|
||||||
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:1cdcd7dbf96cdcdd3ddcc9edc4b845e23170fcec3ae072f1df82ccf2a9218f17
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:79a6cba07dd4216c28605652ad21399d6445d3cb6fa7d0da9e1181a26f9212f7
|
||||||
|
size 249556672
|
||||||
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:9814a8c2307bcd69f023f3645c9c5575ff9d839816e98f7c8f479e50369a7552
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:d03e2a9e9a4083f0d930d9e5316fcb61480b12b0a7fac27be3ee04d8d30c7065
|
||||||
|
size 249556672
|
||||||
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:78e2575d17ee340aa76f8a03d9820518f19f17c6ff100ee17f363999298d7985
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:a33b1f60660b5b4a3c55154663d1feda62d80c7f244a988a3543cdcb8632b3fe
|
||||||
|
size 249556672
|
||||||
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:a3ffa60c2497d07e3fcb1ce432102ac8a5cfd64928e050bfc46dec958c34e2a7
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:b8d2de89519b60086bf78af83ba6b2dc91e4ce6ee4c30900b0f612341d7aca0e
|
||||||
|
size 249556672
|
||||||
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:48fdcb42da913abce4f9dda8b74abf9457fbb09b04355ca0427ce0f296752476
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:7a444ad727b09fb8baceaf6cc83849c211a97fc80fc08a9eb271b9962847290a
|
||||||
|
size 249556672
|
||||||
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:23dfbb0073acb79fc3cb600688b03e2684c7b88badc0a6b4a0f20fbb397451af
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:89b9ac9eef8d757bec4326e011f1ca26b9b053db174cec6760d1abd066c9b24f
|
||||||
|
size 249556672
|
||||||
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:7964fecba02a5de8bbf384bdccc09527df44f28810cc4848fa10b5554ad01734
|
||||||
|
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:feafafd49c2d9202c593e6cfa56d830a6d514f85389af7ee466ccc89ae5e6ee0
|
||||||
|
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": 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-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:15de41da7658602dafdaeda8798c6a55d66dc12552fe10cfef293a309bdb8777
|
||||||
|
size 249556672
|
||||||
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:b9d19ec93a30f1a03abb9cf9a7e19f1cdfdba0b36146cebfd836736df66e4e0f
|
||||||
|
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