Triangle104 commited on
Commit
eb91954
1 Parent(s): 768811b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md CHANGED
@@ -187,6 +187,70 @@ model-index:
187
  This model was converted to GGUF format from [`ValiantLabs/Llama3.1-8B-ShiningValiant2`](https://huggingface.co/ValiantLabs/Llama3.1-8B-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.1-8B-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.1-8B-ShiningValiant2`](https://huggingface.co/ValiantLabs/Llama3.1-8B-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.1-8B-ShiningValiant2) for more details on the model.
189
 
190
+ Shining Valiant 2 is a chat model built on Llama 3.1 8b, finetuned on our data for friendship, insight, knowledge and enthusiasm.
191
+
192
+ Finetuned on meta-llama/Meta-Llama-3.1-8B-Instruct for best available general performance
193
+ Trained on a variety of our high quality open source data; focused on science, engineering, technical knowledge, and structured reasoning
194
+ Also available for Llama 3.1 70b and Llama 3.2 3b!
195
+
196
+ Version
197
+
198
+ This is the 2024-11-04 release of Shining Valiant 2 for Llama 3.1 8b.
199
+
200
+ This release uses our newest datasets, open-sourced for everyone's use, including our expanded science-instruct dataset. This release features improvements in logical thinking and structured reasoning as well as physics, chemistry, biology, astronomy, Earth science, computer science, and information theory.
201
+
202
+ Future upgrades will continue to expand Shining Valiant's technical knowledge base.
203
+
204
+ Help us and recommend Shining Valiant 2 to your friends!
205
+ Prompting Guide
206
+
207
+ Shining Valiant 2 uses the Llama 3.1 Instruct prompt format. The example script below can be used as a starting point for general chat:
208
+
209
+ import transformers
210
+ import torch
211
+
212
+ model_id = "ValiantLabs/Llama3.1-8B-ShiningValiant2"
213
+
214
+ pipeline = transformers.pipeline(
215
+ "text-generation",
216
+ model=model_id,
217
+ model_kwargs={"torch_dtype": torch.bfloat16},
218
+ device_map="auto",
219
+ )
220
+
221
+ messages = [
222
+ {"role": "system", "content": "You are Shining Valiant, a highly capable chat AI."},
223
+ {"role": "user", "content": "Describe the role of transformation matrices in 3D graphics."}
224
+ ]
225
+
226
+ outputs = pipeline(
227
+ messages,
228
+ max_new_tokens=2048,
229
+ )
230
+
231
+ print(outputs[0]["generated_text"][-1])
232
+
233
+ The Model
234
+
235
+ Shining Valiant 2 is built on top of Llama 3.1 8b Instruct.
236
+
237
+ 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.
238
+
239
+ 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.
240
+
241
+ image/jpeg
242
+
243
+ Shining Valiant 2 is created by Valiant Labs.
244
+
245
+ Check out our HuggingFace page for our open-source Build Tools models, including the newest version of code-specialist Enigma!
246
+
247
+ Follow us on X for updates on our models!
248
+
249
+ We care about open source. For everyone to use.
250
+
251
+ We encourage others to finetune further from our models.
252
+
253
+ ---
254
  ## Use with llama.cpp
255
  Install llama.cpp through brew (works on Mac and Linux)
256