rombodawg commited on
Commit
d5a624d
1 Parent(s): 09dbf8c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -11,10 +11,22 @@ This is one of the first models trained on the LosslessMegaCodeTrainingV2_1m_Evo
11
 
12
  This model is extremely good at coding, and might be one of the best coding models for its size and much better than any 7b parameter model. Plans for bigger models are coming in the future.
13
 
14
- The chat format for this model is alpaca
 
 
 
 
 
 
15
  ```
16
- USER: {prompt}
17
- ASSISTANT:
 
 
 
 
 
 
18
  ```
19
 
20
  The link for the full dataset is bellow:
 
11
 
12
  This model is extremely good at coding, and might be one of the best coding models for its size and much better than any 7b parameter model. Plans for bigger models are coming in the future.
13
 
14
+ ### Prompt template
15
+
16
+ [chatml](https://github.com/openai/openai-python/blob/main/chatml.md) format is used:
17
+ "<|im_start|>system\n{system message}<|im_end|>\n<|im_start|>user\n{user prompt}<|im_end|>\n<|im_start|>assistant\n{Assistant answer}<|im_end|>\n"
18
+
19
+ multi-line:
20
+
21
  ```
22
+ """
23
+ <|im_start|>system
24
+ {system message}<|im_end|>
25
+ <|im_start|>user
26
+ {user prompt}<|im_end|>
27
+ <|im_start|>assistant
28
+ {Assistant answer}<|im_end|>
29
+ """
30
  ```
31
 
32
  The link for the full dataset is bellow: