FlameF0X commited on
Commit
9b7aa7a
·
verified ·
1 Parent(s): 5f7dba7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -23,6 +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
 
 
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
 
36
  ## Intended Use
37