Xiaowen-dg commited on
Commit
bddce2e
·
verified ·
1 Parent(s): 653fb8a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +200 -0
README.md ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: llama3
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - nvidia
8
+ - chatqa-1.5
9
+ - chatqa
10
+ - llama-3
11
+ - pytorch
12
+ model-index:
13
+ - name: Llama3-ChatQA-1.5-8B
14
+ results: []
15
+ ---
16
+
17
+
18
+ ## Model Details
19
+ We introduce Llama3-ChatQA-1.5, which excels at conversational question answering (QA) and retrieval-augmented generation (RAG). Llama3-ChatQA-1.5 is developed using an improved training recipe from [ChatQA paper](https://arxiv.org/pdf/2401.10225), and it is built on top of [Llama-3 base model](https://huggingface.co/meta-llama/Meta-Llama-3-8B). Specifically, we incorporate more conversational QA data to enhance its tabular and arithmetic calculation capability. Llama3-ChatQA-1.5 has two variants: Llama3-ChatQA-1.5-8B and Llama3-ChatQA-1.5-70B. Both models were originally trained using [Megatron-LM](https://github.com/NVIDIA/Megatron-LM), we converted the checkpoints to Hugging Face format. **For more information about ChatQA, check the [website](https://chatqa-project.github.io/)!**
20
+
21
+ ## Other Resources
22
+ [Llama3-ChatQA-1.5-70B](https://huggingface.co/nvidia/Llama3-ChatQA-1.5-70B)   [Evaluation Data](https://huggingface.co/datasets/nvidia/ChatRAG-Bench)   [Training Data](https://huggingface.co/datasets/nvidia/ChatQA-Training-Data)   [Retriever](https://huggingface.co/nvidia/dragon-multiturn-query-encoder)   [Website](https://chatqa-project.github.io/)   [Paper](https://arxiv.org/pdf/2401.10225)
23
+
24
+ ## Benchmark Results
25
+ Results in [ChatRAG Bench](https://huggingface.co/datasets/nvidia/ChatRAG-Bench) are as follows:
26
+
27
+ | | ChatQA-1.0-7B | Command-R-Plus | Llama3-instruct-70b | GPT-4-0613 | GPT-4-Turbo | ChatQA-1.0-70B | ChatQA-1.5-8B | ChatQA-1.5-70B |
28
+ | -- |:--:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|
29
+ | Doc2Dial | 37.88 | 33.51 | 37.88 | 34.16 | 35.35 | 38.90 | 39.33 | 41.26 |
30
+ | QuAC | 29.69 | 34.16 | 36.96 | 40.29 | 40.10 | 41.82 | 39.73 | 38.82 |
31
+ | QReCC | 46.97 | 49.77 | 51.34 | 52.01 | 51.46 | 48.05 | 49.03 | 51.40 |
32
+ | CoQA | 76.61 | 69.71 | 76.98 | 77.42 | 77.73 | 78.57 | 76.46 | 78.44 |
33
+ | DoQA | 41.57 | 40.67 | 41.24 | 43.39 | 41.60 | 51.94 | 49.60 | 50.67 |
34
+ | ConvFinQA | 51.61 | 71.21 | 76.6 | 81.28 | 84.16 | 73.69 | 78.46 | 81.88 |
35
+ | SQA | 61.87 | 74.07 | 69.61 | 79.21 | 79.98 | 69.14 | 73.28 | 83.82 |
36
+ | TopioCQA | 45.45 | 53.77 | 49.72 | 45.09 | 48.32 | 50.98 | 49.96 | 55.63 |
37
+ | HybriDial* | 54.51 | 46.7 | 48.59 | 49.81 | 47.86 | 56.44 | 65.76 | 68.27 |
38
+ | INSCIT | 30.96 | 35.76 | 36.23 | 36.34 | 33.75 | 31.90 | 30.10 | 32.31 |
39
+ | Average (all) | 47.71 | 50.93 | 52.52 | 53.90 | 54.03 | 54.14 | 55.17 | 58.25 |
40
+ | Average (exclude HybriDial) | 46.96 | 51.40 | 52.95 | 54.35 | 54.72 | 53.89 | 53.99 | 57.14 |
41
+
42
+ 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 models use 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).
43
+
44
+
45
+ ## Prompt Format
46
+ **We highly recommend that you use the prompt format we provide, as follows:**
47
+ ### when context is available
48
+ <pre>
49
+ System: {System}
50
+
51
+ {Context}
52
+
53
+ User: {Question}
54
+
55
+ Assistant: {Response}
56
+
57
+ User: {Question}
58
+
59
+ Assistant:
60
+ </pre>
61
+
62
+ ### when context is not available
63
+ <pre>
64
+ System: {System}
65
+
66
+ User: {Question}
67
+
68
+ Assistant: {Response}
69
+
70
+ User: {Question}
71
+
72
+ Assistant:
73
+ </pre>
74
+ **The content of the system's turn (i.e., {System}) for both scenarios is as follows:**
75
+ <pre>
76
+ 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.
77
+ </pre>
78
+ **Note that our ChatQA-1.5 models are optimized for the capability with context, e.g., over documents or retrieved context.**
79
+
80
+ ## How to use
81
+
82
+ ### take the whole document as context
83
+ This can be applied to the scenario where the whole document can be fitted into the model, so that there is no need to run retrieval over the document.
84
+ ```python
85
+ from transformers import AutoTokenizer, AutoModelForCausalLM
86
+ import torch
87
+
88
+ model_id = "nvidia/Llama3-ChatQA-1.5-8B"
89
+
90
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
91
+ model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")
92
+
93
+ messages = [
94
+ {"role": "user", "content": "what is the percentage change of the net income from Q4 FY23 to Q4 FY24?"}
95
+ ]
96
+
97
+ document = """NVIDIA (NASDAQ: NVDA) today reported revenue for the fourth quarter ended January 28, 2024, of $22.1 billion, up 22% from the previous quarter and up 265% from a year ago.\nFor the quarter, GAAP earnings per diluted share was $4.93, up 33% from the previous quarter and up 765% from a year ago. Non-GAAP earnings per diluted share was $5.16, up 28% from the previous quarter and up 486% from a year ago.\nQ4 Fiscal 2024 Summary\nGAAP\n| $ in millions, except earnings per share | Q4 FY24 | Q3 FY24 | Q4 FY23 | Q/Q | Y/Y |\n| Revenue | $22,103 | $18,120 | $6,051 | Up 22% | Up 265% |\n| Gross margin | 76.0% | 74.0% | 63.3% | Up 2.0 pts | Up 12.7 pts |\n| Operating expenses | $3,176 | $2,983 | $2,576 | Up 6% | Up 23% |\n| Operating income | $13,615 | $10,417 | $1,257 | Up 31% | Up 983% |\n| Net income | $12,285 | $9,243 | $1,414 | Up 33% | Up 769% |\n| Diluted earnings per share | $4.93 | $3.71 | $0.57 | Up 33% | Up 765% |"""
98
+
99
+ def get_formatted_input(messages, context):
100
+ system = "System: 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."
101
+ instruction = "Please give a full and complete answer for the question."
102
+
103
+ for item in messages:
104
+ if item['role'] == "user":
105
+ ## only apply this instruction for the first user turn
106
+ item['content'] = instruction + " " + item['content']
107
+ break
108
+
109
+ conversation = '\n\n'.join(["User: " + item["content"] if item["role"] == "user" else "Assistant: " + item["content"] for item in messages]) + "\n\nAssistant:"
110
+ formatted_input = system + "\n\n" + context + "\n\n" + conversation
111
+
112
+ return formatted_input
113
+
114
+ formatted_input = get_formatted_input(messages, document)
115
+ tokenized_prompt = tokenizer(tokenizer.bos_token + formatted_input, return_tensors="pt").to(model.device)
116
+
117
+ terminators = [
118
+ tokenizer.eos_token_id,
119
+ tokenizer.convert_tokens_to_ids("<|eot_id|>")
120
+ ]
121
+
122
+ outputs = model.generate(input_ids=tokenized_prompt.input_ids, attention_mask=tokenized_prompt.attention_mask, max_new_tokens=128, eos_token_id=terminators)
123
+
124
+ response = outputs[0][tokenized_prompt.input_ids.shape[-1]:]
125
+ print(tokenizer.decode(response, skip_special_tokens=True))
126
+ ```
127
+
128
+ ### run retrieval to get top-n chunks as context
129
+ This can be applied to the scenario when the document is very long, so that it is necessary to run retrieval. Here, we use our [Dragon-multiturn](https://huggingface.co/nvidia/dragon-multiturn-query-encoder) retriever which can handle conversatinoal query. In addition, we provide a few [documents](https://huggingface.co/nvidia/Llama3-ChatQA-1.5-8B/tree/main/docs) for users to play with.
130
+
131
+ ```python
132
+ from transformers import AutoTokenizer, AutoModelForCausalLM, AutoModel
133
+ import torch
134
+ import json
135
+
136
+ ## load ChatQA-1.5 tokenizer and model
137
+ model_id = "nvidia/Llama3-ChatQA-1.5-8B"
138
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
139
+ model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")
140
+
141
+ ## load retriever tokenizer and model
142
+ retriever_tokenizer = AutoTokenizer.from_pretrained('nvidia/dragon-multiturn-query-encoder')
143
+ query_encoder = AutoModel.from_pretrained('nvidia/dragon-multiturn-query-encoder')
144
+ context_encoder = AutoModel.from_pretrained('nvidia/dragon-multiturn-context-encoder')
145
+
146
+ ## prepare documents, we take landrover car manual document that we provide as an example
147
+ chunk_list = json.load(open("docs.json"))['landrover']
148
+
149
+ messages = [
150
+ {"role": "user", "content": "how to connect the bluetooth in the car?"}
151
+ ]
152
+
153
+ ### running retrieval
154
+ ## convert query into a format as follows:
155
+ ## user: {user}\nagent: {agent}\nuser: {user}
156
+ formatted_query_for_retriever = '\n'.join([turn['role'] + ": " + turn['content'] for turn in messages]).strip()
157
+
158
+ query_input = retriever_tokenizer(formatted_query_for_retriever, return_tensors='pt')
159
+ ctx_input = retriever_tokenizer(chunk_list, padding=True, truncation=True, max_length=512, return_tensors='pt')
160
+ query_emb = query_encoder(**query_input).last_hidden_state[:, 0, :]
161
+ ctx_emb = context_encoder(**ctx_input).last_hidden_state[:, 0, :]
162
+
163
+ ## Compute similarity scores using dot product and rank the similarity
164
+ similarities = query_emb.matmul(ctx_emb.transpose(0, 1)) # (1, num_ctx)
165
+ ranked_results = torch.argsort(similarities, dim=-1, descending=True) # (1, num_ctx)
166
+
167
+ ## get top-n chunks (n=5)
168
+ retrieved_chunks = [chunk_list[idx] for idx in ranked_results.tolist()[0][:5]]
169
+ context = "\n\n".join(retrieved_chunks)
170
+
171
+ ### running text generation
172
+ formatted_input = get_formatted_input(messages, context)
173
+ tokenized_prompt = tokenizer(tokenizer.bos_token + formatted_input, return_tensors="pt").to(model.device)
174
+
175
+ terminators = [
176
+ tokenizer.eos_token_id,
177
+ tokenizer.convert_tokens_to_ids("<|eot_id|>")
178
+ ]
179
+ outputs = model.generate(input_ids=tokenized_prompt.input_ids, attention_mask=tokenized_prompt.attention_mask, max_new_tokens=128, eos_token_id=terminators)
180
+
181
+ response = outputs[0][tokenized_prompt.input_ids.shape[-1]:]
182
+ print(tokenizer.decode(response, skip_special_tokens=True))
183
+ ```
184
+
185
+ ## Correspondence to
186
+ Zihan Liu ([email protected]), Wei Ping ([email protected])
187
+
188
+ ## Citation
189
+ <pre>
190
+ @article{liu2024chatqa,
191
+ title={ChatQA: Surpassing GPT-4 on Conversational QA and RAG},
192
+ author={Liu, Zihan and Ping, Wei and Roy, Rajarshi and Xu, Peng and Lee, Chankyu and Shoeybi, Mohammad and Catanzaro, Bryan},
193
+ journal={arXiv preprint arXiv:2401.10225},
194
+ year={2024}}
195
+ </pre>
196
+
197
+
198
+ ## License
199
+ The use of this model is governed by the [META LLAMA 3 COMMUNITY LICENSE AGREEMENT](https://llama.meta.com/llama3/license/)
200
+