初始化项目,由ModelHub XC社区提供模型
Model: farbodtavakkoli/OTel-LLM-7B-IT 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
|
||||
100
README.md
Normal file
100
README.md
Normal file
@@ -0,0 +1,100 @@
|
||||
---
|
||||
license: apache-2.0
|
||||
language:
|
||||
- en
|
||||
base_model:
|
||||
- allenai/OLMo-3-7B
|
||||
tags:
|
||||
- telecom
|
||||
- telecommunications
|
||||
- gsma
|
||||
- fine-tuned
|
||||
pipeline_tag: text-generation
|
||||
---
|
||||
|
||||
# OTel-LLM-7B-IT
|
||||
|
||||
**OTel-LLM-7B-IT** is a telecom-specialized language model fine-tuned on telecommunications domain data. It is part of the [OTel Family of Models](https://huggingface.co/collections/farbodtavakkoli/otel-llm), an open-source initiative to build industry-standard AI models for the global telecommunications sector.
|
||||
|
||||
## Model Details
|
||||
|
||||
| Attribute | Value |
|
||||
|-----------|-------|
|
||||
| **Base Model** | [allenai/OLMo-3-7B](https://huggingface.co/allenai/OLMo-3-7B) |
|
||||
| **Parameters** | 7B |
|
||||
| **Training Method** | Full parameter fine-tuning |
|
||||
| **Language** | English |
|
||||
| **License** | Apache 2.0 |
|
||||
|
||||
## Training Data
|
||||
|
||||
The model was trained on telecom-focused data curated by 100+ domain experts. Each source class was contributed by a specific institutional partner:
|
||||
|
||||
| Source | Contributor |
|
||||
|---|---|
|
||||
| arXiv telecom papers, 3GPP standards, telecom Wikipedia, telecom Common Crawl | Yale University |
|
||||
| GSMA Permanent Reference Documents, Discover portal | GSMA |
|
||||
| IETF RFC series | NetoAI |
|
||||
| Industry whitepapers | Khalifa University |
|
||||
| O-RAN specifications (working groups 1, 2, 4, 5, 6, 7, 8, 9, 10) | University of Leeds |
|
||||
| O-RAN documents across working groups | The University of Texas at Dallas |
|
||||
|
||||
Released datasets: [OTel-LLM](https://huggingface.co/datasets/farbodtavakkoli/OTel-LLM), [OTel-Embedding](https://huggingface.co/datasets/farbodtavakkoli/OTel-Embedding), [OTel-Reranker](https://huggingface.co/datasets/farbodtavakkoli/OTel-Reranker), [OTel-Safety](https://huggingface.co/datasets/farbodtavakkoli/OTel-Safety).
|
||||
|
||||
## Intended Use
|
||||
|
||||
The OTel model family is designed to power end-to-end Retrieval-Augmented Generation (RAG) pipelines for telecommunications. The three model types serve complementary roles:
|
||||
|
||||
1. **Embedding** — Retrieve relevant chunks from telecom specifications, standards, and documentation.
|
||||
2. **Reranker** — Re-score and prioritize the retrieved chunks for relevance.
|
||||
3. **LLM** — Generate accurate responses grounded in the retrieved context.
|
||||
|
||||
Users can deploy the full pipeline or use individual models independently based on their needs.
|
||||
|
||||
**Note:** The LLMs include abstention training — if the model does not receive sufficient context, it will decline to answer rather than hallucinate. This means the models are optimized for context-grounded generation, not open-ended question answering.
|
||||
|
||||
## Related Models
|
||||
|
||||
### Language Models
|
||||
- [OTel LLM Collection](https://huggingface.co/collections/farbodtavakkoli/otel-llm)
|
||||
|
||||
### Embedding Models
|
||||
- [OTel Embedding Collection](https://huggingface.co/collections/farbodtavakkoli/otel-embedding)
|
||||
|
||||
### Reranker Models
|
||||
- [OTel Reranker Collection](https://huggingface.co/collections/farbodtavakkoli/otel-reranker)
|
||||
|
||||
## Related Datasets
|
||||
|
||||
- [OTel-Embedding](https://huggingface.co/datasets/farbodtavakkoli/OTel-Embedding)
|
||||
- [OTel-Safety](https://huggingface.co/datasets/farbodtavakkoli/OTel-Safety)
|
||||
- [OTel-LLM](https://huggingface.co/datasets/farbodtavakkoli/OTel-LLM)
|
||||
- [OTel-Reranker](https://huggingface.co/datasets/farbodtavakkoli/OTel-Reranker)
|
||||
|
||||
## Training Infrastructure
|
||||
|
||||
- **Framework**: ScalarLM (GPU-agnostic)
|
||||
- **Compute**: AMD and NVIDIA GPUs.
|
||||
|
||||
## Project Resources
|
||||
|
||||
- **Project page:** https://huggingface.co/farbodtavakkoli
|
||||
- **Code:** https://github.com/farbodtavakkoli/OTel
|
||||
- **Media coverage list:** https://github.com/farbodtavakkoli/OTel/blob/main/docs/media_coverage.md
|
||||
|
||||
## Citation
|
||||
|
||||
|
||||
```bibtex
|
||||
@misc{otel_models_2026,
|
||||
title = {OTel: Open Telco AI Datasets, Benchmarks, and Models},
|
||||
author = {Tavakkoli, Farbod and others},
|
||||
year = {2026},
|
||||
note = {Open Telco (OTel) model release},
|
||||
url = {https://huggingface.co/farbodtavakkoli}
|
||||
}
|
||||
```
|
||||
|
||||
## Contact
|
||||
|
||||
If you have any technical questions, please feel free to reach out to farbod.tavakkoli@att.com or farbodtavakoli@gmail.com
|
||||
16
chat_template.jinja
Normal file
16
chat_template.jinja
Normal file
@@ -0,0 +1,16 @@
|
||||
{%- set has_system = messages|selectattr('role', 'equalto', 'system')|list|length > 0 -%}{%- if not has_system -%}{{- '<|im_start|>system
|
||||
You are a helpful function-calling AI assistant. ' -}}{%- if tools is none or (tools | length) == 0 -%}{{- 'You do not currently have access to any functions. <functions></functions><|im_end|>
|
||||
' -}}{%- else -%}{{- 'You are provided with function signatures within <functions></functions> XML tags. You may call one or more functions to assist with the user query. Output any function calls within <function_calls></function_calls> XML tags. Do not make assumptions about what values to plug into functions.' -}}{{- '<functions>' -}}{{- tools | tojson -}}{{- '</functions><|im_end|>
|
||||
' -}}{%- endif -%}{%- endif -%}{%- for message in messages -%}{%- if message['role'] == 'system' -%}{{- '<|im_start|>system
|
||||
' + message['content'] -}}{%- if tools is not none -%}{{- '<functions>' -}}{{- tools | tojson -}}{{- '</functions>' -}}{%- elif message.get('functions', none) is not none -%}{{- ' <functions>' + message['functions'] + '</functions>' -}}{%- endif -%}{{- '<|im_end|>
|
||||
' -}}{%- elif message['role'] == 'user' -%}{{- '<|im_start|>user
|
||||
' + message['content'] + '<|im_end|>
|
||||
' -}}{%- elif message['role'] == 'assistant' -%}{{- '<|im_start|>assistant
|
||||
' -}}{%- if message.get('content', none) is not none -%}{{- message['content'] -}}{%- endif -%}{%- if message.get('function_calls', none) is not none -%}{{- '<function_calls>' + message['function_calls'] + '</function_calls>' -}}{% elif message.get('tool_calls', none) is not none %}{{- '<function_calls>' -}}{%- for tool_call in message['tool_calls'] %}{%- if tool_call is mapping and tool_call.get('function', none) is not none %}{%- set args = tool_call['function']['arguments'] -%}{%- set ns = namespace(arguments_list=[]) -%}{%- for key, value in args.items() -%}{%- set ns.arguments_list = ns.arguments_list + [key ~ '=' ~ (value | tojson)] -%}{%- endfor -%}{%- set arguments = ns.arguments_list | join(', ') -%}{{- tool_call['function']['name'] + '(' + arguments + ')' -}}{%- if not loop.last -%}{{ '
|
||||
' }}{%- endif -%}{% else %}{{- tool_call -}}{%- endif %}{%- endfor %}{{- '</function_calls>' -}}{%- endif -%}{%- if not loop.last -%}{{- '<|im_end|>' + '
|
||||
' -}}{%- else -%}{{- eos_token -}}{%- endif -%}{%- elif message['role'] == 'environment' -%}{{- '<|im_start|>environment
|
||||
' + message['content'] + '<|im_end|>
|
||||
' -}}{%- elif message['role'] == 'tool' -%}{{- '<|im_start|>environment
|
||||
' + message['content'] + '<|im_end|>
|
||||
' -}}{%- endif -%}{%- if loop.last and add_generation_prompt -%}{{- '<|im_start|>assistant
|
||||
' -}}{%- endif -%}{%- endfor -%}
|
||||
69
config.json
Normal file
69
config.json
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"architectures": [
|
||||
"Olmo3ForCausalLM"
|
||||
],
|
||||
"attention_bias": false,
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 100257,
|
||||
"dtype": "bfloat16",
|
||||
"eos_token_id": 100257,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 4096,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 11008,
|
||||
"layer_types": [
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"sliding_attention",
|
||||
"full_attention"
|
||||
],
|
||||
"max_position_embeddings": 65536,
|
||||
"model_type": "olmo3",
|
||||
"num_attention_heads": 32,
|
||||
"num_hidden_layers": 32,
|
||||
"num_key_value_heads": 32,
|
||||
"pad_token_id": 100277,
|
||||
"rms_norm_eps": 1e-06,
|
||||
"rope_scaling": {
|
||||
"attention_factor": 1.2079441541679836,
|
||||
"beta_fast": 32,
|
||||
"beta_slow": 1,
|
||||
"factor": 8.0,
|
||||
"original_max_position_embeddings": 8192,
|
||||
"rope_type": "yarn"
|
||||
},
|
||||
"rope_theta": 500000,
|
||||
"sliding_window": 4096,
|
||||
"tie_word_embeddings": false,
|
||||
"transformers_version": "4.57.6",
|
||||
"use_cache": false,
|
||||
"vocab_size": 100278
|
||||
}
|
||||
14
generation_config.json
Normal file
14
generation_config.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 100257,
|
||||
"do_sample": true,
|
||||
"eos_token_id": [
|
||||
100265,
|
||||
100257
|
||||
],
|
||||
"max_new_tokens": 32768,
|
||||
"pad_token_id": 100277,
|
||||
"temperature": 0.6,
|
||||
"top_p": 0.95,
|
||||
"transformers_version": "4.57.6"
|
||||
}
|
||||
100001
merges.txt
Normal file
100001
merges.txt
Normal file
File diff suppressed because it is too large
Load Diff
3
pytorch_model-00001-of-00006.bin
Normal file
3
pytorch_model-00001-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:052343b0aafa52ee81fab3a7cdbd596529f055c63b8d50958d79bb8273a6a851
|
||||
size 4948077325
|
||||
3
pytorch_model-00002-of-00006.bin
Normal file
3
pytorch_model-00002-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba15bcfa37188ef9f4d28e162afbef4b23a09e942529a8b5630e20f24a0555fa
|
||||
size 4991237461
|
||||
3
pytorch_model-00003-of-00006.bin
Normal file
3
pytorch_model-00003-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:500ffdc13379f8af3753b65b6950b954c78639d4bbfd60e7ee9692e6c631d282
|
||||
size 4924128335
|
||||
3
pytorch_model-00004-of-00006.bin
Normal file
3
pytorch_model-00004-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b0dee92b5b24478d8f6762cdcd13eed601de397181daf06b73d95b26ed0952f
|
||||
size 4857019121
|
||||
3
pytorch_model-00005-of-00006.bin
Normal file
3
pytorch_model-00005-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:422fa8e1c5fdccaffe68e50e71cabc3fe976413a900cfbbba050bf5ccbdb3d98
|
||||
size 4857019121
|
||||
3
pytorch_model-00006-of-00006.bin
Normal file
3
pytorch_model-00006-of-00006.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6587f782fe57b12884f4dba2297cd3d6e54b9cf3491f93b74c6207c1cbc0d167
|
||||
size 4614689751
|
||||
362
pytorch_model.bin.index.json
Normal file
362
pytorch_model.bin.index.json
Normal file
@@ -0,0 +1,362 @@
|
||||
{
|
||||
"metadata": {
|
||||
"total_size": 29192044544
|
||||
},
|
||||
"weight_map": {
|
||||
"lm_head.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.embed_tokens.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.0.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.0.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.1.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.1.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.10.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.10.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.10.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.10.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.10.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.10.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.10.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.10.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.10.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.10.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.10.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.11.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.11.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.11.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.11.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.11.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.11.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.12.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.12.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.12.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.12.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.12.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.13.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.13.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.13.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.13.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.13.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.14.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.14.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.14.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.14.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.14.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.mlp.down_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.mlp.gate_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.mlp.up_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.15.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.15.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.15.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.15.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.15.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.16.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.16.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.16.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.16.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.16.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.16.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.16.self_attn.k_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.16.self_attn.o_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.16.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.16.self_attn.q_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.16.self_attn.v_proj.weight": "pytorch_model-00003-of-00006.bin",
|
||||
"model.layers.17.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.17.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.17.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.17.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.17.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.17.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.18.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.18.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.18.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.18.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.18.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.19.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.19.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.19.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.19.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.19.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.2.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.2.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.20.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.20.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.20.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.20.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.20.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.20.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.mlp.down_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.mlp.gate_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.mlp.up_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.21.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.21.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.21.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.21.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.21.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.22.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.22.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.22.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.22.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.22.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.22.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.22.self_attn.k_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.22.self_attn.o_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.22.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.22.self_attn.q_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.22.self_attn.v_proj.weight": "pytorch_model-00004-of-00006.bin",
|
||||
"model.layers.23.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.23.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.23.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.23.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.23.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.23.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.24.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.24.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.24.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.24.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.24.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.25.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.25.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.25.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.25.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.25.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.26.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.26.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.26.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.26.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.26.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.mlp.down_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.mlp.gate_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.mlp.up_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.27.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.27.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.27.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.27.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.27.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.28.mlp.down_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.mlp.gate_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.mlp.up_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.self_attn.k_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.28.self_attn.o_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.28.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.28.self_attn.q_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.28.self_attn.v_proj.weight": "pytorch_model-00005-of-00006.bin",
|
||||
"model.layers.29.mlp.down_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.mlp.gate_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.mlp.up_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.k_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.o_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.q_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.29.self_attn.v_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.3.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.3.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.30.mlp.down_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.mlp.gate_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.mlp.up_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.k_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.o_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.q_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.30.self_attn.v_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.mlp.down_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.mlp.gate_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.mlp.up_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.k_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.o_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.q_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.31.self_attn.v_proj.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.4.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.4.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.4.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.4.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.4.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.4.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.4.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.4.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.4.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00006.bin",
|
||||
"model.layers.4.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.5.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.5.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.5.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.5.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.5.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.6.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.6.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.6.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.6.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.6.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.7.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.7.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.7.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.7.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.7.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.8.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.8.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.8.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.8.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.8.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.mlp.down_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.mlp.gate_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.mlp.up_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.post_attention_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.9.post_feedforward_layernorm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.9.self_attn.k_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.9.self_attn.k_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.self_attn.o_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.self_attn.q_norm.weight": "pytorch_model-00006-of-00006.bin",
|
||||
"model.layers.9.self_attn.q_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.layers.9.self_attn.v_proj.weight": "pytorch_model-00002-of-00006.bin",
|
||||
"model.norm.weight": "pytorch_model-00006-of-00006.bin"
|
||||
}
|
||||
}
|
||||
30
special_tokens_map.json
Normal file
30
special_tokens_map.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"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": {
|
||||
"content": "<|pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"unk_token": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
}
|
||||
}
|
||||
500529
tokenizer.json
Normal file
500529
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
190
tokenizer_config.json
Normal file
190
tokenizer_config.json
Normal file
@@ -0,0 +1,190 @@
|
||||
{
|
||||
"add_bos": false,
|
||||
"add_prefix_space": false,
|
||||
"added_tokens_decoder": {
|
||||
"100256": {
|
||||
"content": "<|extra_id_0|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100257": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100258": {
|
||||
"content": "<|fim_prefix|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100259": {
|
||||
"content": "<|fim_middle|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100260": {
|
||||
"content": "<|fim_suffix|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100261": {
|
||||
"content": "|||PHONE_NUMBER|||",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100262": {
|
||||
"content": "|||EMAIL_ADDRESS|||",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100263": {
|
||||
"content": "|||IP_ADDRESS|||",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100264": {
|
||||
"content": "<|im_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100265": {
|
||||
"content": "<|im_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100266": {
|
||||
"content": "<functions>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100267": {
|
||||
"content": "</functions>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100268": {
|
||||
"content": "<function_calls>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100269": {
|
||||
"content": "</function_calls>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100270": {
|
||||
"content": "<|extra_id_1|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100271": {
|
||||
"content": "<|extra_id_2|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100272": {
|
||||
"content": "<|extra_id_3|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100273": {
|
||||
"content": "<|extra_id_4|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100274": {
|
||||
"content": "<|extra_id_5|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100275": {
|
||||
"content": "<|extra_id_6|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"100276": {
|
||||
"content": "<|endofprompt|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"100277": {
|
||||
"content": "<|pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
}
|
||||
},
|
||||
"bos_token": "<|endoftext|>",
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": "<|endoftext|>",
|
||||
"extra_special_tokens": {},
|
||||
"model_max_length": 1100,
|
||||
"pad_token": "<|pad|>",
|
||||
"tokenizer_class": "GPT2Tokenizer",
|
||||
"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