初始化项目,由ModelHub XC社区提供模型
Model: fpadovani/eng-latn-10mb-after-ppt-sort-curriculum_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: fpadovani/ppt-sort-curriculum-10mb_seed3407
|
||||||
|
library_name: transformers
|
||||||
|
model_name: eng-latn-10mb-after-ppt-sort-curriculum_seed3407
|
||||||
|
tags:
|
||||||
|
- generated_from_trainer
|
||||||
|
- trl
|
||||||
|
- sft
|
||||||
|
licence: license
|
||||||
|
---
|
||||||
|
|
||||||
|
# Model Card for eng-latn-10mb-after-ppt-sort-curriculum_seed3407
|
||||||
|
|
||||||
|
This model is a fine-tuned version of [fpadovani/ppt-sort-curriculum-10mb_seed3407](https://huggingface.co/fpadovani/ppt-sort-curriculum-10mb_seed3407).
|
||||||
|
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/eng-latn-10mb-after-ppt-sort-curriculum_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/ppt_procedural/runs/qwm9n21c)
|
||||||
|
|
||||||
|
|
||||||
|
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": 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-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:4efc60207390a37270fee56d8d4f68c7797a35fe8c9165e2363a08f2844319e6
|
||||||
|
size 78179408
|
||||||
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:95e0d8eafdded56beedab502947585c57a8f46eede7e08c04b3334a8a26a4c88
|
||||||
|
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:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
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:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
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": 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-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:129c0cce1e1a7a1f8dc9295d956199167ce63f80e33b8fc008134dad00463bbb
|
||||||
|
size 78179408
|
||||||
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:e42b2bd9398c2bff6998157cccaf5cc54ada80483084aa94b3e3625d1fb3adc9
|
||||||
|
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:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
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:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
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": 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-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:c8b03774347e367c7475b069d90b1d55491957c081c8eb9e678b91f68c58607f
|
||||||
|
size 78179408
|
||||||
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:f9932fd624c4becc6d6422c054678930cfe246972539e716e35038f5eb11e916
|
||||||
|
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:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
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:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
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": 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-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:3e62033e52b7e4c30e418d4ce9bb9e0b8407bef8bd1ff8c947e7db3296eb278e
|
||||||
|
size 78179408
|
||||||
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:10e73cc44dedec2d71b5bee8f28719c03b8c50b9a7050f08dc5a871049c4af39
|
||||||
|
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:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
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:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
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": 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-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:4c7c2decc0255786c2b287993a16b1dbfe4b45c5e6eeaac9545911e37fbe9266
|
||||||
|
size 78179408
|
||||||
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:62a2abfda180ffc425d16a53e24f0029331c66e8643a4462089261380d11f450
|
||||||
|
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:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
10825
checkpoint-3000/tokenizer_config.json
Normal file
10825
checkpoint-3000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
6100
checkpoint-3000/trainer_state.json
Normal file
6100
checkpoint-3000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-3000/training_args.bin
Normal file
3
checkpoint-3000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
size 6353
|
||||||
1202
checkpoint-3500/added_tokens.json
Normal file
1202
checkpoint-3500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-3500/config.json
Normal file
34
checkpoint-3500/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-3500/generation_config.json
Normal file
9
checkpoint-3500/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-3500/model.safetensors
Normal file
3
checkpoint-3500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8dccb563aa74ea9accd522ba405d552df0e7607637e52781f21d2f594fe6c49
|
||||||
|
size 78179408
|
||||||
3
checkpoint-3500/rng_state.pth
Normal file
3
checkpoint-3500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5ba787e950d34e4b479479a9b3d3bdffcebfa583b5d211398f941c8a2445d6d5
|
||||||
|
size 14645
|
||||||
1249
checkpoint-3500/special_tokens_map.json
Normal file
1249
checkpoint-3500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-3500/spiece.model
Normal file
3
checkpoint-3500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
10825
checkpoint-3500/tokenizer_config.json
Normal file
10825
checkpoint-3500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
7111
checkpoint-3500/trainer_state.json
Normal file
7111
checkpoint-3500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-3500/training_args.bin
Normal file
3
checkpoint-3500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
size 6353
|
||||||
1202
checkpoint-4000/added_tokens.json
Normal file
1202
checkpoint-4000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-4000/config.json
Normal file
34
checkpoint-4000/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-4000/generation_config.json
Normal file
9
checkpoint-4000/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-4000/model.safetensors
Normal file
3
checkpoint-4000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9044898a7c434e2bc905d32cf8a3e700bee8c251c0409e3de7ddc294550bdf40
|
||||||
|
size 78179408
|
||||||
3
checkpoint-4000/rng_state.pth
Normal file
3
checkpoint-4000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9b4a3160b3638b79bff7a4ef99151cfde46092347edc03b9783a4ba3ebdb23d8
|
||||||
|
size 14645
|
||||||
1249
checkpoint-4000/special_tokens_map.json
Normal file
1249
checkpoint-4000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-4000/spiece.model
Normal file
3
checkpoint-4000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
10825
checkpoint-4000/tokenizer_config.json
Normal file
10825
checkpoint-4000/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
8122
checkpoint-4000/trainer_state.json
Normal file
8122
checkpoint-4000/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-4000/training_args.bin
Normal file
3
checkpoint-4000/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
size 6353
|
||||||
1202
checkpoint-4500/added_tokens.json
Normal file
1202
checkpoint-4500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-4500/config.json
Normal file
34
checkpoint-4500/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-4500/generation_config.json
Normal file
9
checkpoint-4500/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-4500/model.safetensors
Normal file
3
checkpoint-4500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6d26a27c53fabddb66e00f003120e3397acfa8b9b23dd73c3ab50bf4537e9b66
|
||||||
|
size 78179408
|
||||||
3
checkpoint-4500/rng_state.pth
Normal file
3
checkpoint-4500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:01f83b5e1c45282687f6d58ee70492a4b01ef509d47bac5e3c76352324ffe29b
|
||||||
|
size 14645
|
||||||
1249
checkpoint-4500/special_tokens_map.json
Normal file
1249
checkpoint-4500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-4500/spiece.model
Normal file
3
checkpoint-4500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
10825
checkpoint-4500/tokenizer_config.json
Normal file
10825
checkpoint-4500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
9133
checkpoint-4500/trainer_state.json
Normal file
9133
checkpoint-4500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-4500/training_args.bin
Normal file
3
checkpoint-4500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
size 6353
|
||||||
1202
checkpoint-500/added_tokens.json
Normal file
1202
checkpoint-500/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-500/config.json
Normal file
34
checkpoint-500/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-500/generation_config.json
Normal file
9
checkpoint-500/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-500/model.safetensors
Normal file
3
checkpoint-500/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3c0483524bc953fa968d09fd684b780c5608934f477787e14439bd3e5bb55923
|
||||||
|
size 78179408
|
||||||
3
checkpoint-500/rng_state.pth
Normal file
3
checkpoint-500/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:86bd09304e1bdf418394e8c2a011c9465b40c739b8c2101b317ec838df4aa5db
|
||||||
|
size 14645
|
||||||
1249
checkpoint-500/special_tokens_map.json
Normal file
1249
checkpoint-500/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-500/spiece.model
Normal file
3
checkpoint-500/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
10825
checkpoint-500/tokenizer_config.json
Normal file
10825
checkpoint-500/tokenizer_config.json
Normal file
File diff suppressed because it is too large
Load Diff
1045
checkpoint-500/trainer_state.json
Normal file
1045
checkpoint-500/trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-500/training_args.bin
Normal file
3
checkpoint-500/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6e22451c7cc81bd97baa8751a481a38273badd4fe649cec15b79ce88e23e73ec
|
||||||
|
size 6353
|
||||||
1202
checkpoint-5000/added_tokens.json
Normal file
1202
checkpoint-5000/added_tokens.json
Normal file
File diff suppressed because it is too large
Load Diff
34
checkpoint-5000/config.json
Normal file
34
checkpoint-5000/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-5000/generation_config.json
Normal file
9
checkpoint-5000/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-5000/model.safetensors
Normal file
3
checkpoint-5000/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:34275b25f62df5877f110c259282f19350c0ecb46e969b2409e8a5cba8ec7377
|
||||||
|
size 78179408
|
||||||
3
checkpoint-5000/rng_state.pth
Normal file
3
checkpoint-5000/rng_state.pth
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ef754a6685d50045652654478f26d9577f360aac47048c0561ebfeb288a2824d
|
||||||
|
size 14645
|
||||||
1249
checkpoint-5000/special_tokens_map.json
Normal file
1249
checkpoint-5000/special_tokens_map.json
Normal file
File diff suppressed because it is too large
Load Diff
3
checkpoint-5000/spiece.model
Normal file
3
checkpoint-5000/spiece.model
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0cc7d2d7e6989f700f65432cac2fcb2a9e872d11d2c9166338a1cc423019e6e
|
||||||
|
size 1100651
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user