FlameF0X commited on
Commit
22b9a0d
·
verified ·
1 Parent(s): 6def784

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -23,7 +23,15 @@ N1 is a small, experimental Chain-of-Thought (COT) model based on the LLaMA arch
23
  - **Training Data**: Closed-source dataset
24
  - **Special Features**: Chain-of-Thought reasoning capabilities
25
  - **Note**: The model often shows "schizophrenia"
26
-
 
 
 
 
 
 
 
 
27
  ## Intended Use
28
 
29
  This model is designed for text generation tasks with a focus on reasoning through problems step-by-step (using its Chain-of-Thought).
 
23
  - **Training Data**: Closed-source dataset
24
  - **Special Features**: Chain-of-Thought reasoning capabilities
25
  - **Note**: The model often shows "schizophrenia"
26
+ - **Note**: You may need to add this Jinja to the model:
27
+ ```jinja
28
+ {% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system
29
+ You are a helpful AI assistant named N1, trained by GoofyLM<|im_end|>
30
+ ' }}{% endif %}{{'<|im_start|>' + message['role'] + '
31
+ ' + message['content'] + '<|im_end|>' + '
32
+ '}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant
33
+ ' }}{% endif %}
34
+ ```
35
  ## Intended Use
36
 
37
  This model is designed for text generation tasks with a focus on reasoning through problems step-by-step (using its Chain-of-Thought).