Update README.md
Browse files
README.md
CHANGED
@@ -38,8 +38,9 @@ Results in [ChatRAG Bench](https://huggingface.co/datasets/nvidia/ChatRAG-Bench)
|
|
38 |
|
39 |
Note that ChatQA-1.5 is built based on Llama-3 base model, and ChatQA-1.0 is built based on Llama-2 base model. ChatQA-1.5 used some samples from the HybriDial training dataset. To ensure fair comparison, we also compare average scores excluding HybriDial. The data and evaluation scripts for ChatRAG Bench can be found [here](https://huggingface.co/datasets/nvidia/ChatRAG-Bench).
|
40 |
|
41 |
-
|
42 |
## Prompt Format
|
|
|
|
|
43 |
<pre>
|
44 |
System: {System}
|
45 |
|
@@ -54,6 +55,23 @@ User: {Question}
|
|
54 |
Assistant:
|
55 |
</pre>
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
## How to use
|
59 |
|
|
|
38 |
|
39 |
Note that ChatQA-1.5 is built based on Llama-3 base model, and ChatQA-1.0 is built based on Llama-2 base model. ChatQA-1.5 used some samples from the HybriDial training dataset. To ensure fair comparison, we also compare average scores excluding HybriDial. The data and evaluation scripts for ChatRAG Bench can be found [here](https://huggingface.co/datasets/nvidia/ChatRAG-Bench).
|
40 |
|
|
|
41 |
## Prompt Format
|
42 |
+
**We highly recommend that you use the prompt format we provide, as follows:**
|
43 |
+
### when context is available
|
44 |
<pre>
|
45 |
System: {System}
|
46 |
|
|
|
55 |
Assistant:
|
56 |
</pre>
|
57 |
|
58 |
+
### when context is not available
|
59 |
+
<pre>
|
60 |
+
System: {System}
|
61 |
+
|
62 |
+
User: {Question}
|
63 |
+
|
64 |
+
Assistant: {Response}
|
65 |
+
|
66 |
+
User: {Question}
|
67 |
+
|
68 |
+
Assistant:
|
69 |
+
</pre>
|
70 |
+
**The content of the system's turn (i.e., {System}) for both scenarios is as follows:**
|
71 |
+
<pre>
|
72 |
+
This is a chat between a user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions based on the context. The assistant should also indicate when the answer cannot be found in the context.
|
73 |
+
</pre>
|
74 |
+
|
75 |
|
76 |
## How to use
|
77 |
|