Commit
·
92c2404
1
Parent(s):
2c66b11
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1 |
---
|
2 |
license: gpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: gpl-3.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
library_name: transformers
|
6 |
+
tags:
|
7 |
+
- RAG
|
8 |
+
- QA
|
9 |
+
- SQuAD
|
10 |
+
- Question Answering
|
11 |
---
|
12 |
+
|
13 |
+
## Model Card for SuperQA-7B
|
14 |
+
This model is a fine-tuned version of [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1), specifically designed for Question Answering (QA) tasks. It has been trained on a private dataset comprising 12,000 question and answer pairs, each accompanied by relevant context. The model is capable of providing detailed and relevant answers based on the provided context, and always responds in Markdown format.
|
15 |
+
|
16 |
+
### Prompt Format
|
17 |
+
```
|
18 |
+
<s>[INST] Respond with a detailed and relevant answer to my question using only information from the provided context.
|
19 |
+
|
20 |
+
<|context|>
|
21 |
+
<|doc|>
|
22 |
+
{Your document}
|
23 |
+
<|/doc|>
|
24 |
+
<|/context|>
|
25 |
+
|
26 |
+
<|question|>{Your question?}<|/question|> [/INST]
|
27 |
+
```
|