EUNKYEONG commited on
Commit
39d2b56
·
verified ·
1 Parent(s): d1d04f0

Training in progress, epoch 1

Browse files
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: KT-AI/Midm-2.0-Mini-Instruct
3
+ library_name: transformers
4
+ model_name: save_dir
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for save_dir
13
+
14
+ This model is a fine-tuned version of [KT-AI/Midm-2.0-Mini-Instruct](https://huggingface.co/KT-AI/Midm-2.0-Mini-Instruct).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="EUNKYEONG/save_dir", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.9.6
38
+ - Transformers: 4.52.4
39
+ - Pytorch: 2.5.1
40
+ - Datasets: 3.1.0
41
+ - Tokenizers: 0.21.1
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- macro eng_check(string) %}
2
+ {%- for char in string %}
3
+ {%- if char not in 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890`~!@#$%^&*()-_=+[{}]\;:",<.>/?
4
+ ' and char != "'" %}
5
+ X
6
+ {%- endif %}
7
+ {%- endfor %}
8
+ {%- endmacro %}
9
+
10
+ {%- set in_message = messages[0]['content']|trim %}
11
+ {%- set max_check_len = 20 %}
12
+ {%- if in_message|length > max_check_len %}
13
+ {%- set lang_check = in_message[:max_check_len] %}
14
+ {%- else %}
15
+ {%- set lang_check = in_message %}
16
+ {%- endif %}
17
+
18
+ {%- if eng_check(lang_check)|length == 0 %}
19
+ {%- set default_system = 'Midm is an artificial intelligence-based service that responds kindly and safely.' %}
20
+ {%- set locale = 0 %}
21
+ {%- else %}
22
+ {%- set default_system = 'Midm은 친절하고 안전하게 응답하는 인공지능 기반 서비스이다.' %}
23
+ {%- set locale = 1 %}
24
+ {%- endif %}
25
+
26
+ {{- bos_token }}
27
+ {%- if custom_tools is defined %}
28
+ {%- set tools = custom_tools %}
29
+ {%- endif %}
30
+ {%- if not tools_in_user_message is defined %}
31
+ {%- set tools_in_user_message = true %}
32
+ {%- endif %}
33
+ {%- if not date_string is defined %}
34
+ {%- if strftime_now is defined %}
35
+ {%- set date_string = strftime_now("%d %b %Y") %}
36
+ {%- else %}
37
+ {%- set date_string = "26 Jul 2024" %}
38
+ {%- endif %}
39
+ {%- endif %}
40
+ {%- if not tools is defined %}
41
+ {%- set tools = none %}
42
+ {%- endif %}
43
+
44
+ {#- This block extracts the system message, so we can slot it into the right place. #}
45
+ {%- if messages[0]['role'] == 'system' %}
46
+ {%- set system_message = messages[0]['content']|trim %}
47
+ {%- set messages = messages[1:] %}
48
+ {%- else %}
49
+ {%- set system_message = default_system %}
50
+ {%- endif %}
51
+
52
+ {#- System message #}
53
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
54
+ {%- if tools is not none %}
55
+ {{- "Environment: ipython\n" }}
56
+ {%- endif %}
57
+ {{- "Cutting Knowledge Date: December 2024\n" }}
58
+ {{- "Today Date: " + date_string + "\n\n" }}
59
+ {%- if tools is not none and not tools_in_user_message %}
60
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
61
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
62
+ {{- "Do not use variables.\n\n" }}
63
+ {%- for t in tools %}
64
+ {{- t | tojson(indent=4) }}
65
+ {{- "\n\n" }}
66
+ {%- endfor %}
67
+ {%- endif %}
68
+ {{- system_message }}
69
+ {{- "<|eot_id|>" }}
70
+
71
+ {#- Custom tools are passed in a user message with some extra guidance #}
72
+ {%- if tools_in_user_message and not tools is none %}
73
+ {#- Extract the first user message so we can plug it in here #}
74
+ {%- if messages | length != 0 %}
75
+ {%- set first_user_message = messages[0]['content']|trim %}
76
+ {%- set messages = messages[1:] %}
77
+ {%- else %}
78
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
79
+ {%- endif %}
80
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
81
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
82
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
83
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
84
+ {{- "Do not use variables.\n\n" }}
85
+ {%- for t in tools %}
86
+ {{- t | tojson(indent=4) }}
87
+ {{- "\n\n" }}
88
+ {%- endfor %}
89
+ {{- first_user_message + "<|eot_id|>"}}
90
+ {%- endif %}
91
+
92
+ {%- for message in messages %}
93
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
94
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
95
+ {%- elif 'tool_calls' in message %}
96
+ {%- if not message.tool_calls|length == 1 %}
97
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
98
+ {%- endif %}
99
+ {%- set tool_call = message.tool_calls[0].function %}
100
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
101
+ {{- '{"name": "' + tool_call.name + '", ' }}
102
+ {{- '"parameters": ' }}
103
+ {{- tool_call.arguments | tojson }}
104
+ {{- "}" }}
105
+ {{- "<|eot_id|>" }}
106
+ {%- elif message.role == "tool" or message.role == "ipython" %}
107
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
108
+ {%- if message.content is mapping or message.content is iterable %}
109
+ {{- message.content | tojson }}
110
+ {%- else %}
111
+ {{- message.content }}
112
+ {%- endif %}
113
+ {{- "<|eot_id|>" }}
114
+ {%- endif %}
115
+ {%- endfor %}
116
+ {%- if add_generation_prompt %}
117
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
118
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "bos_token_id": null,
9
+ "eos_token_id": 2,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_dropout_prob": 0.0,
13
+ "hidden_size": 1792,
14
+ "initializer_range": 0.02,
15
+ "intermediate_size": 4608,
16
+ "max_position_embeddings": 65536,
17
+ "mlp_bias": false,
18
+ "model_type": "llama",
19
+ "num_attention_heads": 32,
20
+ "num_hidden_layers": 48,
21
+ "num_key_value_heads": 8,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-05,
24
+ "rope_scaling": null,
25
+ "rope_theta": 8000000,
26
+ "tie_word_embeddings": true,
27
+ "torch_dtype": "bfloat16",
28
+ "transformers_version": "4.52.4",
29
+ "use_cache": true,
30
+ "vocab_size": 131392
31
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e635371405d2fd7370329cc0b3f8affad79965a75d24862c755d3f06dd72130a
3
+ size 4611084960
runs/Jun18_08-35-43_ekl-Precision-7920-Tower/events.out.tfevents.1750203353.ekl-Precision-7920-Tower ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89675be041ac2fc7e4695b2e741031fffa6e850f879b21093b05d1eb3d2b766d
3
+ size 8755
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end_of_text|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,705 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<pad>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "<|end_of_text|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "131301": {
28
+ "content": "<|eot_id|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "131302": {
36
+ "content": "<|start_header_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "131303": {
44
+ "content": "<|end_header_id|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "131304": {
52
+ "content": "<|eop_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "131305": {
60
+ "content": "<|begin_of_passage|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "131306": {
68
+ "content": "<|end_of_passage|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "131307": {
76
+ "content": "<img>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "131308": {
84
+ "content": "</img>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "131309": {
92
+ "content": "<ref>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "131310": {
100
+ "content": "</ref>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "131311": {
108
+ "content": "<box>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "131312": {
116
+ "content": "</box>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "131313": {
124
+ "content": "<quad>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "131314": {
132
+ "content": "</quad>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "131315": {
140
+ "content": "<imgpad>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "131316": {
148
+ "content": "<table>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "131317": {
156
+ "content": "</table>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "131318": {
164
+ "content": "<tr>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "131319": {
172
+ "content": "</tr>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "131320": {
180
+ "content": "<td>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "131321": {
188
+ "content": "</td>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "131322": {
196
+ "content": "<chart>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "131323": {
204
+ "content": "</chart>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "131324": {
212
+ "content": "<caption>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "131325": {
220
+ "content": "<thead>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "131326": {
228
+ "content": "<tbody>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "131327": {
236
+ "content": "<tfoot>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "131328": {
244
+ "content": "<th>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "131329": {
252
+ "content": "</caption>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "131330": {
260
+ "content": "</thead>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "131331": {
268
+ "content": "</tbody>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "131332": {
276
+ "content": "</tfoot>\"",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "131333": {
284
+ "content": "</th>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "131334": {
292
+ "content": "<h1>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "131335": {
300
+ "content": "<h2>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "131336": {
308
+ "content": "<h3>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "131337": {
316
+ "content": "<h4>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "131338": {
324
+ "content": "<h5>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "131339": {
332
+ "content": "<h6>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "131340": {
340
+ "content": "<blockquote>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "131341": {
348
+ "content": "</h1>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "131342": {
356
+ "content": "</h2>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "131343": {
364
+ "content": "</h4>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "131344": {
372
+ "content": "</h5>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "131345": {
380
+ "content": "</h6>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "131346": {
388
+ "content": "</blockquote>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "131347": {
396
+ "content": "<strong>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "131348": {
404
+ "content": "<em>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "131349": {
412
+ "content": "<b>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "131350": {
420
+ "content": "<i>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "131351": {
428
+ "content": "<u>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "131352": {
436
+ "content": "<sub>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "131353": {
444
+ "content": "<sup>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "131354": {
452
+ "content": "<code>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "131355": {
460
+ "content": "</strong>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "131356": {
468
+ "content": "</em>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "131357": {
476
+ "content": "</b>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "131358": {
484
+ "content": "</i>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "131359": {
492
+ "content": "</u>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "131360": {
500
+ "content": "</sub>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "131361": {
508
+ "content": "</sup>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "131362": {
516
+ "content": "</code>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "131363": {
524
+ "content": "<|finetune_right_pad_id|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "131364": {
532
+ "content": "<|eom_id|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "131365": {
540
+ "content": "<|python_tag|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "131366": {
548
+ "content": "#@이름@#",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "131367": {
556
+ "content": "#@ID@#",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "131368": {
564
+ "content": "#@주민번호@#",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "131369": {
572
+ "content": "#@이메일@#",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "131370": {
580
+ "content": "#@계좌번호@#",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "131371": {
588
+ "content": "#@전화번호@#",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "131372": {
596
+ "content": "#@주소@#",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "131373": {
604
+ "content": "#@자동차번호@#",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "131374": {
612
+ "content": "#@사업자등록번호@#",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "131375": {
620
+ "content": "#@자동차운전면허번호@#",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "131376": {
628
+ "content": "#@여권번호@#",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "131377": {
636
+ "content": "#@외국인등록번호@#",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "131378": {
644
+ "content": "#@건보번호@#",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "131379": {
652
+ "content": "#@신용카드번호@#",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "131380": {
660
+ "content": "#@IP@#",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "131381": {
668
+ "content": "#@MAC주소@#",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "131382": {
676
+ "content": "#@SNS계정@#",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "131383": {
684
+ "content": "#@통관번호#",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ }
691
+ },
692
+ "bos_token": "<|begin_of_text|>",
693
+ "clean_up_tokenization_spaces": true,
694
+ "content": "<|end_of_text|>",
695
+ "eos_token": "<|eot_id|>",
696
+ "extra_special_tokens": {},
697
+ "legacy": false,
698
+ "lstrip": false,
699
+ "model_max_length": 1000000000000000019884624838656,
700
+ "normalized": false,
701
+ "pad_token": "<|end_of_text|>",
702
+ "rstrip": false,
703
+ "single_word": false,
704
+ "tokenizer_class": "PreTrainedTokenizer"
705
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa48ffc091fc58eaf63e1f0e636c910bdfc4cc0d4bca8cdd0de0a6e0da8ec851
3
+ size 5624