Update README.md to include input format
#1
by
lmjantsch
- opened
README.md
CHANGED
@@ -13,3 +13,12 @@ SciTulu is a collection of instruction-following language models targeting scien
|
|
13 |
Training and evaluation code for SciTulu is available in our GitHub repository: https://github.com/allenai/SciRIFF.
|
14 |
|
15 |
See the [Tulu model card](https://huggingface.co/allenai/tulu-2-7b) for more information on potential risks, biases, and limitations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
Training and evaluation code for SciTulu is available in our GitHub repository: https://github.com/allenai/SciRIFF.
|
14 |
|
15 |
See the [Tulu model card](https://huggingface.co/allenai/tulu-2-7b) for more information on potential risks, biases, and limitations.
|
16 |
+
|
17 |
+
## Input Format
|
18 |
+
|
19 |
+
Tulu-family models require inputs formatted like `<|user|>\n{{ input }}\n<|assistant|>`
|
20 |
+
```
|
21 |
+
<|user|>
|
22 |
+
Your message here!
|
23 |
+
<|assistant|>
|
24 |
+
```
|