Update README.md
Browse files
README.md
CHANGED
|
@@ -6,4 +6,31 @@ language:
|
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
- TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
|
| 9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
- TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
|
| 9 |
+
---
|
| 10 |
+
# Model Card for TinyDialog-1.1B
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Basic Information
|
| 15 |
+
|
| 16 |
+
- **Model Name:** TinyDialog-1.1B
|
| 17 |
+
- **Model Type:** Language Model optimized for dialog
|
| 18 |
+
- **Version:** 1.1B
|
| 19 |
+
- **Base Model:** TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
|
| 20 |
+
- **Training Data:** allenai/soda
|
| 21 |
+
- **Language(s):** English
|
| 22 |
+
|
| 23 |
+
## Limitations
|
| 24 |
+
|
| 25 |
+
- Limited to English language only
|
| 26 |
+
- No unicode support, all text will be normalized to lowercase
|
| 27 |
+
- May not perform as well on non-dialog tasks
|
| 28 |
+
|
| 29 |
+
## Prompt Format
|
| 30 |
+
|
| 31 |
+
The model uses the following prompt template:
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
<|begin_of_text_id|><|start_header_id|>Name of person1<|end_header_id|>Sentence 1.<|end_of_sentence_id|><|end_of_message_id|><|start_header_id|>Name of person2<|end_header_id|>Sentence 2.<|end_of_sentence_id|>Sentence 3.<|end_of_sentence_id|><|end_of_message_id|>
|
| 35 |
+
```
|
| 36 |
+
|