phase-3-v2
Browse files- __init__.py +2 -0
- config.json +39 -0
- configuration_edgellm.py +159 -0
- merges.txt +0 -0
- modeling_edgellm.py +0 -0
- pytorch_model.bin +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +40 -0
- vocab.json +0 -0
__init__.py
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from configuration_edgellm import *
|
| 2 |
+
from modeling_edgellm import *
|
config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"EdgellmForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"auto_map": {
|
| 6 |
+
"AutoConfig": "configuration_edgellm.EdgellmConfig",
|
| 7 |
+
"AutoModel": "modeling_edgellm.EdgellmModel",
|
| 8 |
+
"AutoModelForCausalLM": "modeling_edgellm.EdgellmForCausalLM"
|
| 9 |
+
},
|
| 10 |
+
"attention_bias": false,
|
| 11 |
+
"attention_dropout": 0.0,
|
| 12 |
+
"bos_token_id": 151643,
|
| 13 |
+
"eos_token_id": 151643,
|
| 14 |
+
"hidden_act": "relu2",
|
| 15 |
+
"hidden_size": 2048,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"intermediate_size": 8192,
|
| 18 |
+
"kv_lora_rank": 512,
|
| 19 |
+
"max_position_embeddings": 4096,
|
| 20 |
+
"model_type": "edgellm",
|
| 21 |
+
"num_attention_heads": 16,
|
| 22 |
+
"num_key_value_heads": 16,
|
| 23 |
+
"num_hidden_layers": 32,
|
| 24 |
+
"q_lora_rank": null,
|
| 25 |
+
"qk_nope_head_dim": 128,
|
| 26 |
+
"qk_rope_head_dim": 64,
|
| 27 |
+
"rms_norm_eps": 1e-06,
|
| 28 |
+
"rope_scaling": null,
|
| 29 |
+
"pretraining_tp": 1,
|
| 30 |
+
"rope_theta": 100000.0,
|
| 31 |
+
"sliding_window": 4096,
|
| 32 |
+
"tie_word_embeddings": true,
|
| 33 |
+
"torch_dtype": "bfloat16",
|
| 34 |
+
"transformers_version": "4.40.1",
|
| 35 |
+
"use_cache": true,
|
| 36 |
+
"use_sliding_window": false,
|
| 37 |
+
"v_head_dim": 128,
|
| 38 |
+
"vocab_size": 151936
|
| 39 |
+
}
|
configuration_edgellm.py
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding=utf-8
|
| 2 |
+
# Copyright 2024 The EdgeLLM team and The HuggingFace Inc. All rights reserved.
|
| 3 |
+
#
|
| 4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 |
+
# you may not use this file except in compliance with the License.
|
| 6 |
+
# You may obtain a copy of the License at
|
| 7 |
+
#
|
| 8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 9 |
+
#
|
| 10 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 |
+
# See the License for the specific language governing permissions and
|
| 14 |
+
# limitations under the License.
|
| 15 |
+
"""EdgeLLM model configuration"""
|
| 16 |
+
# Test test
|
| 17 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 18 |
+
from transformers.utils import logging
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
logger = logging.get_logger(__name__)
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
class EdgellmConfig(PretrainedConfig):
|
| 25 |
+
r"""
|
| 26 |
+
This is the configuration class to store the configuration of a [`Qwen2Model`]. It is used to instantiate a
|
| 27 |
+
Qwen2 model according to the specified arguments, defining the model architecture. Instantiating a configuration
|
| 28 |
+
with the defaults will yield a similar configuration to that of
|
| 29 |
+
Qwen2-7B-beta [Qwen/Qwen2-7B-beta](https://huggingface.co/Qwen/Qwen2-7B-beta).
|
| 30 |
+
|
| 31 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 32 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
Args:
|
| 36 |
+
vocab_size (`int`, *optional*, defaults to 151936):
|
| 37 |
+
Vocabulary size of the Qwen2 model. Defines the number of different tokens that can be represented by the
|
| 38 |
+
`inputs_ids` passed when calling [`Qwen2Model`]
|
| 39 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
| 40 |
+
Dimension of the hidden representations.
|
| 41 |
+
intermediate_size (`int`, *optional*, defaults to 22016):
|
| 42 |
+
Dimension of the MLP representations.
|
| 43 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
| 44 |
+
Number of hidden layers in the Transformer encoder.
|
| 45 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 46 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
| 47 |
+
num_key_value_heads (`int`, *optional*, defaults to 32):
|
| 48 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
| 49 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
| 50 |
+
`num_key_value_heads=1` the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
| 51 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
| 52 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
| 53 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to `32`.
|
| 54 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
| 55 |
+
The non-linear activation function (function or string) in the decoder.
|
| 56 |
+
max_position_embeddings (`int`, *optional*, defaults to 32768):
|
| 57 |
+
The maximum sequence length that this model might ever be used with.
|
| 58 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 59 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 60 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
| 61 |
+
The epsilon used by the rms normalization layers.
|
| 62 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
| 63 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
| 64 |
+
relevant if `config.is_decoder=True`.
|
| 65 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
| 66 |
+
Whether the model's input and output word embeddings should be tied.
|
| 67 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
| 68 |
+
The base period of the RoPE embeddings.
|
| 69 |
+
use_sliding_window (`bool`, *optional*, defaults to `False`):
|
| 70 |
+
Whether to use sliding window attention.
|
| 71 |
+
sliding_window (`int`, *optional*, defaults to 4096):
|
| 72 |
+
Sliding window attention (SWA) window size. If not specified, will default to `4096`.
|
| 73 |
+
max_window_layers (`int`, *optional*, defaults to 28):
|
| 74 |
+
The number of layers that use SWA (Sliding Window Attention). The bottom layers use SWA while the top use full attention.
|
| 75 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 76 |
+
The dropout ratio for the attention probabilities.
|
| 77 |
+
|
| 78 |
+
```python
|
| 79 |
+
>>> from transformers import Qwen2Model, Qwen2Config
|
| 80 |
+
|
| 81 |
+
>>> # Initializing a Qwen2 style configuration
|
| 82 |
+
>>> configuration = Qwen2Config()
|
| 83 |
+
|
| 84 |
+
>>> # Initializing a model from the Qwen2-7B style configuration
|
| 85 |
+
>>> model = Qwen2Model(configuration)
|
| 86 |
+
|
| 87 |
+
>>> # Accessing the model configuration
|
| 88 |
+
>>> configuration = model.config
|
| 89 |
+
```"""
|
| 90 |
+
|
| 91 |
+
model_type = "edgellm"
|
| 92 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
| 93 |
+
|
| 94 |
+
def __init__(
|
| 95 |
+
self,
|
| 96 |
+
vocab_size=151936,
|
| 97 |
+
hidden_size=2048,
|
| 98 |
+
intermediate_size=8192,
|
| 99 |
+
num_hidden_layers=32,
|
| 100 |
+
num_attention_heads=16,
|
| 101 |
+
num_key_value_heads=16,
|
| 102 |
+
kv_lora_rank = 512,
|
| 103 |
+
q_lora_rank = None,
|
| 104 |
+
qk_rope_head_dim = 64,
|
| 105 |
+
v_head_dim = 128,
|
| 106 |
+
qk_nope_head_dim = 128,
|
| 107 |
+
hidden_act="relu2",
|
| 108 |
+
max_position_embeddings=4096,
|
| 109 |
+
initializer_range=0.02,
|
| 110 |
+
rms_norm_eps=1e-6,
|
| 111 |
+
use_cache=True,
|
| 112 |
+
pretraining_tp=1,
|
| 113 |
+
tie_word_embeddings=True,
|
| 114 |
+
rope_theta=10000.0,
|
| 115 |
+
rope_scaling=None,
|
| 116 |
+
attention_bias=False,
|
| 117 |
+
attention_dropout=0.0,
|
| 118 |
+
use_sliding_window=False,
|
| 119 |
+
sliding_window=4096,
|
| 120 |
+
**kwargs,
|
| 121 |
+
):
|
| 122 |
+
self.vocab_size = vocab_size
|
| 123 |
+
self.max_position_embeddings = max_position_embeddings
|
| 124 |
+
self.hidden_size = hidden_size
|
| 125 |
+
self.intermediate_size = intermediate_size
|
| 126 |
+
self.num_hidden_layers = num_hidden_layers
|
| 127 |
+
self.num_attention_heads = num_attention_heads
|
| 128 |
+
self.kv_lora_rank = kv_lora_rank
|
| 129 |
+
self.q_lora_rank = q_lora_rank
|
| 130 |
+
self.qk_rope_head_dim = qk_rope_head_dim
|
| 131 |
+
self.v_head_dim = v_head_dim
|
| 132 |
+
self.qk_nope_head_dim = qk_nope_head_dim
|
| 133 |
+
# for backward compatibility
|
| 134 |
+
if num_key_value_heads is None:
|
| 135 |
+
num_key_value_heads = num_attention_heads
|
| 136 |
+
|
| 137 |
+
self.num_key_value_heads = num_key_value_heads
|
| 138 |
+
self.hidden_act = hidden_act
|
| 139 |
+
self.initializer_range = initializer_range
|
| 140 |
+
self.rms_norm_eps = rms_norm_eps
|
| 141 |
+
self.pretraining_tp = pretraining_tp
|
| 142 |
+
self.use_cache = use_cache
|
| 143 |
+
self.rope_theta = rope_theta
|
| 144 |
+
self.rope_scaling = rope_scaling
|
| 145 |
+
self.attention_bias = attention_bias
|
| 146 |
+
self.attention_dropout = attention_dropout
|
| 147 |
+
|
| 148 |
+
self.use_sliding_window = use_sliding_window
|
| 149 |
+
self.sliding_window = sliding_window
|
| 150 |
+
|
| 151 |
+
# for backward compatibility
|
| 152 |
+
if num_key_value_heads is None:
|
| 153 |
+
num_key_value_heads = num_attention_heads
|
| 154 |
+
self.attn_implementation = "flash_attention_2"
|
| 155 |
+
|
| 156 |
+
super().__init__(
|
| 157 |
+
tie_word_embeddings=tie_word_embeddings,
|
| 158 |
+
**kwargs,
|
| 159 |
+
)
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
modeling_edgellm.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3446989acdf3da2880273d3b72afc2be448cf95d94faa9d645ca91b77dd93f77
|
| 3 |
+
size 3651011090
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"151643": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"151644": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"151645": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"additional_special_tokens": ["<|im_start|>", "<|im_end|>"],
|
| 30 |
+
"bos_token": null,
|
| 31 |
+
"chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 32 |
+
"clean_up_tokenization_spaces": false,
|
| 33 |
+
"eos_token": "<|endoftext|>",
|
| 34 |
+
"errors": "replace",
|
| 35 |
+
"model_max_length": 32768,
|
| 36 |
+
"pad_token": "<|endoftext|>",
|
| 37 |
+
"split_special_tokens": false,
|
| 38 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 39 |
+
"unk_token": null
|
| 40 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|