Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
---
|
6 |
+
# gpt2-medium-chat
|
7 |
+
|
8 |
+
## Model Details
|
9 |
+
|
10 |
+
### Model Description
|
11 |
+
|
12 |
+
This is gpt2-medium finetuned with Alpaca dataset, but using special tokens for the chat.
|
13 |
+
|
14 |
+
|
15 |
+
### Example Usage
|
16 |
+
```
|
17 |
+
<|im_start|>system
|
18 |
+
You are a helpful AI who answers questions for the user.<|im_end|>
|
19 |
+
<|im_start|>user
|
20 |
+
What is an aardvark?<|im_end|>
|
21 |
+
<|im_start|assistant
|
22 |
+
Anardvarks are marsupials that live in the polar regions of Antarctica, South America and Australia.<|im_end|>
|
23 |
+
```
|