Text Generation
Transformers
PyTorch
Chinese
English
codeshell
wisdomshell
pku-kcl
openbankai
custom_code
Instructions to use WisdomShell/CodeShell-7B-Chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WisdomShell/CodeShell-7B-Chat with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="WisdomShell/CodeShell-7B-Chat", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("WisdomShell/CodeShell-7B-Chat", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use WisdomShell/CodeShell-7B-Chat with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WisdomShell/CodeShell-7B-Chat" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WisdomShell/CodeShell-7B-Chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/WisdomShell/CodeShell-7B-Chat
- SGLang
How to use WisdomShell/CodeShell-7B-Chat with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "WisdomShell/CodeShell-7B-Chat" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WisdomShell/CodeShell-7B-Chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "WisdomShell/CodeShell-7B-Chat" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WisdomShell/CodeShell-7B-Chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use WisdomShell/CodeShell-7B-Chat with Docker Model Runner:
docker model run hf.co/WisdomShell/CodeShell-7B-Chat
| { | |
| "metadata": { | |
| "total_size": 15376102656 | |
| }, | |
| "weight_map": { | |
| "lm_head.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.0.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.1.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.10.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.11.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.12.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.13.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.14.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.15.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.16.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.17.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.18.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.19.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.2.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.20.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.21.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.22.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.23.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.24.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.25.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.26.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.26.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.27.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.28.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.29.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.3.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.3.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.30.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.30.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.31.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.32.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.33.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.34.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.35.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.36.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.37.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.38.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.39.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.4.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.4.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.40.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.40.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.attn.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.ln_1.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.ln_1.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.ln_2.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.ln_2.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.mlp.c_fc.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.mlp.c_fc.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.mlp.c_proj.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.41.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.h.5.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.5.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.6.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.7.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.8.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.attn.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.ln_1.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.ln_1.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.ln_2.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.ln_2.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.mlp.c_fc.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.mlp.c_fc.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.mlp.c_proj.bias": "pytorch_model-00001-of-00002.bin", | |
| "transformer.h.9.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin", | |
| "transformer.ln_f.bias": "pytorch_model-00002-of-00002.bin", | |
| "transformer.ln_f.weight": "pytorch_model-00002-of-00002.bin", | |
| "transformer.wte.weight": "pytorch_model-00001-of-00002.bin" | |
| } | |
| } | |