RonanMcGovern
commited on
Commit
•
77e9fcb
1
Parent(s):
86e4507
Update README.md
Browse files
README.md
CHANGED
@@ -5,8 +5,23 @@ tags:
|
|
5 |
- finetuned
|
6 |
inference:
|
7 |
parameters:
|
8 |
-
temperature: 0.
|
|
|
|
|
9 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
# Model Card for Mistral-7B-Instruct-v0.1
|
12 |
|
|
|
5 |
- finetuned
|
6 |
inference:
|
7 |
parameters:
|
8 |
+
temperature: 0.01
|
9 |
+
datasets:
|
10 |
+
- big_patent
|
11 |
---
|
12 |
+
# Mistral 7B with 16k context for summarization
|
13 |
+
Version of the Mistral 7B model that has undergone unsupervised fine-tuning for contexts up to 16k.
|
14 |
+
|
15 |
+
Prompt format:
|
16 |
+
```
|
17 |
+
B_INST, E_INST = "[INST] ", " [/INST]"
|
18 |
+
prompt = {B_INST}Provide a summary of the following text:\n\n[TEXT_START]\n\n{text to summarize}\n\n[TEXT_END]\n\n{E_INST}
|
19 |
+
```
|
20 |
+
|
21 |
+
***
|
22 |
+
|
23 |
+
The original model card follows below.
|
24 |
+
***
|
25 |
|
26 |
# Model Card for Mistral-7B-Instruct-v0.1
|
27 |
|