初始化项目,由ModelHub XC社区提供模型
Model: Gueule-d-ange/aup-fullft-kto_mmd-mmdrho5.19e-3_kr0.1-seed2024 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 @@
|
||||
---
|
||||
library_name: transformers
|
||||
license: other
|
||||
base_model: EleutherAI/pythia-1.4b
|
||||
tags:
|
||||
- llama-factory
|
||||
- full
|
||||
- generated_from_trainer
|
||||
model-index:
|
||||
- name: fullft_kto_mmd_mmdrho5.19e-3_kr0.1_seed2024
|
||||
results: []
|
||||
---
|
||||
|
||||
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
||||
should probably proofread and complete it, then remove this comment. -->
|
||||
|
||||
# fullft_kto_mmd_mmdrho5.19e-3_kr0.1_seed2024
|
||||
|
||||
This model is a fine-tuned version of [EleutherAI/pythia-1.4b](https://huggingface.co/EleutherAI/pythia-1.4b) on the uf_label_pool_kto dataset.
|
||||
|
||||
## Model description
|
||||
|
||||
More information needed
|
||||
|
||||
## Intended uses & limitations
|
||||
|
||||
More information needed
|
||||
|
||||
## Training and evaluation data
|
||||
|
||||
More information needed
|
||||
|
||||
## Training procedure
|
||||
|
||||
### Training hyperparameters
|
||||
|
||||
The following hyperparameters were used during training:
|
||||
- learning_rate: 1e-06
|
||||
- train_batch_size: 8
|
||||
- eval_batch_size: 8
|
||||
- seed: 2024
|
||||
- gradient_accumulation_steps: 8
|
||||
- total_train_batch_size: 64
|
||||
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
||||
- lr_scheduler_type: cosine
|
||||
- lr_scheduler_warmup_steps: 100
|
||||
- num_epochs: 3.0
|
||||
|
||||
### Training results
|
||||
|
||||
|
||||
|
||||
### Framework versions
|
||||
|
||||
- Transformers 4.57.1
|
||||
- Pytorch 2.12.1+cu130
|
||||
- Datasets 4.0.0
|
||||
- Tokenizers 0.22.2
|
||||
8
all_results.json
Normal file
8
all_results.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"epoch": 3.0,
|
||||
"total_flos": 9.975174191323546e+17,
|
||||
"train_loss": 0.5582944930938035,
|
||||
"train_runtime": 11062.9397,
|
||||
"train_samples_per_second": 13.398,
|
||||
"train_steps_per_second": 0.209
|
||||
}
|
||||
4
chat_template.jinja
Normal file
4
chat_template.jinja
Normal file
@@ -0,0 +1,4 @@
|
||||
{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% endif %}{% if system_message is defined %}{{ 'System: ' + system_message + '<|endoftext|>' + '
|
||||
' }}{% endif %}{% for message in loop_messages %}{% set content = message['content'] %}{% if message['role'] == 'user' %}{{ 'Human: ' + content + '<|endoftext|>' + '
|
||||
Assistant:' }}{% elif message['role'] == 'assistant' %}{{ content + '<|endoftext|>' + '
|
||||
' }}{% endif %}{% endfor %}
|
||||
32
config.json
Normal file
32
config.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"architectures": [
|
||||
"GPTNeoXForCausalLM"
|
||||
],
|
||||
"attention_bias": true,
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 0,
|
||||
"classifier_dropout": 0.1,
|
||||
"dtype": "float32",
|
||||
"eos_token_id": 0,
|
||||
"hidden_act": "gelu",
|
||||
"hidden_dropout": 0.0,
|
||||
"hidden_size": 2048,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 8192,
|
||||
"layer_norm_eps": 1e-05,
|
||||
"max_position_embeddings": 2048,
|
||||
"model_type": "gpt_neox",
|
||||
"num_attention_heads": 16,
|
||||
"num_hidden_layers": 24,
|
||||
"pad_token_id": 0,
|
||||
"partial_rotary_factor": 0.25,
|
||||
"rope_scaling": null,
|
||||
"rope_theta": 10000,
|
||||
"rotary_emb_base": 10000,
|
||||
"rotary_pct": 0.25,
|
||||
"tie_word_embeddings": false,
|
||||
"transformers_version": "4.57.1",
|
||||
"use_cache": false,
|
||||
"use_parallel_residual": true,
|
||||
"vocab_size": 50304
|
||||
}
|
||||
10
generation_config.json
Normal file
10
generation_config.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 0,
|
||||
"eos_token_id": [
|
||||
0
|
||||
],
|
||||
"pad_token_id": 0,
|
||||
"transformers_version": "4.57.1",
|
||||
"use_cache": false
|
||||
}
|
||||
3
model-00001-of-00002.safetensors
Normal file
3
model-00001-of-00002.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6b715b355c36d3573931abbc8bfe69f2101167b5d7f7dd8af6dc207024dbfd0
|
||||
size 4977966760
|
||||
3
model-00002-of-00002.safetensors
Normal file
3
model-00002-of-00002.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b4209cfe60217cea8b12586c929af21641f3aff488564a9853f6fb694ee83f5
|
||||
size 680658856
|
||||
300
model.safetensors.index.json
Normal file
300
model.safetensors.index.json
Normal file
@@ -0,0 +1,300 @@
|
||||
{
|
||||
"metadata": {
|
||||
"total_parameters": 1414647808,
|
||||
"total_size": 5658591232
|
||||
},
|
||||
"weight_map": {
|
||||
"embed_out.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.embed_in.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.final_layer_norm.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.final_layer_norm.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.mlp.dense_4h_to_h.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.mlp.dense_4h_to_h.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.attention.dense.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.attention.dense.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.attention.query_key_value.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.attention.query_key_value.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.mlp.dense_4h_to_h.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.mlp.dense_4h_to_h.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.mlp.dense_h_to_4h.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.mlp.dense_h_to_4h.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.attention.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.attention.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.attention.query_key_value.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.attention.query_key_value.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.mlp.dense_4h_to_h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.mlp.dense_4h_to_h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.mlp.dense_h_to_4h.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.mlp.dense_h_to_4h.weight": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"gpt_neox.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors"
|
||||
}
|
||||
}
|
||||
24
special_tokens_map.json
Normal file
24
special_tokens_map.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"bos_token": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"eos_token": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"pad_token": "<|endoftext|>",
|
||||
"unk_token": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
}
|
||||
}
|
||||
250582
tokenizer.json
Normal file
250582
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
217
tokenizer_config.json
Normal file
217
tokenizer_config.json
Normal file
@@ -0,0 +1,217 @@
|
||||
{
|
||||
"add_bos_token": false,
|
||||
"add_eos_token": false,
|
||||
"add_prefix_space": false,
|
||||
"added_tokens_decoder": {
|
||||
"0": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"1": {
|
||||
"content": "<|padding|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"50254": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50255": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50256": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50257": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50258": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50259": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50260": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50261": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50262": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50263": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50264": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50265": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50266": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50267": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50268": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50269": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50270": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50271": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50272": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50273": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50274": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50275": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50276": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
}
|
||||
},
|
||||
"bos_token": "<|endoftext|>",
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": "<|endoftext|>",
|
||||
"extra_special_tokens": {},
|
||||
"model_max_length": 1000000000000000019884624838656,
|
||||
"pad_token": "<|endoftext|>",
|
||||
"padding_side": "right",
|
||||
"split_special_tokens": false,
|
||||
"tokenizer_class": "GPTNeoXTokenizer",
|
||||
"unk_token": "<|endoftext|>"
|
||||
}
|
||||
8
train_results.json
Normal file
8
train_results.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"epoch": 3.0,
|
||||
"total_flos": 9.975174191323546e+17,
|
||||
"train_loss": 0.5582944930938035,
|
||||
"train_runtime": 11062.9397,
|
||||
"train_samples_per_second": 13.398,
|
||||
"train_steps_per_second": 0.209
|
||||
}
|
||||
2228
trainer_state.json
Normal file
2228
trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
training_args.bin
Normal file
3
training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3cd021c7dc984d54419dd0ea70c859cf1f7369dbd1a768db695ee4e3d1563793
|
||||
size 6353
|
||||
BIN
training_loss.png
Normal file
BIN
training_loss.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 53 KiB |
BIN
training_loss_base_kto.png
Normal file
BIN
training_loss_base_kto.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
training_rewards_chosen.png
Normal file
BIN
training_rewards_chosen.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
BIN
training_rewards_margins.png
Normal file
BIN
training_rewards_margins.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
training_rewards_rejected.png
Normal file
BIN
training_rewards_rejected.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
Reference in New Issue
Block a user