Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- stingning/ultrachat
|
4 |
+
---
|
5 |
+
# UltraLM-65b
|
6 |
+
|
7 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
8 |
+
|
9 |
+
This is UltraLM-65b delta weights, a chat language model trained upon [UltraChat](https://github.com/thunlp/UltraChat)
|
10 |
+
|
11 |
+
|
12 |
+
## Model Details
|
13 |
+
|
14 |
+
### Model Description
|
15 |
+
|
16 |
+
<!-- Provide a longer summary of what this model is. -->
|
17 |
+
|
18 |
+
The model is fine-tuned based on LLaMA-65b with a multi-turn chat-format template as below
|
19 |
+
|
20 |
+
```
|
21 |
+
User: instruction 1
|
22 |
+
Assistant: response 1<eos_token>
|
23 |
+
User: instruction 2
|
24 |
+
Assistant: response 2<eos_token>
|
25 |
+
...
|
26 |
+
```
|
27 |
+
|
28 |
+
- **License:** UltraLM is based on LLaMA and should be used under LLaMA's [model license](https://github.com/facebookresearch/llama/blob/main/MODEL_CARD.md).
|
29 |
+
- **Finetuned from model:** LLaMA-65b
|
30 |
+
- **Finetuned on data:** [UltraChat](https://github.com/thunlp/UltraChat)
|
31 |
+
|
32 |
+
### Model Sources
|
33 |
+
|
34 |
+
<!-- Provide the basic links for the model. -->
|
35 |
+
|
36 |
+
- **Repository:** [UltraChat](https://github.com/thunlp/UltraChat)
|
37 |
+
- **Paper:** [arxiv](https://arxiv.org/abs/2305.14233)
|
38 |
+
- **Demo:** [More Information Needed]
|
39 |
+
|
40 |
+
## Uses
|
41 |
+
|
42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
43 |
+
To use this model, you need to [recover](https://github.com/thunlp/UltraChat/tree/main/UltraLM) the full model from the delta weights and perform inference following the template below:
|
44 |
+
|
45 |
+
```
|
46 |
+
[Optional]User: system prompt
|
47 |
+
User: user input
|
48 |
+
Assistant:
|
49 |
+
```
|