Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,34 @@
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
-
library_name: peft
|
3 |
-
---
|
4 |
-
## Training procedure
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
|
|
8 |
|
9 |
-
|
|
|
|
|
|
|
|
1 |
+
datasets:
|
2 |
+
- OpenAssistant/oasst1
|
3 |
+
pipeline_tag: text-generation
|
4 |
+
license: apache-2.0
|
5 |
---
|
|
|
|
|
|
|
6 |
|
7 |
+
# 🚀 Falcon-7b-chat-oasst1
|
8 |
+
|
9 |
+
Falcon-7b-chat-oasst1 is a chatbot-like model for dialogue generation. It was built by fine-tuning [Falcon-7B](https://huggingface.co/tiiuae/falcon-7b) on the [OpenAssistant/oasst1](https://huggingface.co/datasets/OpenAssistant/oasst1) dataset. This repo only includes the LoRA adapters from fine-tuning with 🤗's [peft](https://github.com/huggingface/peft) package.
|
10 |
+
|
11 |
+
## Model Summary
|
12 |
+
|
13 |
+
- **Model Type:** Causal decoder-only
|
14 |
+
- **Language(s):** English
|
15 |
+
- **Base Model:** [Falcon-7B](https://huggingface.co/tiiuae/falcon-7b) (License: [Apache 2.0](https://huggingface.co/tiiuae/falcon-7b#license))
|
16 |
+
- **Dataset:** [OpenAssistant/oasst1](https://huggingface.co/datasets/OpenAssistant/oasst1) (License: [Apache 2.0](https://huggingface.co/datasets/OpenAssistant/oasst1/blob/main/LICENSE))
|
17 |
+
- **License(s):** Apache 2.0 inherited from "Base Model" and "Dataset"
|
18 |
+
|
19 |
+
## Model Details
|
20 |
+
|
21 |
+
The model was fine-tuned in 8-bit precision using 🤗 `peft` adapters, `transformers`, and `bitsandbytes`. Training relied on a method called "Low Rank Adapters" ([LoRA](https://arxiv.org/pdf/2106.09685.pdf)), specifically the [QLoRA](https://arxiv.org/abs/2305.14314) variant.
|
22 |
+
|
23 |
+
### Model Date
|
24 |
+
|
25 |
+
July 3, 2023
|
26 |
+
|
27 |
+
## Quick Start
|
28 |
|
29 |
+
To prompt the chat model, use the following format:
|
30 |
|
31 |
+
```
|
32 |
+
<human>: [Instruction]
|
33 |
+
<bot>:
|
34 |
+
```
|