jordiclive
commited on
Commit
•
54659d8
1
Parent(s):
08a0ba3
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- de
|
6 |
+
- es
|
7 |
+
- fr
|
8 |
+
tags:
|
9 |
+
- sft
|
10 |
+
inference: false
|
11 |
+
datasets:
|
12 |
+
- OpenAssistant/oasst1
|
13 |
+
---
|
14 |
+
|
15 |
+
# Open-Assistant Llama2 70B SFT OASST
|
16 |
+
|
17 |
+
This model is a fine-tuning of TII's [Llama2 70B](https://huggingface.co/meta-llama/Llama-2-70b-hf) LLM.
|
18 |
+
It was trained on a mixture of OASST top-1 threads.
|
19 |
+
## Model Details
|
20 |
+
|
21 |
+
- **Finetuned from:** Llama2 70B](https://huggingface.co/meta-llama/Llama-2-70b-hf)
|
22 |
+
- **Model type:** Causal decoder-only transformer language model
|
23 |
+
- **Language:** English, German, Spanish, French (and limited capabilities in Italian, Portuguese, Polish, Dutch, Romanian, Czech, Swedish);
|
24 |
+
- **License:** Apache 2.0
|
25 |
+
- **Contact:** [Open-Assistant Discord](https://ykilcher.com/open-assistant-discord)
|
26 |
+
|
27 |
+
## Prompting
|
28 |
+
|
29 |
+
Two special tokens are used to mark the beginning of user and assistant turns:
|
30 |
+
`<|prompter|>` and `<|assistant|>`. Each turn ends with a `<|endoftext|>` token.
|
31 |
+
|
32 |
+
Input prompt example:
|
33 |
+
```
|
34 |
+
<|prompter|>What is a meme, and what's the history behind this word?<|endoftext|><|assistant|>
|
35 |
+
```
|
36 |
+
The input ends with the `<|assistant|>` token to signal that the model should
|
37 |
+
start generating the assistant reply.
|
38 |
+
|