Commit ·
5e0b231
1
Parent(s): 15791c7
Initial commit
Browse files- 1_Pooling/config.json +10 -0
- README.md +51 -3
- added_tokens.json +5 -0
- config.json +27 -0
- model-00001-of-00006.safetensors +3 -0
- model-00002-of-00006.safetensors +3 -0
- model-00003-of-00006.safetensors +3 -0
- model-00004-of-00006.safetensors +3 -0
- model-00005-of-00006.safetensors +3 -0
- model-00006-of-00006.safetensors +3 -0
- model.safetensors.index.json +297 -0
- modules.json +14 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +35 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +72 -0
1_Pooling/config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"word_embedding_dimension": 4096,
|
| 3 |
+
"pooling_mode_cls_token": false,
|
| 4 |
+
"pooling_mode_mean_tokens": false,
|
| 5 |
+
"pooling_mode_max_tokens": false,
|
| 6 |
+
"pooling_mode_mean_sqrt_len_tokens": false,
|
| 7 |
+
"pooling_mode_weightedmean_tokens": false,
|
| 8 |
+
"pooling_mode_lasttoken": true,
|
| 9 |
+
"include_prompt": true
|
| 10 |
+
}
|
README.md
CHANGED
|
@@ -1,3 +1,51 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
tags:
|
| 6 |
+
- sentence-transformers
|
| 7 |
+
- sentence-similarity
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
## LGAI-Embedding-Preview
|
| 12 |
+
|
| 13 |
+
we have trained the **LGAI-Embedding-Preview** model based on the [Mistral-7B](https://huggingface.co/mistralai/Mistral-7B-v0.1) LLM model.
|
| 14 |
+
|
| 15 |
+
The initial goal is to reproduce the baseline model and check the workflow for uploading results:
|
| 16 |
+
- [x] Checkpoint
|
| 17 |
+
- [x] technical report
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## MTEB
|
| 21 |
+
Inference is performed with in-context examples for MTEB evaluation.
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Model Information
|
| 25 |
+
- Model Size: 7B
|
| 26 |
+
- Embedding Dimension: 4096
|
| 27 |
+
- Max Input Tokens: 32k
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
## Requirements
|
| 31 |
+
```
|
| 32 |
+
transformers>=4.48.3
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
|
| 38 |
+
If you find this repository useful, please consider citing it.
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
```
|
| 42 |
+
@misc{choi2025lgannaembeddingtechnicalreport,
|
| 43 |
+
title={LG-ANNA-Embedding technical report},
|
| 44 |
+
author={Jooyoung Choi and Hyun Kim and Hansol Jang and Changwook Jun and Kyunghoon Bae and Hyewon Choi and Stanley Jungkyu Choi and Honglak Lee and Chulmin Yun},
|
| 45 |
+
year={2025},
|
| 46 |
+
eprint={2506.07438},
|
| 47 |
+
archivePrefix={arXiv},
|
| 48 |
+
primaryClass={cs.CL},
|
| 49 |
+
url={https://arxiv.org/abs/2506.07438},
|
| 50 |
+
}
|
| 51 |
+
```
|
added_tokens.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<instruct>": 32000,
|
| 3 |
+
"<query>": 32001,
|
| 4 |
+
"<response>": 32002
|
| 5 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "annamodels/LGAI-Embedding-Preview",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"MistralModel"
|
| 5 |
+
],
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 1,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 4096,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 14336,
|
| 14 |
+
"max_position_embeddings": 32768,
|
| 15 |
+
"model_type": "mistral",
|
| 16 |
+
"num_attention_heads": 32,
|
| 17 |
+
"num_hidden_layers": 32,
|
| 18 |
+
"num_key_value_heads": 8,
|
| 19 |
+
"rms_norm_eps": 1e-05,
|
| 20 |
+
"rope_theta": 10000.0,
|
| 21 |
+
"sliding_window": 4096,
|
| 22 |
+
"tie_word_embeddings": false,
|
| 23 |
+
"torch_dtype": "float32",
|
| 24 |
+
"transformers_version": "4.48.3",
|
| 25 |
+
"use_cache": false,
|
| 26 |
+
"vocab_size": 32003
|
| 27 |
+
}
|
model-00001-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:905969f8e44d3048179116fa2d92d8399e571bfe1c62a998c278aa13a0c6f86b
|
| 3 |
+
size 4987245800
|
model-00002-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:088a1c08fb9b591e0345f81c5b312bde2ccc75f4076e289bcbaa0e38bc3d8927
|
| 3 |
+
size 4899116152
|
model-00003-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e74625bbe91c13246e296d5956efbf86f2ef7f7cc1121f06e208948d654571b
|
| 3 |
+
size 4999812808
|
model-00004-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:836e2a453ba9d7d05cbdbb86a9f679e12ca3bc7d6af35ee26268091fb831dbe5
|
| 3 |
+
size 4999812808
|
model-00005-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f65d3e53c9f663999542686e06e22dc6d5638d676a12e33266469038a9c871b5
|
| 3 |
+
size 4832007216
|
model-00006-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d4558cf8e74e91ce01b46055591c83ac5c2879db9a1b67c0a4670864b52bdea
|
| 3 |
+
size 3724726552
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 28442689536
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"embed_tokens.weight": "model-00001-of-00006.safetensors",
|
| 7 |
+
"layers.0.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 8 |
+
"layers.0.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
| 9 |
+
"layers.0.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
| 10 |
+
"layers.0.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 11 |
+
"layers.0.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 12 |
+
"layers.0.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 13 |
+
"layers.0.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
| 14 |
+
"layers.0.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 15 |
+
"layers.0.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 16 |
+
"layers.1.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 17 |
+
"layers.1.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
| 18 |
+
"layers.1.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
| 19 |
+
"layers.1.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 20 |
+
"layers.1.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 21 |
+
"layers.1.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 22 |
+
"layers.1.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
| 23 |
+
"layers.1.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 24 |
+
"layers.1.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 25 |
+
"layers.10.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 26 |
+
"layers.10.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 27 |
+
"layers.10.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 28 |
+
"layers.10.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 29 |
+
"layers.10.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 30 |
+
"layers.10.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
| 31 |
+
"layers.10.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 32 |
+
"layers.10.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
| 33 |
+
"layers.10.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
| 34 |
+
"layers.11.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 35 |
+
"layers.11.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 36 |
+
"layers.11.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 37 |
+
"layers.11.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 38 |
+
"layers.11.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 39 |
+
"layers.11.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 40 |
+
"layers.11.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 41 |
+
"layers.11.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 42 |
+
"layers.11.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 43 |
+
"layers.12.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 44 |
+
"layers.12.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 45 |
+
"layers.12.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 46 |
+
"layers.12.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 47 |
+
"layers.12.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 48 |
+
"layers.12.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 49 |
+
"layers.12.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 50 |
+
"layers.12.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 51 |
+
"layers.12.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 52 |
+
"layers.13.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 53 |
+
"layers.13.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 54 |
+
"layers.13.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 55 |
+
"layers.13.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 56 |
+
"layers.13.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 57 |
+
"layers.13.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 58 |
+
"layers.13.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 59 |
+
"layers.13.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 60 |
+
"layers.13.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 61 |
+
"layers.14.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 62 |
+
"layers.14.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 63 |
+
"layers.14.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 64 |
+
"layers.14.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 65 |
+
"layers.14.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 66 |
+
"layers.14.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 67 |
+
"layers.14.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 68 |
+
"layers.14.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 69 |
+
"layers.14.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 70 |
+
"layers.15.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 71 |
+
"layers.15.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
| 72 |
+
"layers.15.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 73 |
+
"layers.15.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 74 |
+
"layers.15.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 75 |
+
"layers.15.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 76 |
+
"layers.15.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 77 |
+
"layers.15.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 78 |
+
"layers.15.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 79 |
+
"layers.16.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 80 |
+
"layers.16.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 81 |
+
"layers.16.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
| 82 |
+
"layers.16.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 83 |
+
"layers.16.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 84 |
+
"layers.16.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
| 85 |
+
"layers.16.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
| 86 |
+
"layers.16.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
| 87 |
+
"layers.16.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
| 88 |
+
"layers.17.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 89 |
+
"layers.17.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 90 |
+
"layers.17.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
| 91 |
+
"layers.17.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 92 |
+
"layers.17.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 93 |
+
"layers.17.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 94 |
+
"layers.17.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 95 |
+
"layers.17.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 96 |
+
"layers.17.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 97 |
+
"layers.18.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 98 |
+
"layers.18.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 99 |
+
"layers.18.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
| 100 |
+
"layers.18.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 101 |
+
"layers.18.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 102 |
+
"layers.18.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 103 |
+
"layers.18.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 104 |
+
"layers.18.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 105 |
+
"layers.18.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 106 |
+
"layers.19.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 107 |
+
"layers.19.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 108 |
+
"layers.19.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
| 109 |
+
"layers.19.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 110 |
+
"layers.19.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 111 |
+
"layers.19.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 112 |
+
"layers.19.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 113 |
+
"layers.19.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 114 |
+
"layers.19.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 115 |
+
"layers.2.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 116 |
+
"layers.2.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
| 117 |
+
"layers.2.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
| 118 |
+
"layers.2.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 119 |
+
"layers.2.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 120 |
+
"layers.2.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 121 |
+
"layers.2.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
| 122 |
+
"layers.2.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 123 |
+
"layers.2.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 124 |
+
"layers.20.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 125 |
+
"layers.20.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 126 |
+
"layers.20.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
| 127 |
+
"layers.20.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 128 |
+
"layers.20.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 129 |
+
"layers.20.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 130 |
+
"layers.20.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 131 |
+
"layers.20.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 132 |
+
"layers.20.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 133 |
+
"layers.21.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 134 |
+
"layers.21.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
| 135 |
+
"layers.21.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
| 136 |
+
"layers.21.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 137 |
+
"layers.21.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 138 |
+
"layers.21.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 139 |
+
"layers.21.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 140 |
+
"layers.21.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 141 |
+
"layers.21.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 142 |
+
"layers.22.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 143 |
+
"layers.22.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
| 144 |
+
"layers.22.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 145 |
+
"layers.22.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 146 |
+
"layers.22.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 147 |
+
"layers.22.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
| 148 |
+
"layers.22.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
| 149 |
+
"layers.22.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
| 150 |
+
"layers.22.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
| 151 |
+
"layers.23.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 152 |
+
"layers.23.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
| 153 |
+
"layers.23.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 154 |
+
"layers.23.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 155 |
+
"layers.23.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 156 |
+
"layers.23.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
| 157 |
+
"layers.23.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
| 158 |
+
"layers.23.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
| 159 |
+
"layers.23.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
| 160 |
+
"layers.24.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 161 |
+
"layers.24.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
| 162 |
+
"layers.24.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 163 |
+
"layers.24.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 164 |
+
"layers.24.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 165 |
+
"layers.24.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
| 166 |
+
"layers.24.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
| 167 |
+
"layers.24.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
| 168 |
+
"layers.24.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
| 169 |
+
"layers.25.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 170 |
+
"layers.25.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
| 171 |
+
"layers.25.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 172 |
+
"layers.25.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 173 |
+
"layers.25.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 174 |
+
"layers.25.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
| 175 |
+
"layers.25.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
| 176 |
+
"layers.25.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
| 177 |
+
"layers.25.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
| 178 |
+
"layers.26.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 179 |
+
"layers.26.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
| 180 |
+
"layers.26.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 181 |
+
"layers.26.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 182 |
+
"layers.26.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 183 |
+
"layers.26.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
| 184 |
+
"layers.26.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
| 185 |
+
"layers.26.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
| 186 |
+
"layers.26.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
| 187 |
+
"layers.27.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 188 |
+
"layers.27.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
| 189 |
+
"layers.27.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
| 190 |
+
"layers.27.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 191 |
+
"layers.27.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 192 |
+
"layers.27.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
| 193 |
+
"layers.27.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
| 194 |
+
"layers.27.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
| 195 |
+
"layers.27.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
| 196 |
+
"layers.28.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 197 |
+
"layers.28.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
| 198 |
+
"layers.28.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
| 199 |
+
"layers.28.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 200 |
+
"layers.28.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 201 |
+
"layers.28.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
| 202 |
+
"layers.28.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
| 203 |
+
"layers.28.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
| 204 |
+
"layers.28.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
| 205 |
+
"layers.29.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 206 |
+
"layers.29.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
| 207 |
+
"layers.29.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
| 208 |
+
"layers.29.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 209 |
+
"layers.29.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 210 |
+
"layers.29.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
| 211 |
+
"layers.29.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
| 212 |
+
"layers.29.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
| 213 |
+
"layers.29.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
| 214 |
+
"layers.3.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 215 |
+
"layers.3.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
| 216 |
+
"layers.3.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
| 217 |
+
"layers.3.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 218 |
+
"layers.3.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 219 |
+
"layers.3.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 220 |
+
"layers.3.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
| 221 |
+
"layers.3.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 222 |
+
"layers.3.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 223 |
+
"layers.30.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 224 |
+
"layers.30.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
| 225 |
+
"layers.30.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
| 226 |
+
"layers.30.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 227 |
+
"layers.30.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 228 |
+
"layers.30.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
| 229 |
+
"layers.30.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
| 230 |
+
"layers.30.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
| 231 |
+
"layers.30.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
| 232 |
+
"layers.31.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 233 |
+
"layers.31.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
| 234 |
+
"layers.31.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
| 235 |
+
"layers.31.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 236 |
+
"layers.31.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 237 |
+
"layers.31.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
| 238 |
+
"layers.31.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
| 239 |
+
"layers.31.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
| 240 |
+
"layers.31.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
| 241 |
+
"layers.4.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 242 |
+
"layers.4.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
| 243 |
+
"layers.4.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
| 244 |
+
"layers.4.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 245 |
+
"layers.4.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 246 |
+
"layers.4.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 247 |
+
"layers.4.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
| 248 |
+
"layers.4.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 249 |
+
"layers.4.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 250 |
+
"layers.5.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 251 |
+
"layers.5.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
| 252 |
+
"layers.5.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 253 |
+
"layers.5.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 254 |
+
"layers.5.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 255 |
+
"layers.5.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
| 256 |
+
"layers.5.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 257 |
+
"layers.5.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
| 258 |
+
"layers.5.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
| 259 |
+
"layers.6.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 260 |
+
"layers.6.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
| 261 |
+
"layers.6.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 262 |
+
"layers.6.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 263 |
+
"layers.6.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 264 |
+
"layers.6.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
| 265 |
+
"layers.6.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 266 |
+
"layers.6.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
| 267 |
+
"layers.6.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
| 268 |
+
"layers.7.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 269 |
+
"layers.7.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
| 270 |
+
"layers.7.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 271 |
+
"layers.7.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 272 |
+
"layers.7.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 273 |
+
"layers.7.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
| 274 |
+
"layers.7.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 275 |
+
"layers.7.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
| 276 |
+
"layers.7.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
| 277 |
+
"layers.8.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 278 |
+
"layers.8.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
| 279 |
+
"layers.8.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 280 |
+
"layers.8.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 281 |
+
"layers.8.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 282 |
+
"layers.8.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
| 283 |
+
"layers.8.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 284 |
+
"layers.8.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
| 285 |
+
"layers.8.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
| 286 |
+
"layers.9.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 287 |
+
"layers.9.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
| 288 |
+
"layers.9.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
| 289 |
+
"layers.9.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 290 |
+
"layers.9.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 291 |
+
"layers.9.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
| 292 |
+
"layers.9.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
| 293 |
+
"layers.9.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
| 294 |
+
"layers.9.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
| 295 |
+
"norm.weight": "model-00006-of-00006.safetensors"
|
| 296 |
+
}
|
| 297 |
+
}
|
modules.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"idx": 0,
|
| 4 |
+
"name": "0",
|
| 5 |
+
"path": "",
|
| 6 |
+
"type": "sentence_transformers.models.Transformer"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"idx": 1,
|
| 10 |
+
"name": "1",
|
| 11 |
+
"path": "1_Pooling",
|
| 12 |
+
"type": "sentence_transformers.models.Pooling"
|
| 13 |
+
}
|
| 14 |
+
]
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 32768,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<instruct>",
|
| 4 |
+
"<query>",
|
| 5 |
+
"<response>"
|
| 6 |
+
],
|
| 7 |
+
"bos_token": {
|
| 8 |
+
"content": "<s>",
|
| 9 |
+
"lstrip": false,
|
| 10 |
+
"normalized": false,
|
| 11 |
+
"rstrip": false,
|
| 12 |
+
"single_word": false
|
| 13 |
+
},
|
| 14 |
+
"eos_token": {
|
| 15 |
+
"content": "</s>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false
|
| 20 |
+
},
|
| 21 |
+
"pad_token": {
|
| 22 |
+
"content": "<unk>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"unk_token": {
|
| 29 |
+
"content": "<unk>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false
|
| 34 |
+
}
|
| 35 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
| 3 |
+
size 493443
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": true,
|
| 4 |
+
"add_prefix_space": true,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<unk>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<s>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"2": {
|
| 23 |
+
"content": "</s>",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": false,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": true
|
| 29 |
+
},
|
| 30 |
+
"32000": {
|
| 31 |
+
"content": "<instruct>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": true
|
| 37 |
+
},
|
| 38 |
+
"32001": {
|
| 39 |
+
"content": "<query>",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": false,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": true
|
| 45 |
+
},
|
| 46 |
+
"32002": {
|
| 47 |
+
"content": "<response>",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": false,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": true
|
| 53 |
+
}
|
| 54 |
+
},
|
| 55 |
+
"additional_special_tokens": [
|
| 56 |
+
"<instruct>",
|
| 57 |
+
"<query>",
|
| 58 |
+
"<response>"
|
| 59 |
+
],
|
| 60 |
+
"bos_token": "<s>",
|
| 61 |
+
"clean_up_tokenization_spaces": false,
|
| 62 |
+
"eos_token": "</s>",
|
| 63 |
+
"extra_special_tokens": {},
|
| 64 |
+
"legacy": true,
|
| 65 |
+
"model_max_length": 32768,
|
| 66 |
+
"pad_token": "<unk>",
|
| 67 |
+
"sp_model_kwargs": {},
|
| 68 |
+
"spaces_between_special_tokens": false,
|
| 69 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 70 |
+
"unk_token": "<unk>",
|
| 71 |
+
"use_default_system_prompt": false
|
| 72 |
+
}
|