talha970 commited on
Commit
e48f0f0
·
verified ·
1 Parent(s): c5d6bfc

Training in progress, epoch 1

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ model_name: function-gemma-boost
4
+ tags:
5
+ - generated_from_trainer
6
+ - sft
7
+ - trl
8
+ licence: license
9
+ ---
10
+
11
+ # Model Card for function-gemma-boost
12
+
13
+ This model is a fine-tuned version of [None](https://huggingface.co/None).
14
+ It has been trained using [TRL](https://github.com/huggingface/trl).
15
+
16
+ ## Quick start
17
+
18
+ ```python
19
+ from transformers import pipeline
20
+
21
+ 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?"
22
+ generator = pipeline("text-generation", model="talha970/function-gemma-boost", device="cuda")
23
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
24
+ print(output["generated_text"])
25
+ ```
26
+
27
+ ## Training procedure
28
+
29
+
30
+
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 1.3.0
38
+ - Transformers: 5.0.0
39
+ - Pytorch: 2.10.0+cu128
40
+ - Datasets: 4.8.5
41
+ - Tokenizers: 0.22.2
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @software{vonwerra2020trl,
51
+ title = {{TRL: Transformers Reinforcement Learning}},
52
+ author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
53
+ license = {Apache-2.0},
54
+ url = {https://github.com/huggingface/trl},
55
+ year = {2020}
56
+ }
57
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- macro format_parameters(properties, required) -%}
2
+ {%- set standard_keys = ['description', 'type', 'properties', 'required', 'nullable'] -%}
3
+ {%- set ns = namespace(found_first=false) -%}
4
+ {%- for key, value in properties | dictsort -%}
5
+ {%- if key not in standard_keys -%}
6
+ {%- if ns.found_first %},{% endif -%}
7
+ {%- set ns.found_first = true -%}
8
+ {{- key }}:{description:<escape>{{ value['description'] }}<escape>
9
+ {%- if value['type'] | upper == 'STRING' -%}
10
+ {%- if value['enum'] -%}
11
+ ,enum:{{ format_argument(value['enum']) }}
12
+ {%- endif -%}
13
+ {%- elif value['type'] | upper == 'OBJECT' -%}
14
+ ,properties:{
15
+ {%- if value['properties'] is defined and value['properties'] is mapping -%}
16
+ {{- format_parameters(value['properties'], value['required'] | default([])) -}}
17
+ {%- elif value is mapping -%}
18
+ {{- format_parameters(value, value['required'] | default([])) -}}
19
+ {%- endif -%}
20
+ }
21
+ {%- if value['required'] -%}
22
+ ,required:[
23
+ {%- for item in value['required'] | default([]) -%}
24
+ <escape>{{- item -}}<escape>
25
+ {%- if not loop.last %},{% endif -%}
26
+ {%- endfor -%}
27
+ ]
28
+ {%- endif -%}
29
+ {%- elif value['type'] | upper == 'ARRAY' -%}
30
+ {%- if value['items'] is mapping and value['items'] -%}
31
+ ,items:{
32
+ {%- set ns_items = namespace(found_first=false) -%}
33
+ {%- for item_key, item_value in value['items'] | dictsort -%}
34
+ {%- if item_value is not none -%}
35
+ {%- if ns_items.found_first %},{% endif -%}
36
+ {%- set ns_items.found_first = true -%}
37
+ {%- if item_key == 'properties' -%}
38
+ properties:{
39
+ {%- if item_value is mapping -%}
40
+ {{- format_parameters(item_value, value['items']['required'] | default([])) -}}
41
+ {%- endif -%}
42
+ }
43
+ {%- elif item_key == 'required' -%}
44
+ required:[
45
+ {%- for req_item in item_value -%}
46
+ <escape>{{- req_item -}}<escape>
47
+ {%- if not loop.last %},{% endif -%}
48
+ {%- endfor -%}
49
+ ]
50
+ {%- elif item_key == 'type' -%}
51
+ {%- if item_value is string -%}
52
+ type:{{ format_argument(item_value | upper) }}
53
+ {%- else -%}
54
+ type:{{ format_argument(item_value | map('upper') | list) }}
55
+ {%- endif -%}
56
+ {%- else -%}
57
+ {{ item_key }}:{{ format_argument(item_value) }}
58
+ {%- endif -%}
59
+ {%- endif -%}
60
+ {%- endfor -%}
61
+ }
62
+ {%- endif -%}
63
+ {%- endif -%}
64
+ ,type:<escape>{{ value['type'] | upper }}<escape>}
65
+ {%- endif -%}
66
+ {%- endfor -%}
67
+ {%- endmacro -%}
68
+ {% macro format_function_declaration(tool_data) -%}
69
+ declaration:{{- tool_data['function']['name'] -}}
70
+ {description:<escape>{{- tool_data['function']['description'] -}}<escape>
71
+ {%- set params = tool_data['function']['parameters'] -%}
72
+ {%- if params -%}
73
+ ,parameters:{
74
+ {%- if params['properties'] -%}
75
+ properties:{ {{- format_parameters(params['properties'], params['required']) -}} },
76
+ {%- endif -%}
77
+ {%- if params['required'] -%}
78
+ required:[
79
+ {%- for item in params['required'] -%}
80
+ <escape>{{- item -}}<escape>
81
+ {{- ',' if not loop.last -}}
82
+ {%- endfor -%}
83
+ ],
84
+ {%- endif -%}
85
+ {%- if params['type'] -%}
86
+ type:<escape>{{- params['type'] | upper -}}<escape>}
87
+ {%- endif -%}
88
+ {%- endif -%}
89
+ }
90
+ {%- endmacro -%}
91
+ {% macro format_argument(argument, escape_keys=True) -%}
92
+ {%- if argument is string -%}
93
+ {{- '<escape>' + argument + '<escape>' -}}
94
+ {%- elif argument is boolean -%}
95
+ {%- if argument -%}
96
+ {{- 'true' -}}
97
+ {%- else -%}
98
+ {{- 'false' -}}
99
+ {%- endif -%}
100
+ {%- elif argument is mapping -%}
101
+ {{- '{' -}}
102
+ {%- set ns = namespace(found_first=false) -%}
103
+ {%- for key, value in argument | dictsort -%}
104
+ {%- if ns.found_first %},{% endif -%}
105
+ {%- set ns.found_first = true -%}
106
+ {%- if escape_keys -%}
107
+ {{- '<escape>' + key + '<escape>' -}}
108
+ {%- else -%}
109
+ {{- key -}}
110
+ {%- endif -%}
111
+ :{{- format_argument(value, escape_keys=escape_keys) -}}
112
+ {%- endfor -%}
113
+ {{- '}' -}}
114
+ {%- elif argument is sequence -%}
115
+ {{- '[' -}}
116
+ {%- for item in argument -%}
117
+ {{- format_argument(item, escape_keys=escape_keys) -}}
118
+ {%- if not loop.last %},{% endif -%}
119
+ {%- endfor -%}
120
+ {{- ']' -}}
121
+ {%- else -%}
122
+ {{- argument -}}
123
+ {%- endif -%}
124
+ {%- endmacro -%}
125
+ {{ bos_token }}
126
+ {%- set ns = namespace(prev_message_type=None) -%}
127
+ {#- Tool Declarations -#}
128
+ {%- set loop_messages = messages -%}
129
+ {%- if tools or messages[0]['role'] == 'system' or messages[0]['role'] == 'developer' -%}
130
+ {{- '<start_of_turn>developer\n' -}}
131
+ {%- if messages[0]['role'] == 'system' or messages[0]['role'] == 'developer' -%}
132
+ {%- if messages[0]['content'] is string -%}
133
+ {{- messages[0]['content'] | trim -}}
134
+ {%- elif messages[0]['content'] is sequence -%}
135
+ {%- for item in messages[0]['content'] -%}
136
+ {%- if item['type'] == 'text' -%}
137
+ {{- item['text'] | trim -}}
138
+ {%- endif -%}
139
+ {%- endfor -%}
140
+ {%- endif -%}
141
+ {%- set loop_messages = messages[1:] -%}
142
+ {%- endif -%}
143
+ {%- if tools -%}
144
+ {%- for tool in tools %}
145
+ {{- '<start_function_declaration>' -}}
146
+ {{- format_function_declaration(tool) | trim }}
147
+ {{- '<end_function_declaration>' -}}
148
+ {%- endfor %}
149
+ {%- endif -%}
150
+ {{- '<end_of_turn>\n' }}
151
+ {%- endif %}
152
+ {#- Loop through messages. -#}
153
+ {%- for message in loop_messages -%}
154
+ {%- if (message['role'] == 'assistant') -%}
155
+ {#- Rename "assistant" to "model". -#}
156
+ {%- set role = "model" -%}
157
+ {%- else -%}
158
+ {%- set role = message['role'] -%}
159
+ {%- endif -%}
160
+ {%- if role != 'tool' -%}
161
+ {%- if ns.prev_message_type != 'tool_response' -%}
162
+ {{- '<start_of_turn>' + role + '\n' }}
163
+ {%- endif -%}
164
+ {%- set ns.prev_message_type = None -%}
165
+ {%- if 'content' in message and message['content'] is not none -%}
166
+ {%- if message['content'] is string -%}
167
+ {{ message['content'] | trim }}
168
+ {%- elif message['content'] is sequence -%}
169
+ {%- for item in message['content'] -%}
170
+ {%- if item['type'] == 'image' -%}
171
+ {{ '<start_of_image>' }}
172
+ {%- elif item['type'] == 'text' -%}
173
+ {{ item['text'] | trim }}
174
+ {%- endif -%}
175
+ {%- endfor -%}
176
+ {%- else -%}
177
+ {{ raise_exception("Invalid content type in user/assistant message") }}
178
+ {%- endif -%}
179
+ {%- set ns.prev_message_type = 'content' -%}
180
+ {%- endif -%}
181
+ {%- if 'tool_calls' in message and message['tool_calls'] and message['tool_calls'] is iterable -%}
182
+ {#- Tool Calls -#}
183
+ {%- for tool_call in message['tool_calls'] -%}
184
+ {% set function = tool_call['function'] %}
185
+ {{- '<start_function_call>call:' + function['name'] + '{' -}}
186
+ {%- if 'arguments' in function -%}
187
+ {%- if function['arguments'] is mapping -%}
188
+ {%- set ns = namespace(found_first=false) -%}
189
+ {%- for key, value in function['arguments'] | dictsort -%}
190
+ {%- if ns.found_first %},{% endif -%}
191
+ {%- set ns.found_first = true -%}
192
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
193
+ {%- endfor -%}
194
+ {%- elif function['arguments'] is string -%}
195
+ {# This handles string-JSON, just in case #}
196
+ {{ function['arguments'] }}
197
+ {%- endif %}
198
+ {%- endif -%}
199
+ {{- '}<end_function_call>' -}}
200
+ {%- endfor -%}
201
+ {%- if loop.last -%}
202
+ {{ '<start_function_response>' }}
203
+ {%- endif -%}
204
+ {%- set ns.prev_message_type = 'tool_call' -%}
205
+ {%- endif -%}
206
+ {%- else -%}
207
+ {#- Tool Responses -#}
208
+ {%- if 'content' in message and message['content'] -%}
209
+ {%- if message['content'] is mapping -%}
210
+ {%- if 'name' in message['content'] and 'response' in message['content'] -%}
211
+ {{ '<start_function_response>response:' + message['content']['name'] | trim + '{' }}
212
+ {%- set response_ns = namespace(found_first=false) -%}
213
+ {%- for key, value in message['content']['response'] | dictsort -%}
214
+ {%- if response_ns.found_first %},{% endif -%}
215
+ {%- set response_ns.found_first = true -%}
216
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
217
+ {%- endfor -%}
218
+ {{- '}<end_function_response>' -}}
219
+ {%- elif 'name' in message -%}
220
+ {{ '<start_function_response>response:' + message['name'] | trim + '{' }}
221
+ {%- set response_ns = namespace(found_first=false) -%}
222
+ {%- for key, value in message['content'] | dictsort -%}
223
+ {%- if response_ns.found_first %},{% endif -%}
224
+ {%- set response_ns.found_first = true -%}
225
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
226
+ {%- endfor -%}
227
+ {{- '}<end_function_response>' -}}
228
+ {%- else -%}
229
+ {{ raise_exception("Invalid tool response mapping: must contain 'name' and 'response' keys, or 'name' must be in the message.") }}
230
+ {%- endif -%}
231
+ {%- elif message['content'] is string -%}
232
+ {%- if 'name' in message -%}
233
+ {{ '<start_function_response>response:' + message['name'] | trim + '{value:' + format_argument(message['content'], escape_keys=False) + '}<end_function_response>' }}
234
+ {%- else -%}
235
+ {{ raise_exception("Invalid tool response: 'name' must be provided.") }}
236
+ {%- endif -%}
237
+ {%- elif message['content'] is sequence -%}
238
+ {%- for item in message['content'] -%}
239
+ {%- if item is mapping -%}
240
+ {%- if 'name' in item and 'response' in item -%}
241
+ {{ '<start_function_response>response:' + item['name'] | trim + '{' }}
242
+ {%- set response_ns = namespace(found_first=false) -%}
243
+ {%- for key, value in item['response'] | dictsort -%}
244
+ {%- if response_ns.found_first %},{% endif -%}
245
+ {%- set response_ns.found_first = true -%}
246
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
247
+ {%- endfor -%}
248
+ {{- '}<end_function_response>' -}}
249
+ {%- elif 'name' in message -%}
250
+ {{ '<start_function_response>response:' + message['name'] | trim + '{' }}
251
+ {%- set response_ns = namespace(found_first=false) -%}
252
+ {%- for key, value in item | dictsort -%}
253
+ {%- if response_ns.found_first %},{% endif -%}
254
+ {%- set response_ns.found_first = true -%}
255
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
256
+ {%- endfor -%}
257
+ {{- '}<end_function_response>' -}}
258
+ {%- else -%}
259
+ {{ raise_exception("Invalid tool response mapping: must contain 'name' and 'response' keys, or 'name' must be in the message.") }}
260
+ {%- endif -%}
261
+ {%- else -%}
262
+ {{ raise_exception("Invalid tool response message: multiple responses must all be mappings") }}
263
+ {%- endif -%}
264
+ {%- endfor -%}
265
+ {%- else -%}
266
+ {{ raise_exception("Invalid content type in tool message: must be mapping, sequence of mappings, or string.") }}
267
+ {%- endif -%}
268
+ {%- endif -%}
269
+ {%- set ns.prev_message_type = 'tool_response' -%}
270
+ {%- endif -%}
271
+ {%- if ns.prev_message_type not in ['tool_call', 'tool_response'] -%}
272
+ {{ '<end_of_turn>\n' }}
273
+ {%- endif -%}
274
+ {%- endfor -%}
275
+ {%- if add_generation_prompt -%}
276
+ {%- if ns.prev_message_type != 'tool_response' -%}
277
+ {{- '<start_of_turn>model\n' -}}
278
+ {%- endif -%}
279
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_sliding_window_pattern": 6,
3
+ "architectures": [
4
+ "Gemma3ForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "attn_logit_softcapping": null,
9
+ "bos_token_id": 2,
10
+ "dtype": "bfloat16",
11
+ "eos_token_id": 1,
12
+ "final_logit_softcapping": null,
13
+ "head_dim": 256,
14
+ "hidden_activation": "gelu_pytorch_tanh",
15
+ "hidden_size": 640,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 2048,
18
+ "layer_types": [
19
+ "sliding_attention",
20
+ "sliding_attention",
21
+ "sliding_attention",
22
+ "sliding_attention",
23
+ "sliding_attention",
24
+ "full_attention",
25
+ "sliding_attention",
26
+ "sliding_attention",
27
+ "sliding_attention",
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "full_attention",
31
+ "sliding_attention",
32
+ "sliding_attention",
33
+ "sliding_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "full_attention"
37
+ ],
38
+ "max_position_embeddings": 32768,
39
+ "model_type": "gemma3_text",
40
+ "num_attention_heads": 4,
41
+ "num_hidden_layers": 18,
42
+ "num_key_value_heads": 1,
43
+ "pad_token_id": 0,
44
+ "query_pre_attn_scalar": 256,
45
+ "rms_norm_eps": 1e-06,
46
+ "rope_parameters": {
47
+ "full_attention": {
48
+ "rope_theta": 1000000.0,
49
+ "rope_type": "default"
50
+ },
51
+ "sliding_attention": {
52
+ "rope_theta": 10000.0,
53
+ "rope_type": "default"
54
+ }
55
+ },
56
+ "sliding_window": 512,
57
+ "tie_word_embeddings": true,
58
+ "transformers_version": "5.0.0",
59
+ "use_bidirectional_attention": false,
60
+ "use_cache": false,
61
+ "vocab_size": 262144
62
+ }
generation_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "cache_implementation": "hybrid",
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 1,
7
+ 1,
8
+ 50,
9
+ 106
10
+ ],
11
+ "pad_token_id": 0,
12
+ "top_k": 64,
13
+ "top_p": 0.95,
14
+ "transformers_version": "5.0.0"
15
+ }
literal_copy_augmentation.csv ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "set assignee to johny",edit_task,"{""assignee"":""johny""}"
2
+ "set assignee to zayvion",edit_task,"{""assignee"":""zayvion""}"
3
+ "set assignee to marcell",edit_task,"{""assignee"":""marcell""}"
4
+ "set assignee to teo",edit_task,"{""assignee"":""teo""}"
5
+ "set assignee to faris",edit_task,"{""assignee"":""faris""}"
6
+ "set assignee to nuri",edit_task,"{""assignee"":""nuri""}"
7
+ "set assignee to eshan",edit_task,"{""assignee"":""eshan""}"
8
+ "set assignee to anya",edit_task,"{""assignee"":""anya""}"
9
+ "set assignee to lev",edit_task,"{""assignee"":""lev""}"
10
+ "set assignee to omri",edit_task,"{""assignee"":""omri""}"
11
+ "set assignee to kael",edit_task,"{""assignee"":""kael""}"
12
+ "set assignee to micah",edit_task,"{""assignee"":""micah""}"
13
+ "set assignee to soren",edit_task,"{""assignee"":""soren""}"
14
+ "set assignee to bram",edit_task,"{""assignee"":""bram""}"
15
+ "set assignee to irie",edit_task,"{""assignee"":""irie""}"
16
+ "assign this to johny",edit_task,"{""assignee"":""johny""}"
17
+ "assign this to zayvion",edit_task,"{""assignee"":""zayvion""}"
18
+ "assign this to marcell",edit_task,"{""assignee"":""marcell""}"
19
+ "assign this to teo",edit_task,"{""assignee"":""teo""}"
20
+ "assign this to faris",edit_task,"{""assignee"":""faris""}"
21
+ "assign this to nuri",edit_task,"{""assignee"":""nuri""}"
22
+ "assign this to eshan",edit_task,"{""assignee"":""eshan""}"
23
+ "assign this to anya",edit_task,"{""assignee"":""anya""}"
24
+ "assign this to lev",edit_task,"{""assignee"":""lev""}"
25
+ "assign this to omri",edit_task,"{""assignee"":""omri""}"
26
+ "assign this to kael",edit_task,"{""assignee"":""kael""}"
27
+ "put johny on it",edit_task,"{""assignee"":""johny""}"
28
+ "put zayvion on it",edit_task,"{""assignee"":""zayvion""}"
29
+ "put marcell on it",edit_task,"{""assignee"":""marcell""}"
30
+ "put teo on it",edit_task,"{""assignee"":""teo""}"
31
+ "put faris on it",edit_task,"{""assignee"":""faris""}"
32
+ "put nuri on it",edit_task,"{""assignee"":""nuri""}"
33
+ "put eshan on it",edit_task,"{""assignee"":""eshan""}"
34
+ "put anya on it",edit_task,"{""assignee"":""anya""}"
35
+ "put lev on it",edit_task,"{""assignee"":""lev""}"
36
+ "put omri on it",edit_task,"{""assignee"":""omri""}"
37
+ "make the assignee johny",edit_task,"{""assignee"":""johny""}"
38
+ "make the assignee zayvion",edit_task,"{""assignee"":""zayvion""}"
39
+ "make the assignee marcell",edit_task,"{""assignee"":""marcell""}"
40
+ "make the assignee teo",edit_task,"{""assignee"":""teo""}"
41
+ "make the assignee faris",edit_task,"{""assignee"":""faris""}"
42
+ "make the assignee nuri",edit_task,"{""assignee"":""nuri""}"
43
+ "set location to bay q7",edit_task,"{""location"":""bay q7""}"
44
+ "set location to room zx 14",edit_task,"{""location"":""room zx 14""}"
45
+ "set location to north pit 3",edit_task,"{""location"":""north pit 3""}"
46
+ "set location to corridor mint",edit_task,"{""location"":""corridor mint""}"
47
+ "set location to unit k2",edit_task,"{""location"":""unit k2""}"
48
+ "set location to dock c orange",edit_task,"{""location"":""dock c orange""}"
49
+ "set location to attic west 9",edit_task,"{""location"":""attic west 9""}"
50
+ "set location to lab beta",edit_task,"{""location"":""lab beta""}"
51
+ "set location to tower 5 niche",edit_task,"{""location"":""tower 5 niche""}"
52
+ "set location to vault m",edit_task,"{""location"":""vault m""}"
53
+ "move this to bay q7",edit_task,"{""location"":""bay q7""}"
54
+ "move this to room zx 14",edit_task,"{""location"":""room zx 14""}"
55
+ "move this to north pit 3",edit_task,"{""location"":""north pit 3""}"
56
+ "move this to corridor mint",edit_task,"{""location"":""corridor mint""}"
57
+ "move this to unit k2",edit_task,"{""location"":""unit k2""}"
58
+ "move this to dock c orange",edit_task,"{""location"":""dock c orange""}"
59
+ "move this to attic west 9",edit_task,"{""location"":""attic west 9""}"
60
+ "make the location lab beta",edit_task,"{""location"":""lab beta""}"
61
+ "make the location tower 5 niche",edit_task,"{""location"":""tower 5 niche""}"
62
+ "make the location vault m",edit_task,"{""location"":""vault m""}"
63
+ "set plan to aqx 12",edit_task,"{""plan"":""aqx 12""}"
64
+ "set plan to fp zebra 4",edit_task,"{""plan"":""fp zebra 4""}"
65
+ "set plan to c note 17",edit_task,"{""plan"":""c note 17""}"
66
+ "set plan to mep kiwi",edit_task,"{""plan"":""mep kiwi""}"
67
+ "set plan to rcp delta 8",edit_task,"{""plan"":""rcp delta 8""}"
68
+ "set plan to sheet plum 3",edit_task,"{""plan"":""sheet plum 3""}"
69
+ "set plan to aa 19",edit_task,"{""plan"":""aa 19""}"
70
+ "set plan to p memo 6",edit_task,"{""plan"":""p memo 6""}"
71
+ "set plan to detail fox 2",edit_task,"{""plan"":""detail fox 2""}"
72
+ "set plan to zone maple",edit_task,"{""plan"":""zone maple""}"
73
+ "move this to plan aqx 12",edit_task,"{""plan"":""aqx 12""}"
74
+ "move this to plan fp zebra 4",edit_task,"{""plan"":""fp zebra 4""}"
75
+ "move this to plan c note 17",edit_task,"{""plan"":""c note 17""}"
76
+ "move this to plan mep kiwi",edit_task,"{""plan"":""mep kiwi""}"
77
+ "move this to plan rcp delta 8",edit_task,"{""plan"":""rcp delta 8""}"
78
+ "make the plan sheet plum 3",edit_task,"{""plan"":""sheet plum 3""}"
79
+ "make the plan aa 19",edit_task,"{""plan"":""aa 19""}"
80
+ "make the plan p memo 6",edit_task,"{""plan"":""p memo 6""}"
81
+ "make the plan detail fox 2",edit_task,"{""plan"":""detail fox 2""}"
82
+ "make the plan zone maple",edit_task,"{""plan"":""zone maple""}"
83
+ "add a comment hold for iris from unit 4",edit_task,"{""comments"":""hold for iris from unit 4""}"
84
+ "add a comment leave badge at desk q",edit_task,"{""comments"":""leave badge at desk q""}"
85
+ "add a comment call vendor about model x9",edit_task,"{""comments"":""call vendor about model x9""}"
86
+ "add a comment access only after 6 15",edit_task,"{""comments"":""access only after 6 15""}"
87
+ "add a comment do not touch valve p",edit_task,"{""comments"":""do not touch valve p""}"
88
+ "add a comment send photo to arun",edit_task,"{""comments"":""send photo to arun""}"
89
+ "add a comment key is with lena",edit_task,"{""comments"":""key is with lena""}"
90
+ "add a comment owner asked for quiet cart wheels",edit_task,"{""comments"":""owner asked for quiet cart wheels""}"
91
+ "add a comment temp sensor reads odd at noon",edit_task,"{""comments"":""temp sensor reads odd at noon""}"
92
+ "add a comment use orange tape only",edit_task,"{""comments"":""use orange tape only""}"
93
+ "note that hold for iris from unit 4",edit_task,"{""comments"":""hold for iris from unit 4""}"
94
+ "note that leave badge at desk q",edit_task,"{""comments"":""leave badge at desk q""}"
95
+ "note that call vendor about model x9",edit_task,"{""comments"":""call vendor about model x9""}"
96
+ "note that access only after 6 15",edit_task,"{""comments"":""access only after 6 15""}"
97
+ "note that do not touch valve p",edit_task,"{""comments"":""do not touch valve p""}"
98
+ "note that send photo to arun",edit_task,"{""comments"":""send photo to arun""}"
99
+ "note that key is with lena",edit_task,"{""comments"":""key is with lena""}"
100
+ "note that owner asked for quiet cart wheels",edit_task,"{""comments"":""owner asked for quiet cart wheels""}"
101
+ "note that temp sensor reads odd at noon",edit_task,"{""comments"":""temp sensor reads odd at noon""}"
102
+ "note that use orange tape only",edit_task,"{""comments"":""use orange tape only""}"
103
+ "set title to roof hatch corrosion followup",edit_task,"{""title"":""roof hatch corrosion followup""}"
104
+ "set title to chilled water pump alarm 7",edit_task,"{""title"":""chilled water pump alarm 7""}"
105
+ "set title to west lobby punchlist item",edit_task,"{""title"":""west lobby punchlist item""}"
106
+ "set title to rtu 4 filter swap",edit_task,"{""title"":""rtu 4 filter swap""}"
107
+ "set title to gc callback for unit 18",edit_task,"{""title"":""gc callback for unit 18""}"
108
+ "change title to rfi pending storefront mullion",edit_task,"{""title"":""rfi pending storefront mullion""}"
109
+ "change title to ahu 2 condensate reroute",edit_task,"{""title"":""ahu 2 condensate reroute""}"
110
+ "change title to slab edge patch south tower",edit_task,"{""title"":""slab edge patch south tower""}"
111
+ "rename to kitchen gfi nuisance trip",edit_task,"{""title"":""kitchen gfi nuisance trip""}"
112
+ "rename to level 8 fan coil rattle",edit_task,"{""title"":""level 8 fan coil rattle""}"
113
+ "call it millwork scratch at suite 204",edit_task,"{""title"":""millwork scratch at suite 204""}"
114
+ "call it dehumidifier drain slope",edit_task,"{""title"":""dehumidifier drain slope""}"
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cd39774ec51ec8b5500754c5a6ccacc0cb33a6c1f8c2482ae577316eab058f9
3
+ size 536223056
runs/May06_19-05-38_f4c70cf9f084/events.out.tfevents.1778094338.f4c70cf9f084.9120.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bc111d0cd9a0eed100e24af9c0b88bc5e588e36f7d65a866980a96286d0949c
3
+ size 17748
title_copy_augmentation.csv ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "set title to roof hatch corrosion followup",edit_task,"{""title"":""roof hatch corrosion followup""}"
2
+ "set title to chilled water pump alarm 7",edit_task,"{""title"":""chilled water pump alarm 7""}"
3
+ "set title to west lobby punchlist item",edit_task,"{""title"":""west lobby punchlist item""}"
4
+ "set title to rtu 4 filter swap",edit_task,"{""title"":""rtu 4 filter swap""}"
5
+ "set title to gc callback for unit 18",edit_task,"{""title"":""gc callback for unit 18""}"
6
+ "set title to low slope drain cleanup",edit_task,"{""title"":""low slope drain cleanup""}"
7
+ "set title to temp note 54",edit_task,"{""title"":""temp note 54""}"
8
+ "set title to north stair guardrail touchup",edit_task,"{""title"":""north stair guardrail touchup""}"
9
+ "set title to vav box 12 noise check",edit_task,"{""title"":""vav box 12 noise check""}"
10
+ "set title to loading bay camera mount",edit_task,"{""title"":""loading bay camera mount""}"
11
+ "change title to rfi pending storefront mullion",edit_task,"{""title"":""rfi pending storefront mullion""}"
12
+ "change title to ahu 2 condensate reroute",edit_task,"{""title"":""ahu 2 condensate reroute""}"
13
+ "change title to slab edge patch south tower",edit_task,"{""title"":""slab edge patch south tower""}"
14
+ "change title to mop sink backflow question",edit_task,"{""title"":""mop sink backflow question""}"
15
+ "change title to fp panel zone 6 reset",edit_task,"{""title"":""fp panel zone 6 reset""}"
16
+ "change title to unit b7 turnover note",edit_task,"{""title"":""unit b7 turnover note""}"
17
+ "change title to mezzanine bird screen gap",edit_task,"{""title"":""mezzanine bird screen gap""}"
18
+ "change title to short test phrase 88",edit_task,"{""title"":""short test phrase 88""}"
19
+ "change title to xrf sample hold",edit_task,"{""title"":""xrf sample hold""}"
20
+ "change title to parking gate loop issue",edit_task,"{""title"":""parking gate loop issue""}"
21
+ "rename to kitchen gfi nuisance trip",edit_task,"{""title"":""kitchen gfi nuisance trip""}"
22
+ "rename to level 8 fan coil rattle",edit_task,"{""title"":""level 8 fan coil rattle""}"
23
+ "rename to podium joint sealant review",edit_task,"{""title"":""podium joint sealant review""}"
24
+ "rename to roofer return visit 3",edit_task,"{""title"":""roofer return visit 3""}"
25
+ "rename to elevator sump float check",edit_task,"{""title"":""elevator sump float check""}"
26
+ "rename to ewc battery replacement",edit_task,"{""title"":""ewc battery replacement""}"
27
+ "rename to brick sample mockup",edit_task,"{""title"":""brick sample mockup""}"
28
+ "rename to permit card photo",edit_task,"{""title"":""permit card photo""}"
29
+ "rename to bms point mapping",edit_task,"{""title"":""bms point mapping""}"
30
+ "rename to p3 signage typo",edit_task,"{""title"":""p3 signage typo""}"
31
+ "call it millwork scratch at suite 204",edit_task,"{""title"":""millwork scratch at suite 204""}"
32
+ "call it dehumidifier drain slope",edit_task,"{""title"":""dehumidifier drain slope""}"
33
+ "call it curtain track bind",edit_task,"{""title"":""curtain track bind""}"
34
+ "call it room 512 odor complaint",edit_task,"{""title"":""room 512 odor complaint""}"
35
+ "call it low voltage label mismatch",edit_task,"{""title"":""low voltage label mismatch""}"
36
+ "call it oac louver dent",edit_task,"{""title"":""oac louver dent""}"
37
+ "call it phasing note delta",edit_task,"{""title"":""phasing note delta""}"
38
+ "call it paint sample c",edit_task,"{""title"":""paint sample c""}"
39
+ "call it rooftop curb shim",edit_task,"{""title"":""rooftop curb shim""}"
40
+ "call it unit 9 closet punch",edit_task,"{""title"":""unit 9 closet punch""}"
41
+ "make the title plaza deck moisture test",edit_task,"{""title"":""plaza deck moisture test""}"
42
+ "make the title rfq for temp fencing",edit_task,"{""title"":""rfq for temp fencing""}"
43
+ "make the title warehouse dock bumper",edit_task,"{""title"":""warehouse dock bumper""}"
44
+ "make the title south facade drip mark",edit_task,"{""title"":""south facade drip mark""}"
45
+ "make the title piping iso mismatch",edit_task,"{""title"":""piping iso mismatch""}"
46
+ "make the title hold for owner color pick",edit_task,"{""title"":""hold for owner color pick""}"
47
+ "make the title random phrase kiwi ladder",edit_task,"{""title"":""random phrase kiwi ladder""}"
48
+ "make the title test row gamma 11",edit_task,"{""title"":""test row gamma 11""}"
49
+ "make the title gym floor bubble",edit_task,"{""title"":""gym floor bubble""}"
50
+ "make the title lobby bench wobble",edit_task,"{""title"":""lobby bench wobble""}"
51
+ "update the title to panelboard a issue",edit_task,"{""title"":""panelboard a issue""}"
52
+ "update the title to duct riser photo needed",edit_task,"{""title"":""duct riser photo needed""}"
53
+ "update the title to retail bay 6 handoff",edit_task,"{""title"":""retail bay 6 handoff""}"
54
+ "update the title to tstat 14 battery low",edit_task,"{""title"":""tstat 14 battery low""}"
55
+ "update the title to fiber patch panel note",edit_task,"{""title"":""fiber patch panel note""}"
56
+ "update the title to qa walk item red",edit_task,"{""title"":""qa walk item red""}"
57
+ "update the title to water entry at cmu joint",edit_task,"{""title"":""water entry at cmu joint""}"
58
+ "update the title to attic access latch",edit_task,"{""title"":""attic access latch""}"
59
+ "update the title to punch cleanup phase 2",edit_task,"{""title"":""punch cleanup phase 2""}"
60
+ "update the title to misc followup 203",edit_task,"{""title"":""misc followup 203""}"
61
+ "change the title to idf rack grounding",edit_task,"{""title"":""idf rack grounding""}"
62
+ "change the title to expansion joint stain",edit_task,"{""title"":""expansion joint stain""}"
63
+ "change the title to unit 31 key handoff",edit_task,"{""title"":""unit 31 key handoff""}"
64
+ "change the title to additonal bollard request",edit_task,"{""title"":""additonal bollard request""}"
65
+ "change the title to plant shelf measurement",edit_task,"{""title"":""plant shelf measurement""}"
66
+ "change the title to sspc coating note",edit_task,"{""title"":""sspc coating note""}"
67
+ "change the title to short weird phrase maple wire",edit_task,"{""title"":""short weird phrase maple wire""}"
68
+ "change the title to elec room 2 cleanout",edit_task,"{""title"":""elec room 2 cleanout""}"
69
+ "change the title to roofer lunch gate code",edit_task,"{""title"":""roofer lunch gate code""}"
70
+ "change the title to sequence test beta",edit_task,"{""title"":""sequence test beta""}"
71
+ "rename this to membrane blister near scupper",edit_task,"{""title"":""membrane blister near scupper""}"
72
+ "rename this to gas valve tag 19",edit_task,"{""title"":""gas valve tag 19""}"
73
+ "rename this to storefront sill bow",edit_task,"{""title"":""storefront sill bow""}"
74
+ "rename this to training row apricot",edit_task,"{""title"":""training row apricot""}"
75
+ "rename this to pex support spacing",edit_task,"{""title"":""pex support spacing""}"
76
+ "rename this to upper roof hatch key",edit_task,"{""title"":""upper roof hatch key""}"
77
+ "rename this to closeout binder photo",edit_task,"{""title"":""closeout binder photo""}"
78
+ "rename this to riser clamp offset",edit_task,"{""title"":""riser clamp offset""}"
79
+ "rename this to beacon strobe sync",edit_task,"{""title"":""beacon strobe sync""}"
80
+ "rename this to blank test title 901",edit_task,"{""title"":""blank test title 901""}"
81
+ "call this fa node address 23",edit_task,"{""title"":""fa node address 23""}"
82
+ "call this elevator lobby reveal gap",edit_task,"{""title"":""elevator lobby reveal gap""}"
83
+ "call this random words copper peach",edit_task,"{""title"":""random words copper peach""}"
84
+ "call this garage exhaust startup",edit_task,"{""title"":""garage exhaust startup""}"
85
+ "call this typx sign correction",edit_task,"{""title"":""typx sign correction""}"
86
+ "call this owner attic question",edit_task,"{""title"":""owner attic question""}"
87
+ "call this unit 22 paint nick",edit_task,"{""title"":""unit 22 paint nick""}"
88
+ "call this weather seal bite",edit_task,"{""title"":""weather seal bite""}"
89
+ "call this rooftop catwalk bolt",edit_task,"{""title"":""rooftop catwalk bolt""}"
90
+ "call this data drop check",edit_task,"{""title"":""data drop check""}"
91
+ "title should be gc escort required",edit_task,"{""title"":""gc escort required""}"
92
+ "title should be bypass damper label",edit_task,"{""title"":""bypass damper label""}"
93
+ "title should be random title lemon truck",edit_task,"{""title"":""random title lemon truck""}"
94
+ "title should be level b2 drain smell",edit_task,"{""title"":""level b2 drain smell""}"
95
+ "title should be temporary lighting cord",edit_task,"{""title"":""temporary lighting cord""}"
96
+ "title should be room 606 latch check",edit_task,"{""title"":""room 606 latch check""}"
97
+ "title should be smoke seal corner",edit_task,"{""title"":""smoke seal corner""}"
98
+ "title should be cpvc hanger touchup",edit_task,"{""title"":""cpvc hanger touchup""}"
99
+ "title should be panel l2 deadfront",edit_task,"{""title"":""panel l2 deadfront""}"
100
+ "title should be x1 sample note",edit_task,"{""title"":""x1 sample note""}"
101
+ "retitle it as podium drain basket",edit_task,"{""title"":""podium drain basket""}"
102
+ "retitle it as mixed air sensor drift",edit_task,"{""title"":""mixed air sensor drift""}"
103
+ "retitle it as orange ladder sticker",edit_task,"{""title"":""orange ladder sticker""}"
104
+ "retitle it as cctv mount shim",edit_task,"{""title"":""cctv mount shim""}"
105
+ "retitle it as room 119 grout haze",edit_task,"{""title"":""room 119 grout haze""}"
106
+ "retitle it as air balance revisit",edit_task,"{""title"":""air balance revisit""}"
107
+ "retitle it as permit scan upload",edit_task,"{""title"":""permit scan upload""}"
108
+ "retitle it as slab scan pending",edit_task,"{""title"":""slab scan pending""}"
109
+ "retitle it as odor test north wing",edit_task,"{""title"":""odor test north wing""}"
110
+ "retitle it as tbd closeout line",edit_task,"{""title"":""tbd closeout line""}"
111
+ "use valley flashing punch as the title",edit_task,"{""title"":""valley flashing punch""}"
112
+ "use owner note 3 as the title",edit_task,"{""title"":""owner note 3""}"
113
+ "use thermal camera revisit as the title",edit_task,"{""title"":""thermal camera revisit""}"
114
+ "use level 1 mop base as the title",edit_task,"{""title"":""level 1 mop base""}"
115
+ "use qd sample batch as the title",edit_task,"{""title"":""qd sample batch""}"
116
+ "use random words silver tunnel as the title",edit_task,"{""title"":""random words silver tunnel""}"
117
+ "use louver birdscreen tear as the title",edit_task,"{""title"":""louver birdscreen tear""}"
118
+ "use room 204 hinge squeak as the title",edit_task,"{""title"":""room 204 hinge squeak""}"
119
+ "use punch item kiwi 2 as the title",edit_task,"{""title"":""punch item kiwi 2""}"
120
+ "use condensate trap primer as the title",edit_task,"{""title"":""condensate trap primer""}"
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3655797f9d732b7dc08b4225200697af8e37d94b74711d9b1d8166feb953578
3
+ size 33384774
tokenizer_config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "boi_token": "<start_of_image>",
4
+ "bos_token": "<bos>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eoi_token": "<end_of_image>",
7
+ "eos_token": "<eos>",
8
+ "extra_special_tokens": [],
9
+ "image_token": "<image_soft_token>",
10
+ "is_local": true,
11
+ "mask_token": "<mask>",
12
+ "model_max_length": 1000000000000000019884624838656,
13
+ "model_specific_special_tokens": {
14
+ "boi_token": "<start_of_image>",
15
+ "eoi_token": "<end_of_image>",
16
+ "image_token": "<image_soft_token>",
17
+ "sfr_token": "<start_function_response>"
18
+ },
19
+ "pad_token": "<pad>",
20
+ "padding_side": "left",
21
+ "sfr_token": "<start_function_response>",
22
+ "sp_model_kwargs": null,
23
+ "spaces_between_special_tokens": false,
24
+ "tokenizer_class": "GemmaTokenizer",
25
+ "unk_token": "<unk>",
26
+ "use_default_system_prompt": false
27
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:128804f563822da1c3f4b97c7f1e1d8ec1d906f62abaa183952901f8feca5695
3
+ size 5649