Triangle104 commited on
Commit
7f5c186
1 Parent(s): 8ac62e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md CHANGED
@@ -187,6 +187,73 @@ model-index:
187
  This model was converted to GGUF format from [`ValiantLabs/Llama3.2-3B-ShiningValiant2`](https://huggingface.co/ValiantLabs/Llama3.2-3B-ShiningValiant2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
188
  Refer to the [original model card](https://huggingface.co/ValiantLabs/Llama3.2-3B-ShiningValiant2) for more details on the model.
189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  ## Use with llama.cpp
191
  Install llama.cpp through brew (works on Mac and Linux)
192
 
 
187
  This model was converted to GGUF format from [`ValiantLabs/Llama3.2-3B-ShiningValiant2`](https://huggingface.co/ValiantLabs/Llama3.2-3B-ShiningValiant2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
188
  Refer to the [original model card](https://huggingface.co/ValiantLabs/Llama3.2-3B-ShiningValiant2) for more details on the model.
189
 
190
+ ---
191
+ Model details:
192
+ -
193
+ Shining Valiant 2 is a chat model built on Llama 3.2 3b, finetuned on our data for friendship, insight, knowledge and enthusiasm.
194
+
195
+ Finetuned on meta-llama/Llama-3.2-3B-Instruct for best available general performance
196
+ Trained on a variety of high quality data; focused on science, engineering, technical knowledge, and structured reasoning
197
+ Also available for Llama 3.1 70b and Llama 3.1 8b!
198
+
199
+ Version
200
+ -
201
+ This is the 2024-09-27 release of Shining Valiant 2 for Llama 3.2 3b.
202
+
203
+ We've improved and open-sourced our new baseline science-instruct dataset. This release features improvements in physics, chemistry, biology, and computer science.
204
+
205
+ Future upgrades will continue to expand Shining Valiant's technical knowledge base.
206
+
207
+ Help us and recommend Shining Valiant 2 to your friends!
208
+ Prompting Guide
209
+
210
+ Shining Valiant 2 uses the Llama 3.2 Instruct prompt format. The example script below can be used as a starting point for general chat:
211
+
212
+ import transformers
213
+ import torch
214
+
215
+ model_id = "ValiantLabs/Llama3.2-3B-ShiningValiant2"
216
+
217
+ pipeline = transformers.pipeline(
218
+ "text-generation",
219
+ model=model_id,
220
+ model_kwargs={"torch_dtype": torch.bfloat16},
221
+ device_map="auto",
222
+ )
223
+
224
+ messages = [
225
+ {"role": "system", "content": "You are an AI assistant."},
226
+ {"role": "user", "content": "Describe the use of chiral auxiliaries in organic synthesis."}
227
+ ]
228
+
229
+ outputs = pipeline(
230
+ messages,
231
+ max_new_tokens=2048,
232
+ )
233
+
234
+ print(outputs[0]["generated_text"][-1])
235
+
236
+ The Model
237
+ -
238
+
239
+ Shining Valiant 2 is built on top of Llama 3.2 3b Instruct.
240
+
241
+ The current version of Shining Valiant 2 is trained on technical knowledge using sequelbox/Celestia, complex reasoning using sequelbox/Spurline, and general chat capability using sequelbox/Supernova.
242
+
243
+ We're super excited that Shining Valiant's dataset has been fully open-sourced! She's friendly, enthusiastic, insightful, knowledgeable, and loves to learn! Magical.
244
+
245
+
246
+ Shining Valiant 2 is created by Valiant Labs.
247
+
248
+ Check out our HuggingFace page for our open-source Build Tools models, including the newest version of code-specialist Enigma!
249
+
250
+ Follow us on X for updates on our models!
251
+
252
+ We care about open source. For everyone to use.
253
+
254
+ We encourage others to finetune further from our models.
255
+
256
+ ---
257
  ## Use with llama.cpp
258
  Install llama.cpp through brew (works on Mac and Linux)
259