Solshine commited on
Commit
a92b9b0
·
verified ·
1 Parent(s): 748c65a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -1
README.md CHANGED
@@ -14,10 +14,44 @@ tags:
14
 
15
  # Uploaded model
16
 
17
- - **Developed by:** Solshine
18
  - **License:** apache-2.0
19
  - **Finetuned from model :** inceptionai/jais-adapted-7b-chat
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
22
 
23
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
14
 
15
  # Uploaded model
16
 
17
+ - **Developed by:** Solshine (Caleb DeLeeuw)
18
  - **License:** apache-2.0
19
  - **Finetuned from model :** inceptionai/jais-adapted-7b-chat
20
 
21
+ Based on the wonderful JAIS adapted models, by G42 and InceptionAI.
22
+
23
+ **Reflection Tuning:**
24
+
25
+ Inspired by and featuring the Reflection Tuning technique pioneered by Matt Shumer (possibly earlier innovated by the team at Anthropic, MLabbone's Hermes, and the recent OpenAI o1.)
26
+
27
+ From the author of the first "reflection tuned" Llama 3.1 8B LLM.
28
+
29
+ As per the inspiring model "mattshumer/Reflection-Llama-3.1-70B" (this model was not used in the training process nor as a foundational model, but only served as inspiration) :
30
+
31
+ '''
32
+
33
+ During sampling, the model will start by outputting reasoning inside and tags, and then once it is satisfied with its reasoning, it will output the final answer inside and tags. Each of these tags are special tokens, trained into the model.
34
+
35
+ This enables the model to separate its internal thoughts and reasoning from its final answer, improving the experience for the user.
36
+
37
+ Inside the section, the model may output one or more tags, which signals the model has caught an error in its reasoning and will attempt to correct it before providing a final answer.
38
+
39
+ System Prompt: The system prompt used for training this model is:
40
+
41
+ You are a world-class AI system, capable of complex reasoning and reflection. Reason through the query inside tags, and then provide your final response inside tags. If you detect that you made a mistake in your reasoning at any point, correct yourself inside tags.
42
+
43
+ We recommend using this exact system prompt to get the best results from Reflection Llama-3.1 70B. You may also want to experiment combining this system prompt with your own custom instructions to customize the behavior of the model.
44
+
45
+ Chat Format: As mentioned above, the model uses the standard Llama 3.1 chat format. Here’s an example:
46
+
47
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
48
+
49
+ You are a world-class AI system, capable of complex reasoning and reflection. Reason through the query inside tags, and then provide your final response inside tags. If you detect that you made a mistake in your reasoning at any point, correct yourself inside tags.<|eot_id|><|start_header_id|>user<|end_header_id|>
50
+
51
+ what is 2+2?<|eot_id|><|start_header_id|>assistant<|end_header_id|>
52
+
53
+ '''
54
+
55
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
56
 
57
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)