PocketDoc commited on
Commit
eecee24
·
verified ·
1 Parent(s): b4341db

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +419 -138
README.md CHANGED
@@ -1,140 +1,421 @@
1
- <html lang="en">
2
- <head>
3
- <meta charset="UTF-8">
4
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
- </head>
6
- <div class="crt-container">
7
- <div class="crt-case">
8
- <div class="crt-inner-case">
9
- <div class="crt-bezel">
10
- <div class="terminal-screen">
11
- <h2>Test Content</h2>
12
- <p>This is some example text to demonstrate the CRT terminal effect. The amber monochrome display should remind you of old NASA control room monitors.</p>
13
- <p>Let's add some more text to see how it looks with multiple paragraphs and different content types.</p>
14
- <pre>
15
- $ STATUS: NOMINAL
16
- $ SYSTEMS: ONLINE
17
- $ READY FOR INPUT_
18
- </pre>
19
- </div>
20
- </div>
21
- </div>
22
- </div>
23
- </div>
24
- <style>
25
- @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
26
- .crt-container {
27
- padding: 40px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
29
- .crt-case {
30
- background: #e8d7c3;
31
- border-radius: 10px;
32
- padding: 15px;
33
- box-shadow: inset -2px -2px 5px rgba(0,0,0,0.3), 2px 2px 5px rgba(0,0,0,0.2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
- .crt-inner-case {
36
- background: #e8d7c3;
37
- border-radius: 8px;
38
- padding: 3px;
39
- box-shadow: inset -1px -1px 4px rgba(0,0,0,0.3), 1px 1px 4px rgba(0,0,0,0.2);
40
- }
41
- .crt-bezel {
42
- background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
43
- padding: 20px;
44
- border-radius: 5px;
45
- border: 3px solid #0a0a0a;
46
- position: relative;
47
- box-shadow:
48
- inset 0 0 20px rgba(0,0,0,0.5),
49
- inset 0 0 4px rgba(0,0,0,0.4),
50
- inset 2px 2px 4px rgba(255,255,255,0.05),
51
- inset -2px -2px 4px rgba(0,0,0,0.8),
52
- 0 0 2px rgba(0,0,0,0.6),
53
- -1px -1px 4px rgba(255,255,255,0.1),
54
- 1px 1px 4px rgba(0,0,0,0.3);
55
- }
56
- .crt-bezel::before {
57
- content: '';
58
- position: absolute;
59
- top: 0;
60
- left: 0;
61
- right: 0;
62
- bottom: 0;
63
- background: linear-gradient(45deg,
64
- rgba(255,255,255,0.03) 0%,
65
- rgba(255,255,255,0) 40%,
66
- rgba(0,0,0,0.1) 60%,
67
- rgba(0,0,0,0.2) 100%);
68
- border-radius: 3px;
69
- pointer-events: none;
70
- }
71
- .terminal-screen {
72
- background: #111112;
73
- padding: 30px;
74
- border-radius: 20px;
75
- position: relative;
76
- overflow: hidden;
77
- font-family: 'VT323', monospace;
78
- color: #e49b3e;
79
- line-height: 1.6;
80
- text-shadow: 0 0 2px #e49b3e;
81
- animation: flicker 0.15s infinite;
82
- filter: brightness(1.1) contrast(1.1);
83
- box-shadow:
84
- inset 0 0 30px rgba(0,0,0,0.9),
85
- inset 0 0 8px rgba(0,0,0,0.8),
86
- 0 0 5px rgba(0,0,0,0.6);
87
- }
88
- .terminal-screen::before {
89
- content: "";
90
- position: absolute;
91
- top: 0;
92
- left: 0;
93
- right: 0;
94
- bottom: 0;
95
- background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4o8JoAAAAB3RSTlMAGwQIEQMYADcPzwAAACJJREFUKM9jYBgFo2AU0Beg+A8YMCLxGYZCbNQEo4BaAAD5TQiR5wU9vAAAAABJRU5ErkJggg==');
96
- background-size: 100% 4px;
97
- animation: scan 1s linear infinite;
98
- pointer-events: none;
99
- z-index: 2;
100
- }
101
- .terminal-screen::after {
102
- content: "";
103
- position: absolute;
104
- top: 0;
105
- left: 0;
106
- right: 0;
107
- bottom: 0;
108
- background: radial-gradient(circle at center, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.1) 75%, rgba(17, 17, 18, 0.4) 100%);
109
- border-radius: 20px;
110
- animation: vignette-pulse 3s infinite;
111
- pointer-events: none;
112
- z-index: 1;
113
- }
114
- .terminal-screen * {
115
- position: relative;
116
- }
117
- .terminal-screen *::after {
118
- content: attr(data-text);
119
- position: absolute;
120
- left: 0;
121
- top: 0;
122
- color: #e49b3e;
123
- filter: blur(1px);
124
- opacity: 0.5;
125
- }
126
- @keyframes flicker {
127
- 0% { opacity: 0.97; }
128
- 50% { opacity: 1; }
129
- 100% { opacity: 0.98; }
130
- }
131
- @keyframes scan {
132
- 0% { transform: translateY(0); }
133
- 100% { transform: translateY(4px); }
134
- }
135
- @keyframes vignette-pulse {
136
- 0% { opacity: 0.8; }
137
- 50% { opacity: 1; }
138
- 100% { opacity: 0.8; }
139
- }
140
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ language:
5
+ - en
6
+ base_model:
7
+ - mistralai/Mistral-Nemo-Base-2407
8
+ - Dans-DiscountModels/Mistral-Nemo-Base-2407-ChatML-Mod
9
+ tags:
10
+ - general-purpose
11
+ - roleplay
12
+ - storywriting
13
+ - chemistry
14
+ - biology
15
+ - code
16
+ - climate
17
+ - axolotl
18
+ - text-generation-inference
19
+ - finetune
20
+ datasets:
21
+ - PocketDoc/Dans-MemoryCore-CoreCurriculum-Small
22
+ - AquaV/Energetic-Materials-Sharegpt
23
+ - AquaV/Chemical-Biological-Safety-Applications-Sharegpt
24
+ - AquaV/US-Army-Survival-Sharegpt
25
+ - AquaV/Resistance-Sharegpt
26
+ - AquaV/Interrogation-Sharegpt
27
+ - AquaV/Multi-Environment-Operations-Sharegpt
28
+ - PocketDoc/Dans-Mathmaxx
29
+ - PocketDoc/Dans-Mathmaxx-Numina-CoT
30
+ - PJMixers/Math-Multiturn-1K-ShareGPT
31
+ - PocketDoc/Dans-Benchmaxx
32
+ - PocketDoc/Dans-Benchmaxx-COT
33
+ - PocketDoc/Dans-Codemaxx-LeetCode
34
+ - PocketDoc/Dans-Codemaxx-CodeFeedback-Conversations
35
+ - PocketDoc/Dans-Codemaxx-CodeFeedback-SingleTurn
36
+ - PocketDoc/Dans-Codemaxx-Bigcode-SelfInstruct
37
+ - PocketDoc/Dans-Taskmaxx
38
+ - PocketDoc/Dans-Taskmaxx-DataPrepper
39
+ - PocketDoc/Dans-Taskmaxx-ConcurrentQA-Reworked
40
+ - PocketDoc/Dans-Taskmaxx-TableGPT
41
+ - PocketDoc/Dans-Taskmaxx-SciRIFF
42
+ - PocketDoc/Dans-Taskmaxx-Edit
43
+ - PocketDoc/Dans-Systemmaxx
44
+ - PocketDoc/Dans-Toolmaxx-Agent
45
+ - PocketDoc/Dans-Toolmaxx-ShellCommands
46
+ - PocketDoc/Dans-Toolmaxx-Functions-Toolbench
47
+ - PocketDoc/Dans-Toolmaxx-Functions-ToolACE
48
+ - PocketDoc/Dans-Toolmaxx-Functions-apigen
49
+ - PocketDoc/Dans-ASCIIMaxx-Wordart
50
+ - PocketDoc/Dans-Prosemaxx-Gutenberg
51
+ - PocketDoc/Dans-Prosemaxx-Cowriter-M
52
+ - PocketDoc/Dans-Prosemaxx-Adventure
53
+ - PocketDoc/Dans-Prosemaxx-Gryphe-GPT4o-WritingPrompts
54
+ - PocketDoc/Dans-Assistantmaxx-Sharegpt
55
+ - PocketDoc/Dans-Assistantmaxx-OpenAssistant2
56
+ - PocketDoc/Dans-Assistantmaxx-Opus-Merge
57
+ - PocketDoc/Dans-Assistantmaxx-sonnetorca-subset
58
+ - PocketDoc/Dans-Assistantmaxx-sonnetorca-subset-2
59
+ - PocketDoc/Dans-Assistantmaxx-NoRobots
60
+ - PocketDoc/Dans-Assistantmaxx-Synthia
61
+ - PocketDoc/Dans-Assistantmaxx-ASL
62
+ - PocketDoc/Dans-Assistantmaxx-PersonaLLM-Opus
63
+ - PocketDoc/Dans-Assistantmaxx-UnnaturalInstructions-GPT4
64
+ - PocketDoc/Dans-Assistantmaxx-LongAlign
65
+ - PocketDoc/Dans-Assistantmaxx-EvolKit
66
+ - PocketDoc/Dans-Assistantmaxx-Camel-GPT4
67
+ - PocketDoc/Dans-Assistantmaxx-Tulu3-IF
68
+ - PocketDoc/Dans-Logicmaxx-Skunkworks
69
+ - PocketDoc/Dans-Logicmaxx-SAT-AP
70
+ - PocketDoc/Dans-Logicmaxx-Magpie-Ultra
71
+ - PJMixers/grimulkan_theory-of-mind-ShareGPT
72
+ - PJMixers/grimulkan_physical-reasoning-ShareGPT
73
+ - PocketDoc/Dans-Personamaxx
74
+ - PocketDoc/Dans-Personamaxx-Rainy
75
+ - PocketDoc/Dans-Personamaxx-Aesir
76
+ - PocketDoc/Dans-Kinomaxx-VanillaBackrooms
77
+ model-index:
78
+ - name: Dans-PersonalityEngine-V1.1.0-12b
79
+ results: []
80
+ pipeline_tag: text-generation
81
+ ---
82
+ ## What is it?
83
+
84
+ This model series is intended to be multifarious in its capabilities and should be quite capable at both co-writing and roleplay as well as find itself quite at home performing sentiment analysis or summarization as part of a pipeline. It has been trained on a wide array of one shot instructions, multi turn instructions, tool use, role playing scenarios, text adventure games, co-writing, and much more. The full dataset is publicly available and can be found in the datasets section of the model page.
85
+
86
+ There has not been any form of harmfulness alignment done on this model, please take the appropriate precautions when using it in a production environment.
87
+
88
+ **Expected usable context length:** 32768 tokens
89
+
90
+
91
+ ## Recommended samplers
92
+
93
+ **Temperature:** 1.0
94
+ **Top_P:** 0.95
95
+ **Min_P:** 0.05
96
+
97
+ ## Prompting
98
+
99
+ The model has been trained on standard "ChatML" format prompting, an example of which is shown below:
100
+
101
+ ```
102
+ <|im_start|>system
103
+ system prompt<|im_end|>
104
+ <|im_start|>user
105
+ Hi there!<|im_end|>
106
+ <|im_start|>assistant
107
+ Nice to meet you!<|im_end|>
108
+ <|im_start|>user
109
+ Can I ask a question?<|im_end|>
110
+ <|im_start|>assistant
111
+ ```
112
+
113
+
114
+ ## SillyTavern templates
115
+
116
+ Below are Instruct and Context templates for use within SillyTavern.
117
+
118
+ <details><summary>context template</summary>
119
+
120
+ ```yaml
121
+ {
122
+ "story_string": "<|im_start|>system\n{{#if system}}{{system}}\n{{/if}}{{#if wiBefore}}{{wiBefore}}\n{{/if}}{{#if description}}{{description}}\n{{/if}}{{#if personality}}{{char}}'s personality: {{personality}}\n{{/if}}{{#if scenario}}Scenario: {{scenario}}\n{{/if}}{{#if wiAfter}}{{wiAfter}}\n{{/if}}{{#if persona}}{{persona}}\n{{/if}}{{trim}}<|im_end|>\n",
123
+ "example_separator": "",
124
+ "chat_start": "",
125
+ "use_stop_strings": false,
126
+ "allow_jailbreak": false,
127
+ "always_force_name2": false,
128
+ "trim_sentences": false,
129
+ "include_newline": false,
130
+ "single_line": false,
131
+ "name": "Dan-ChatML"
132
  }
133
+ ```
134
+
135
+ </details><br>
136
+ <details><summary>instruct template</summary>
137
+
138
+ ```yaml
139
+ {
140
+ "system_prompt": "Write {{char}}'s actions and dialogue, user will write {{user}}'s.",
141
+ "input_sequence": "<|im_start|>user\n",
142
+ "output_sequence": "<|im_start|>assistant\n",
143
+ "first_output_sequence": "",
144
+ "last_output_sequence": "",
145
+ "system_sequence_prefix": "",
146
+ "system_sequence_suffix": "",
147
+ "stop_sequence": "<|im_end|>",
148
+ "wrap": false,
149
+ "macro": true,
150
+ "names": false,
151
+ "names_force_groups": false,
152
+ "activation_regex": "",
153
+ "skip_examples": false,
154
+ "output_suffix": "<|im_end|>\n",
155
+ "input_suffix": "<|im_end|>\n",
156
+ "system_sequence": "<|im_start|>system\n",
157
+ "system_suffix": "<|im_end|>\n",
158
+ "user_alignment_message": "",
159
+ "last_system_sequence": "",
160
+ "system_same_as_user": false,
161
+ "first_input_sequence": "",
162
+ "last_input_sequence": "",
163
+ "name": "Dan-ChatML"
164
  }
165
+ ```
166
+
167
+ </details><br>
168
+
169
+
170
+ ## Example outputs
171
+
172
+ ### General assistance
173
+
174
+ <details><summary>General assistance example</summary>
175
+
176
+ > *Act as a personable virtual assistant.*
177
+
178
+ > I'm going to be in Chicago soon can you help me work up some restaurant ideas?
179
+
180
+ > I'd love to! Here are a few suggestions for restaurants in Chicago:
181
+ >
182
+ > - For deep dish pizza, I highly recommend Lou Malnati's Pizzeria or Giordano's. Both are iconic Chicago institutions and serve some of the best deep dish pizza in the city.
183
+ > - If you're looking for a classic steakhouse experience, Gibson's Bar & Steakhouse is a great choice. They offer high-quality steaks, seafood, and an extensive wine list in a sophisticated atmosphere.
184
+ > - For a more casual dining experience, check out Portillo's Hot Dogs. They're known for their Chicago-style hot dogs, Italian beef sandwiches, and other classic American fare.
185
+ > - For something a bit more unique, try Alinea. It's a high-end, avant-garde restaurant that offers a truly one-of-a-kind dining experience with innovative cuisine and cutting-edge presentation techniques.
186
+ >
187
+ > Let me know if you need any other recommendations or have specific dietary restrictions or preferences!
188
+
189
+ <details><summary>Raw Prompt</summary>
190
+
191
+ ```
192
+ <|im_start|>system
193
+ Act as a personable virtual assistant.<|im_end|>
194
+ <|im_start|>user
195
+ I'm going to be in Chicago soon can you help me work up some restaurant ideas?<|im_end|>
196
+ <|im_start|>assistant
197
+ I'd love to! Here are a few suggestions for restaurants in Chicago:
198
+
199
+ - For deep dish pizza, I highly recommend Lou Malnati's Pizzeria or Giordano's. Both are iconic Chicago institutions and serve some of the best deep dish pizza in the city.
200
+ - If you're looking for a classic steakhouse experience, Gibson's Bar & Steakhouse is a great choice. They offer high-quality steaks, seafood, and an extensive wine list in a sophisticated atmosphere.
201
+ - For a more casual dining experience, check out Portillo's Hot Dogs. They're known for their Chicago-style hot dogs, Italian beef sandwiches, and other classic American fare.
202
+ - For something a bit more unique, try Alinea. It's a high-end, avant-garde restaurant that offers a truly one-of-a-kind dining experience with innovative cuisine and cutting-edge presentation techniques.
203
+
204
+ Let me know if you need any other recommendations or have specific dietary restrictions or preferences!
205
+ ```
206
+
207
+ </details><br>
208
+ </details><br>
209
+
210
+ ### Basic programming
211
+
212
+ <details><summary>Basic programming example</summary>
213
+
214
+ > *Answer the question or perform the task.*
215
+
216
+ > Explain the bug in the following code:
217
+ >
218
+ > ```python
219
+ > from time import sleep
220
+ > from multiprocessing.pool import ThreadPool
221
+ >
222
+ > def task():
223
+ > sleep(1)
224
+ > return 'all done'
225
+ >
226
+ > if __name__ == '__main__':
227
+ > with ThreadPool() as pool:
228
+ > result = pool.apply_async(task())
229
+ > ```
230
+
231
+ > The bug in this code is that the `task()` function is called immediately when the `apply_async()` method is invoked, not when the worker process is ready to execute it.
232
+ >
233
+ > Specifically, the line `result = pool.apply_async(task())` calls `task()` right away and passes its return value to `apply_async()`. The worker process will execute whatever `task()` returns at that moment, which is `'all done'` since `task()` completes execution almost immediately.
234
+ >
235
+ > What you likely intended was for `apply_async()` to pass the `task()` function itself to the worker process, so the worker could call `task()` when ready. However, `apply_async()` only accepts the result of calling the target function, not the function object itself.
236
+ >
237
+ > To fix this bug, you need to pass the `task` function itself to `apply_async()`, rather than calling `task()` beforehand. Here's how you can modify the code:
238
+ >
239
+ > ```python
240
+ > from time import sleep
241
+ > from multiprocessing.pool import ThreadPool
242
+ >
243
+ > def task():
244
+ > sleep(1)
245
+ > return 'all done'
246
+ >
247
+ > if __name__ == '__main__':
248
+ > with ThreadPool() as pool:
249
+ > result = pool.apply_async(task) # Pass the function, not the result
250
+ > value = result.get() # Wait for the result
251
+ > print(value)
252
+ > ```
253
+ >
254
+ > With this modification, the worker process will actually execute the `task()` function, wait for it to complete, and then retrieve the result using `get()`.
255
+ >
256
+ > So in summary, the original bug was that you were passing the result of calling `task()` to `apply_async()`, rather than passing the function object itself. The fix is to simply omit the parentheses after `task`, so `apply_async()` receives the function reference instead of its return value.
257
+
258
+
259
+ <details><summary>Raw Prompt</summary>
260
+
261
+ (Back slashes before triple backticks are not part of the prompt)
262
+
263
+ ```
264
+ <|im_start|>system
265
+ Answer the question or perform the task.<|im_end|>
266
+ <|im_start|>user
267
+ Explain the bug in the following code:
268
+
269
+ \```
270
+ from time import sleep
271
+ from multiprocessing.pool import ThreadPool
272
+
273
+ def task():
274
+ sleep(1)
275
+ return 'all done'
276
+
277
+ if __name__ == '__main__':
278
+ with ThreadPool() as pool:
279
+ result = pool.apply_async(task())
280
+ value = result.get()
281
+ print(value)
282
+ \```<|im_end|>
283
+ <|im_start|>assistant
284
+ The bug in this code is that the `task()` function is called immediately when the `apply_async()` method is invoked, not when the worker process is ready to execute it.
285
+
286
+ Specifically, the line `result = pool.apply_async(task())` calls `task()` right away and passes its return value to `apply_async()`. The worker process will execute whatever `task()` returns at that moment, which is `'all done'` since `task()` completes execution almost immediately.
287
+
288
+ What you likely intended was for `apply_async()` to pass the `task()` function itself to the worker process, so the worker could call `task()` when ready. However, `apply_async()` only accepts the result of calling the target function, not the function object itself.
289
+
290
+ To fix this bug, you need to pass the `task` function itself to `apply_async()`, rather than calling `task()` beforehand. Here's how you can modify the code:
291
+
292
+ \```python
293
+ from time import sleep
294
+ from multiprocessing.pool import ThreadPool
295
+
296
+ def task():
297
+ sleep(1)
298
+ return 'all done'
299
+
300
+ if __name__ == '__main__':
301
+ with ThreadPool() as pool:
302
+ result = pool.apply_async(task) # Pass the function, not the result
303
+ value = result.get() # Wait for the result
304
+ print(value)
305
+ \```
306
+
307
+ With this modification, the worker process will actually execute the `task()` function, wait for it to complete, and then retrieve the result using `get()`.
308
+
309
+ So in summary, the original bug was that you were passing the result of calling `task()` to `apply_async()`, rather than passing the function object itself. The fix is to simply omit the parentheses after `task`, so `apply_async()` receives the function reference instead of its return value.
310
+ ```
311
+
312
+ </details><br>
313
+
314
+ </details><br>
315
+
316
+ ### Writing
317
+
318
+ <details><summary>Writing example</summary>
319
+
320
+ > *Take the users messages and use them as a writing prompt. Write 5 sentences.*
321
+
322
+ > Alpha Centauri has fallen, to the bears. This is a point of view tale about a soldier on the ground.
323
+
324
+ > "Sir, they are gone sir." The young corporal was out of breath.
325
+ >
326
+ > The soldier looked up. His grey eyes had been locked on his holofac display for hours now. He was in his late thirties and wore the rank of colonel. He was tall, with a well-muscled but slightly over weight body.
327
+
328
+ > "Who?"
329
+
330
+ > He turned and looked at the corporal.
331
+ >
332
+ > "The bears. They left. We checked the entire perimeter. No bears to be found sir."
333
+ >
334
+ > "Did you check the air?"
335
+ >
336
+ > "Not the air, sir. We didn't see any shuttles. But we have drones out now."
337
+
338
+ > "*Sigh*"
339
+
340
+ > "Ok, get me the status report. I need to know how many dead we have."
341
+ >
342
+ > "Yes sir." The corporal turned to leave.
343
+ >
344
+ > "Corporal…"
345
+ >
346
+ > "Sir?"
347
+ >
348
+ > "Get me a fresh cup of coffee. Black. I need the caffeine."
349
+
350
+ <details><summary>Raw Prompt</summary>
351
+
352
+ ```
353
+ <|im_start|>system
354
+ Take the users messages and use them as a writing prompt. Write 5 sentences.<|im_end|>
355
+ <|im_start|>user
356
+ Alpha Centauri has fallen, to the bears. This is a point of view tale about a soldier on the ground.<|im_end|>
357
+ <|im_start|>assistant
358
+ "Sir, they are gone sir." The young corporal was out of breath.
359
+
360
+ The soldier looked up. His grey eyes had been locked on his holofac display for hours now. He was in his late thirties and wore the rank of colonel. He was tall, with a well-muscled but slightly over weight body.<|im_end|>
361
+ <|im_start|>user
362
+ "Who?"<|im_end|>
363
+ <|im_start|>assistant
364
+ He turned and looked at the corporal.
365
+
366
+ "The bears. They left. We checked the entire perimeter. No bears to be found sir."
367
+
368
+ "Did you check the air?"
369
+
370
+ "Not the air, sir. We didn't see any shuttles. But we have drones out now."<|im_end|>
371
+ <|im_start|>user
372
+ "*Sigh*"<|im_end|>
373
+ <|im_start|>assistant
374
+ "Ok, get me the status report. I need to know how many dead we have."
375
+
376
+ "Yes sir." The corporal turned to leave.
377
+
378
+ "Corporal…"
379
+
380
+ "Sir?"
381
+
382
+ "Get me a fresh cup of coffee. Black. I need the caffeine."
383
+ ```
384
+
385
+ </details><br>
386
+ </details><br>
387
+
388
+ ### Text editing
389
+
390
+ <details><summary>Text editing</summary>
391
+
392
+ > *You are a professional editor with decades of experience, help the user with any task they have for you.*
393
+
394
+ > Can you rewrite this to flow better? "I knew I probably shouldnt have done that but ohhh well i guess i just going to live with it since whats done is done"
395
+
396
+ > I knew I probably shouldn't have done that, but oh well. I guess I just going to live with it since what's done is done.
397
+
398
+ <details><summary>Raw Prompt</summary>
399
+
400
+ ```
401
+ <|im_start|>system
402
+ You are a professional editor with decades of experience, help the user with any task they have for you.<|im_end|>
403
+ <|im_start|>user
404
+ Can you rewrite this to flow better? "I knew I probably shouldnt have done that but ohhh well i guess i just going to live with it since whats done is done"<|im_end|>
405
+ <|im_start|>assistant
406
+ I knew I probably shouldn't have done that, but oh well. I guess I just going to live with it since what's done is done.
407
+ ```
408
+
409
+ </details><br>
410
+ </details><br>
411
+
412
+ ## Training
413
+
414
+ This model was full finetuned for 2 epochs on 1x H200 SXM equating to 88 hours of training.
415
+
416
+ [<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
417
+
418
+ ## Give me your pocket change
419
+ The development and production of these datasets is severely limited by the funding and resources available to me. If you would like to help reach out to me here on HF, at visuallyadequate@gmail.com or you can leave something in the hat over at https://buymeacoffee.com/visually
420
+
421
+ <a href="https://www.buymeacoffee.com/visually"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="45" width="162"></a>