alexander583 commited on
Commit
587ead0
1 Parent(s): 75fbb03

Upload configuration_exaone.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. configuration_exaone.py +183 -0
configuration_exaone.py ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2021 The LG AI Research EXAONE Lab. 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
+ """EXAONE model configuration"""
16
+
17
+ from transformers.configuration_utils import PretrainedConfig
18
+ from transformers.utils import logging
19
+
20
+
21
+ logger = logging.get_logger(__name__)
22
+
23
+ EXAONE_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
24
+
25
+
26
+ class ExaoneConfig(PretrainedConfig):
27
+ r"""
28
+ This is the configuration class to store the configuration of a [`ExaoneModel`]. It is used to
29
+ instantiate a EXAONE model according to the specified arguments, defining the model architecture. Instantiating a
30
+ configuration with the defaults will yield a similar configuration to that of the EXAONE-3.0-7.8B-Instruct [LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct](https://huggingface.co/LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct)
31
+
32
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model
33
+ outputs. Read the documentation from [`PretrainedConfig`] for more information.
34
+
35
+
36
+ Args:
37
+ vocab_size (`int`, *optional*, defaults to 102400):
38
+ Vocabulary size of the EXAONE model. Defines the number of different tokens that can be represented by the
39
+ `inputs_ids` passed when calling [`ExaoneModel`]. Vocabulary size of the model.
40
+ Defines the different tokens that can be represented by the `inputs_ids` passed to the forward method of
41
+ [`ExaoneModel`].
42
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
43
+ The maximum sequence length that this model might ever be used with. Typically set this to something large
44
+ just in case (e.g., 512 or 1024 or 2048).
45
+ hidden_size (`int`, *optional*, defaults to 2048):
46
+ Dimensionality of the encoder layers and the pooler layer.
47
+ num_layers (`int`, *optional*, defaults to 32):
48
+ Number of hidden layers in the Transformer encoder.
49
+ num_attention_heads (`int`, *optional*, defaults to 32):
50
+ Number of attention heads for each attention layer in the Transformer decoder.
51
+ num_key_value_heads (`int`, *optional*):
52
+ This is the number of key_value heads that should be used to implement Grouped Query Attention. If
53
+ `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
54
+ `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
55
+ converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
56
+ by meanpooling all the original heads within that group. For more details checkout [this
57
+ paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
58
+ `num_attention_heads`.
59
+ intermediate_size (`int`, *optional*, defaults to `hidden_size * 4`):
60
+ Dimensionality of the "intermediate" (i.e., feed-forward) layer in the Transformer encoder.
61
+ activation_function (`str` or `function`, *optional*, defaults to `"silu"`):
62
+ The non-linear activation function (function or string) in the decoder.
63
+ rope_theta (`float`, *optional*, defaults to 10000.0):
64
+ The base period of the RoPE embeddings.
65
+ rope_scaling (`Dict`, *optional*):
66
+ Dictionary containing the scaling configuration for the RoPE embeddings. NOTE: if you apply new rope type
67
+ and you expect the model to work on longer `max_position_embeddings`, we recommend you to update this value
68
+ accordingly.
69
+ Expected contents:
70
+ `rope_type` (`str`):
71
+ The sub-variant of RoPE to use. Can be one of ['default', 'linear', 'dynamic', 'yarn', 'longrope',
72
+ 'llama3'], with 'default' being the original RoPE implementation.
73
+ `factor` (`float`, *optional*):
74
+ Used with all rope types except 'default'. The scaling factor to apply to the RoPE embeddings. In
75
+ most scaling types, a `factor` of x will enable the model to handle sequences of length x *
76
+ original maximum pre-trained length.
77
+ `original_max_position_embeddings` (`int`, *optional*):
78
+ Used with 'dynamic', 'longrope' and 'llama3'. The original max position embeddings used during
79
+ pretraining.
80
+ `attention_factor` (`float`, *optional*):
81
+ Used with 'yarn' and 'longrope'. The scaling factor to be applied on the attention
82
+ computation. If unspecified, it defaults to value recommended by the implementation, using the
83
+ `factor` field to infer the suggested value.
84
+ `beta_fast` (`float`, *optional*):
85
+ Only used with 'yarn'. Parameter to set the boundary for extrapolation (only) in the linear
86
+ ramp function. If unspecified, it defaults to 32.
87
+ `beta_slow` (`float`, *optional*):
88
+ Only used with 'yarn'. Parameter to set the boundary for interpolation (only) in the linear
89
+ ramp function. If unspecified, it defaults to 1.
90
+ `short_factor` (`List[float]`, *optional*):
91
+ Only used with 'longrope'. The scaling factor to be applied to short contexts (<
92
+ `original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
93
+ size divided by the number of attention heads divided by 2
94
+ `long_factor` (`List[float]`, *optional*):
95
+ Only used with 'longrope'. The scaling factor to be applied to long contexts (<
96
+ `original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
97
+ size divided by the number of attention heads divided by 2
98
+ `low_freq_factor` (`float`, *optional*):
99
+ Only used with 'llama3'. Scaling factor applied to low frequency components of the RoPE
100
+ `high_freq_factor` (`float`, *optional*):
101
+ Only used with 'llama3'. Scaling factor applied to high frequency components of the RoPE
102
+ embed_dropout (`float`, *optional*, defaults to 0.0):
103
+ The dropout probabilitiy for all fully connected layers in the embeddings, encoder, and pooler.
104
+ attention_dropout (`float`, *optional*, defaults to 0.0):
105
+ The dropout ratio for the attention probabilities.
106
+ layer_norm_epsilon (`float`, *optional*, defaults to 1e-05):
107
+ The epsilon used by the layer normalization layers.
108
+ initializer_range (`float`, *optional*, defaults to 0.02):
109
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
110
+ use_cache (`bool`, *optional*, defaults to `True`):
111
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
112
+ relevant if ``config.is_decoder=True``.
113
+ bos_token_id (`int`, *optional*, defaults to 0):
114
+ Beginning of stream token id.
115
+ eos_token_id (`int`, *optional*, defaults to 2):
116
+ End of stream token id.
117
+
118
+ Example:
119
+
120
+ ```python
121
+ >>> from transformers import EXAONEModel, ExaoneConfig
122
+
123
+ >>> # Initializing a EXAONE configuration
124
+ >>> configuration = ExaoneConfig()
125
+
126
+ >>> # Initializing a model from configuration
127
+ >>> model = EXAONEModel(configuration)
128
+
129
+ >>> # Accessing the model configuration
130
+ >>> configuration = model.config
131
+ ```"""
132
+
133
+ model_type = "exaone"
134
+ keys_to_ignore_at_inference = ["past_key_values"]
135
+ attribute_map = {"num_hidden_layers": "num_layers"}
136
+
137
+ def __init__(
138
+ self,
139
+ vocab_size=102400,
140
+ max_position_embeddings=2048,
141
+ hidden_size=2048,
142
+ num_layers=32,
143
+ num_attention_heads=32,
144
+ num_key_value_heads=None,
145
+ intermediate_size=None,
146
+ activation_function="silu",
147
+ rope_theta=10000.0,
148
+ rope_scaling=None,
149
+ embed_dropout=0.0,
150
+ attention_dropout=0.0,
151
+ layer_norm_epsilon=1e-5,
152
+ initializer_range=0.02,
153
+ use_cache=True,
154
+ bos_token_id=0,
155
+ eos_token_id=2,
156
+ **kwargs,
157
+ ):
158
+ self.vocab_size = vocab_size
159
+ self.max_position_embeddings = max_position_embeddings
160
+ self.hidden_size = hidden_size
161
+ self.num_layers = num_layers
162
+ self.num_attention_heads = num_attention_heads
163
+ self.num_layers = num_layers
164
+ if num_key_value_heads is None:
165
+ num_key_value_heads = num_attention_heads
166
+ self.num_key_value_heads = num_key_value_heads
167
+ if intermediate_size:
168
+ self.intermediate_size = intermediate_size
169
+ else:
170
+ self.intermediate_size = hidden_size * 4
171
+ self.activation_function = activation_function
172
+ self.embed_dropout = embed_dropout
173
+ self.attention_dropout = attention_dropout
174
+ self.layer_norm_epsilon = layer_norm_epsilon
175
+ self.initializer_range = initializer_range
176
+ self.use_cache = use_cache
177
+ self.rope_theta = rope_theta
178
+ self.rope_scaling = rope_scaling
179
+
180
+ self.bos_token_id = bos_token_id
181
+ self.eos_token_id = eos_token_id
182
+
183
+ super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)