初始化项目,由ModelHub XC社区提供模型
Model: AuricErgeson/Antelope-textTosql 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
|
||||
161
README.md
Normal file
161
README.md
Normal file
@@ -0,0 +1,161 @@
|
||||
---
|
||||
library_name: transformers
|
||||
tags:
|
||||
- text-to-sql
|
||||
- sql
|
||||
- natural-language-processing
|
||||
- peft
|
||||
- qlora
|
||||
- phi-2
|
||||
- sqlite
|
||||
- database
|
||||
- code-generation
|
||||
- question-answering
|
||||
language:
|
||||
- en
|
||||
license: mit
|
||||
base_model: microsoft/phi-2
|
||||
datasets:
|
||||
- spider
|
||||
pipeline_tag: text-generation
|
||||
---
|
||||
|
||||
# 🦌 Antelope Text-to-SQL
|
||||
|
||||
**Convert plain English questions into SQL queries instantly.**
|
||||
Lightweight, fast, and runs on CPU. No database expertise needed.
|
||||
|
||||
🚀 **[Try the live demo →](https://huggingface.co/spaces/AuricErgeson/Antelope-textTosql-demo)**
|
||||
|
||||
---
|
||||
|
||||
## What it does
|
||||
|
||||
| Question | Database | Output |
|
||||
|---|---|---|
|
||||
| How many employees are there? | company | `SELECT COUNT(*) FROM employees` |
|
||||
| List all customers from Germany | store | `SELECT * FROM customers WHERE country = 'Germany'` |
|
||||
| What is the average salary by department? | hr | `SELECT department, AVG(salary) FROM employees GROUP BY department` |
|
||||
|
||||
---
|
||||
|
||||
## Quick Start
|
||||
|
||||
```python
|
||||
from transformers import AutoModelForCausalLM, AutoTokenizer
|
||||
import torch
|
||||
|
||||
model_id = "AuricErgeson/Antelope-textTosql"
|
||||
|
||||
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
|
||||
model = AutoModelForCausalLM.from_pretrained(
|
||||
model_id,
|
||||
torch_dtype=torch.float16,
|
||||
device_map="auto",
|
||||
trust_remote_code=True
|
||||
)
|
||||
|
||||
def generate_sql(question, db=""):
|
||||
prompt = (
|
||||
f"### Task: Convert question to SQL. Use only what the question asks. Simple questions need simple SQL.\n"
|
||||
f"### Database: {db}\n"
|
||||
f"### Question: {question}\n"
|
||||
f"### SQL:"
|
||||
)
|
||||
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
||||
with torch.no_grad():
|
||||
out = model.generate(
|
||||
**inputs,
|
||||
max_new_tokens=128,
|
||||
temperature=0.1,
|
||||
do_sample=True,
|
||||
pad_token_id=tokenizer.eos_token_id
|
||||
)
|
||||
decoded = tokenizer.decode(out[0], skip_special_tokens=True)
|
||||
return decoded.split("### SQL:")[-1].strip().split("\n")[0]
|
||||
|
||||
print(generate_sql("How many employees are in each department?", db="company"))
|
||||
# → SELECT department, COUNT(*) FROM employees GROUP BY department
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Why use this model?
|
||||
|
||||
- ✅ **Small** — 2.7B params, runs on modest hardware
|
||||
- ✅ **Fast** — CPU inference possible, GPU recommended
|
||||
- ✅ **Open** — MIT license, use anywhere
|
||||
- ✅ **No setup** — works out of the box with `transformers`
|
||||
- ✅ **Cross-domain** — trained on 200+ database schemas
|
||||
|
||||
---
|
||||
|
||||
## Prompt Format
|
||||
|
||||
```
|
||||
### Task: Convert question to SQL. Use only what the question asks. Simple questions need simple SQL.
|
||||
### Database: {your_database_name}
|
||||
### Question: {your_question}
|
||||
### SQL:
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Via HuggingFace Inference API
|
||||
|
||||
```python
|
||||
import requests
|
||||
|
||||
API_URL = "https://api-inference.huggingface.co/models/AuricErgeson/Antelope-textTosql"
|
||||
headers = {"Authorization": "Bearer YOUR_HF_TOKEN"}
|
||||
|
||||
response = requests.post(API_URL, headers=headers, json={
|
||||
"inputs": "### Task: Convert question to SQL. Use only what the question asks. Simple questions need simple SQL.\n### Database: company\n### Question: How many employees?\n### SQL:"
|
||||
})
|
||||
print(response.json())
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Training Details
|
||||
|
||||
| Property | Value |
|
||||
|---|---|
|
||||
| Base model | microsoft/phi-2 (2.7B) |
|
||||
| Method | QLoRA (4-bit + LoRA) |
|
||||
| Dataset | Spider (7,000+ examples, 200+ databases) |
|
||||
| LoRA rank | 16 |
|
||||
| LoRA alpha | 32 |
|
||||
| Target modules | q_proj, v_proj |
|
||||
| Learning rate | 2e-4 |
|
||||
| Epochs | 3 |
|
||||
| Hardware | NVIDIA A100 (Google Colab) |
|
||||
| Training time | ~1.5 hours |
|
||||
| Adapter size | ~21MB |
|
||||
| Merged model size | ~5.56GB |
|
||||
|
||||
---
|
||||
|
||||
## Limitations
|
||||
|
||||
- Not recommended for production databases without output validation
|
||||
- Complex multi-join queries may be inaccurate
|
||||
- Does not infer table/column names — provide your database name for best results
|
||||
|
||||
---
|
||||
|
||||
## Roadmap
|
||||
|
||||
- [x] Text-to-SQL (this model)
|
||||
- [ ] Text-to-Regex (coming soon)
|
||||
- [ ] Text-to-Shell (planned)
|
||||
|
||||
---
|
||||
|
||||
## Author
|
||||
|
||||
**Auric Ergeson Nitonde**
|
||||
📧 auricergesonnitonde@gmail.com
|
||||
🤗 [HuggingFace Profile](https://huggingface.co/AuricErgeson)
|
||||
|
||||
*If this model helped you, consider leaving a like ⭐ — it helps others find it.*
|
||||
40
added_tokens.json
Normal file
40
added_tokens.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"\t\t": 50294,
|
||||
"\t\t\t": 50293,
|
||||
"\t\t\t\t": 50292,
|
||||
"\t\t\t\t\t": 50291,
|
||||
"\t\t\t\t\t\t": 50290,
|
||||
"\t\t\t\t\t\t\t": 50289,
|
||||
"\t\t\t\t\t\t\t\t": 50288,
|
||||
"\t\t\t\t\t\t\t\t\t": 50287,
|
||||
" ": 50286,
|
||||
" ": 50285,
|
||||
" ": 50284,
|
||||
" ": 50283,
|
||||
" ": 50282,
|
||||
" ": 50281,
|
||||
" ": 50280,
|
||||
" ": 50279,
|
||||
" ": 50278,
|
||||
" ": 50277,
|
||||
" ": 50276,
|
||||
" ": 50275,
|
||||
" ": 50274,
|
||||
" ": 50273,
|
||||
" ": 50272,
|
||||
" ": 50271,
|
||||
" ": 50270,
|
||||
" ": 50269,
|
||||
" ": 50268,
|
||||
" ": 50267,
|
||||
" ": 50266,
|
||||
" ": 50265,
|
||||
" ": 50264,
|
||||
" ": 50263,
|
||||
" ": 50262,
|
||||
" ": 50261,
|
||||
" ": 50260,
|
||||
" ": 50259,
|
||||
" ": 50258,
|
||||
" ": 50257
|
||||
}
|
||||
30
config.json
Normal file
30
config.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"_name_or_path": "microsoft/phi-2",
|
||||
"architectures": [
|
||||
"PhiForCausalLM"
|
||||
],
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 50256,
|
||||
"embd_pdrop": 0.0,
|
||||
"eos_token_id": 50256,
|
||||
"hidden_act": "gelu_new",
|
||||
"hidden_size": 2560,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 10240,
|
||||
"layer_norm_eps": 1e-05,
|
||||
"max_position_embeddings": 2048,
|
||||
"model_type": "phi",
|
||||
"num_attention_heads": 32,
|
||||
"num_hidden_layers": 32,
|
||||
"num_key_value_heads": 32,
|
||||
"partial_rotary_factor": 0.4,
|
||||
"qk_layernorm": false,
|
||||
"resid_pdrop": 0.1,
|
||||
"rope_scaling": null,
|
||||
"rope_theta": 10000.0,
|
||||
"tie_word_embeddings": false,
|
||||
"torch_dtype": "float16",
|
||||
"transformers_version": "4.41.2",
|
||||
"use_cache": true,
|
||||
"vocab_size": 51200
|
||||
}
|
||||
6
generation_config.json
Normal file
6
generation_config.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 50256,
|
||||
"eos_token_id": 50256,
|
||||
"transformers_version": "4.41.2"
|
||||
}
|
||||
50001
merges.txt
Normal file
50001
merges.txt
Normal file
File diff suppressed because it is too large
Load Diff
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:c2c84b64fd269e0ba38edd2e9408d028d6d69e79a0c0985a16c7a77c499f7850
|
||||
size 4995584424
|
||||
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:5217d04fbcd74511a3969c95f9c9c3becf4492ffbaa4205c54b8a6c15d432b65
|
||||
size 563832976
|
||||
460
model.safetensors.index.json
Normal file
460
model.safetensors.index.json
Normal file
@@ -0,0 +1,460 @@
|
||||
{
|
||||
"metadata": {
|
||||
"total_size": 5559367680
|
||||
},
|
||||
"weight_map": {
|
||||
"lm_head.bias": "model-00002-of-00002.safetensors",
|
||||
"lm_head.weight": "model-00002-of-00002.safetensors",
|
||||
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
||||
"model.final_layernorm.bias": "model-00002-of-00002.safetensors",
|
||||
"model.final_layernorm.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.0.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.30.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.mlp.fc1.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.mlp.fc1.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.mlp.fc2.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.mlp.fc2.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.dense.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.dense.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.mlp.fc1.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.mlp.fc1.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.mlp.fc2.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.mlp.fc2.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.dense.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.dense.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
||||
"model.layers.4.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.mlp.fc1.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.mlp.fc1.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.mlp.fc2.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.mlp.fc2.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.dense.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.dense.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.v_proj.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
|
||||
}
|
||||
}
|
||||
100648
tokenizer.json
Normal file
100648
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
325
tokenizer_config.json
Normal file
325
tokenizer_config.json
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"add_prefix_space": false,
|
||||
"added_tokens_decoder": {
|
||||
"50256": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"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
|
||||
},
|
||||
"50277": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50278": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50279": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50280": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50281": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50282": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50283": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50284": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50285": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50286": {
|
||||
"content": " ",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50287": {
|
||||
"content": "\t\t\t\t\t\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50288": {
|
||||
"content": "\t\t\t\t\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50289": {
|
||||
"content": "\t\t\t\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50290": {
|
||||
"content": "\t\t\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50291": {
|
||||
"content": "\t\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50292": {
|
||||
"content": "\t\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50293": {
|
||||
"content": "\t\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"50294": {
|
||||
"content": "\t\t",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
}
|
||||
},
|
||||
"bos_token": "<|endoftext|>",
|
||||
"clean_up_tokenization_spaces": true,
|
||||
"eos_token": "<|endoftext|>",
|
||||
"model_max_length": 2048,
|
||||
"pad_token": "<|endoftext|>",
|
||||
"return_token_type_ids": false,
|
||||
"tokenizer_class": "CodeGenTokenizer",
|
||||
"unk_token": "<|endoftext|>"
|
||||
}
|
||||
1
vocab.json
Normal file
1
vocab.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user