Nolwenn
commited on
Commit
·
b599481
1
Parent(s):
42a591c
Initial commit
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- HOWTO.md +80 -0
- LICENSE +21 -0
- README_git.md +266 -0
- asset/eval.png +0 -0
- crs_arena/__init__.py +0 -0
- crs_arena/arena.py +414 -0
- crs_arena/battle_manager.py +67 -0
- crs_arena/crs_fighter.py +125 -0
- crs_arena/utils.py +172 -0
- data/arena/crs_config/BARCOR/barcor_opendialkg.yaml +8 -0
- data/arena/crs_config/BARCOR/barcor_redial.yaml +8 -0
- data/arena/crs_config/CRB_CRS/crb_crs_redial.yaml +5 -0
- data/arena/crs_config/ChatGPT/chatgpt_opendialkg.yaml +3 -0
- data/arena/crs_config/ChatGPT/chatgpt_redial.yaml +3 -0
- data/arena/crs_config/KBRD/kbrd_opendialkg.yaml +16 -0
- data/arena/crs_config/KBRD/kbrd_redial.yaml +16 -0
- data/arena/crs_config/UniCRS/unicrs_opendialkg.yaml +13 -0
- data/arena/crs_config/UniCRS/unicrs_redial.yaml +13 -0
- data/crb_crs/contractions.json +121 -0
- data/movielens/movies.csv +0 -0
- data/movielens/movies_data.csv +0 -0
- data/movielens/movies_rating_data.csv +0 -0
- data/opendialkg/build_kg.py +41 -0
- data/opendialkg/data.jsonl +0 -0
- data/opendialkg/dialog_Books.jsonl +0 -0
- data/opendialkg/dialog_movie.jsonl +0 -0
- data/opendialkg/entity2id.json +0 -0
- data/opendialkg/id2info.json +0 -0
- data/opendialkg/item_ids.json +1 -0
- data/opendialkg/kg.json +0 -0
- data/opendialkg/relation2id.json +1 -0
- data/opendialkg/split.py +137 -0
- data/opendialkg/test_data_id.json +1 -0
- data/opendialkg/train_data_id.json +1 -0
- data/opendialkg/valid_data_id.json +1 -0
- data/opendialkg_eval/process.py +87 -0
- data/opendialkg_eval/test_data_processed.jsonl +0 -0
- data/opendialkg_eval/train_data_processed.jsonl +0 -0
- data/opendialkg_eval/valid_data_processed.jsonl +0 -0
- data/redial/GT_corpus_tokens.txt +0 -0
- data/redial/corpus/original_corpus.txt +0 -0
- data/redial/corpus/preprocessed_corpus.txt +0 -0
- data/redial/corpus/preprocessed_corpus_no_stopwords.txt +0 -0
- data/redial/entity2id.json +0 -0
- data/redial/entity2type.json +0 -0
- data/redial/id2info.json +0 -0
- data/redial/item_ids.json +1 -0
- data/redial/kg.json +0 -0
- data/redial/relation2id.json +1 -0
- data/redial/sample.json +394 -0
HOWTO.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# HOWTO Interactive Mode
|
2 |
+
|
3 |
+
## Start server
|
4 |
+
|
5 |
+
### UniCRS
|
6 |
+
|
7 |
+
Start the server with the following command (RedDial dataset):
|
8 |
+
|
9 |
+
```bash
|
10 |
+
python -m script.serve_model --crs_model unicrs --kg_dataset redial --model microsoft/DialoGPT-small --rec_model data/models/unicrs_rec_redial/ --conv_model data/models/unicrs_conv_redial/ --context_max_length 128 --entity_max_length 43 --tokenizer_path microsoft/DialoGPT-small --text_tokenizer_path roberta-base --resp_max_length 128 --text_encoder roberta-base --debug
|
11 |
+
```
|
12 |
+
|
13 |
+
### BARCOR
|
14 |
+
|
15 |
+
Start the server with the following command (RedDial dataset):
|
16 |
+
|
17 |
+
```bash
|
18 |
+
python -m script.serve_model --crs_model barcor --kg_dataset redial --hidden_size 128 --entity_hidden_size 128 --num_bases 8 --context_max_length 200 --entity_max_length 32 --rec_model data/models/barcor_rec_redial/ --conv_model data/models/barcor_conv_redial/ --tokenizer_path facebook/bart-base --encoder_layers 2 --decoder_layers 2 --attn_head 2 --text_hidden_size 300 --resp_max_length 128 --debug
|
19 |
+
```
|
20 |
+
|
21 |
+
### KBRD
|
22 |
+
|
23 |
+
Start the server with the following command (RedDial dataset):
|
24 |
+
|
25 |
+
```bash
|
26 |
+
python -m script.serve_model --crs_model kbrd --kg_dataset redial --hidden_size 128 --entity_hidden_size 128 --num_bases 8 --context_max_length 200 --entity_max_length 32 --rec_model data/models/kbrd_rec_redial/ --conv_model data/models/kbrd_conv_redial/ --tokenizer_path facebook/bart-base --encoder_layers 2 --decoder_layers 2 --attn_head 2 --text_hidden_size 300 --resp_max_length 128
|
27 |
+
```
|
28 |
+
|
29 |
+
### ChatGPT
|
30 |
+
|
31 |
+
Start the server with the following command (RedDial dataset):
|
32 |
+
|
33 |
+
```bash
|
34 |
+
python -m script.serve_model --api_key {API_KEY} --kg_dataset redial --crs_model chatgpt
|
35 |
+
```
|
36 |
+
|
37 |
+
Note that the item embeddings should be computed before starting the server and stored in the `data/embed_items/{kg_dataset}` folder.
|
38 |
+
|
39 |
+
## Communicate with the server
|
40 |
+
|
41 |
+
Test in the terminal with the following command:
|
42 |
+
|
43 |
+
```python
|
44 |
+
import requests
|
45 |
+
|
46 |
+
url = "http://127.0.0.1:5005/"
|
47 |
+
s = requests.Session()
|
48 |
+
|
49 |
+
context = []
|
50 |
+
data = {
|
51 |
+
"context": context,
|
52 |
+
"message": "Hi I am looking for a movie like Super Troopers (2001)",
|
53 |
+
}
|
54 |
+
|
55 |
+
response = s.post(url, json=data)
|
56 |
+
print(response.status_code)
|
57 |
+
print(response.json())
|
58 |
+
|
59 |
+
response = response.json()
|
60 |
+
|
61 |
+
context += ["Hi I am looking for a movie like Super Troopers (2001)", response.get("response")]
|
62 |
+
data = {
|
63 |
+
"context": context,
|
64 |
+
"message": "I love action movies",
|
65 |
+
}
|
66 |
+
|
67 |
+
response = s.post(url, json=data)
|
68 |
+
```
|
69 |
+
|
70 |
+
## Start Streamlit app
|
71 |
+
|
72 |
+
A Streamlit is available to collect conversational data from users. The idea is to put two models in competition and ask the best model based on the user's feedback.
|
73 |
+
|
74 |
+
```bash
|
75 |
+
python -m streamlit run crs_arena/arena.py
|
76 |
+
```
|
77 |
+
|
78 |
+
The configuration of the CRSs are in the `data/arena/crs_config/` folder. The available models with their associated configuration are defined in `CRS_MODELS` in `crs_arena/battle_manager.py`.
|
79 |
+
|
80 |
+
The conversation logs are stored in the `data/arena/conversation_logs/` folder. The votes are registered in the `data/arena/vote.db` SQLite database.
|
LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) 2023 Xiaolei Wang, Xinyu Tang
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE.
|
README_git.md
ADDED
@@ -0,0 +1,266 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Rethinking the Evaluation for Conversational Recommendation in the Era of Large Language Models
|
2 |
+
|
3 |
+
This repo provides the source code & data of our paper: [Rethinking the Evaluation for Conversational Recommendation in the Era of Large Language Models](https://arxiv.org/abs/2305.13112) (Arxiv 2023).
|
4 |
+
|
5 |
+
## 😀 Overview
|
6 |
+
|
7 |
+
**Highlights**:
|
8 |
+
- 1️⃣ We are the first to examine ChatGPT in conversational recommendation systematically, the ability of which is **underestimated** in traditional evaluation approach.
|
9 |
+
- 💡 We propose a new interactive approach that employs LLM-based user simulators for evaluating CRSs.
|
10 |
+
- 🔝 The recall@50 metric can be boosted from 0.218 to 0.739 on the redial dataset with our new interactive evaluation approach, even surpassing the currently leading CRS baseline.
|
11 |
+
|
12 |
+
we propose an **i**nteractive **Eval**uation approach based on **LLM**s named **iEvaLM** that harnesses LLM-based user simulators. We take the ground-truth items from the example as the user preference through the interaction, and use them to set up the persona of the simulated users by LLMs through instructions. To further make a comprehensive evaluation, we consider two types of interaction: *attribute-based question answering* and *free-form chit-chat*.
|
13 |
+
|
14 |
+
<p align="center">
|
15 |
+
<img src="./asset/eval.png" width="75%" height="75% title="Overview of iEvaLM-CRS" alt="">
|
16 |
+
</p>
|
17 |
+
|
18 |
+
## 🚀 Quick Start
|
19 |
+
|
20 |
+
### Requirements
|
21 |
+
|
22 |
+
- python==3.9.16
|
23 |
+
- torch==1.13.1
|
24 |
+
- transformers==4.28.1
|
25 |
+
- torch_geometric==2.3.0
|
26 |
+
- accelerate==0.18.0
|
27 |
+
|
28 |
+
### Download Models
|
29 |
+
|
30 |
+
You can download our fine-tuned models from the [link](https://drive.google.com/drive/folders/1h2AcRn3cd9qXToM9hFAXFV5evXJM-wyD?usp=sharing), which include recommendation and conversation models of **KBRD**, **BARCOR** and **UniCRS**. Please put the downloaded model into src/utils/model directory.
|
31 |
+
|
32 |
+
### Interact with the user simulator
|
33 |
+
|
34 |
+
- dataset: [redial, opendialkg]
|
35 |
+
- mode: [ask, chat]
|
36 |
+
- model: [kbrd, barcor, unicrs, chatgpt]
|
37 |
+
|
38 |
+
```bash
|
39 |
+
cd script
|
40 |
+
bash {dataset}/cache_item.sh
|
41 |
+
bash {dataset}/{mode}_{model}.sh
|
42 |
+
```
|
43 |
+
|
44 |
+
You can customize your iEvaLM-CRS by specifying these configs:
|
45 |
+
- `--api_key`: your API key
|
46 |
+
- `--turn_num`: number of conversation turns. We employ five-round interaction in iEvaLM-CRS.
|
47 |
+
|
48 |
+
After the execution, you will find detailed interaction information under "save_{turn_num}/{mode}/{model}/{dataset}/".
|
49 |
+
|
50 |
+
### Evaluate
|
51 |
+
|
52 |
+
```bash
|
53 |
+
cd script
|
54 |
+
bash {dataset}/Rec_eval.sh
|
55 |
+
```
|
56 |
+
|
57 |
+
You can customize your iEvaLM-CRS by specifying these configs:
|
58 |
+
- `--turn_num`: number of conversation turns.
|
59 |
+
- `--mode`: [ask, chat]
|
60 |
+
|
61 |
+
After the execution, you will find evaluation results under "save_{turn_num}/result/{mode}/{model}/{dataset}.json".
|
62 |
+
|
63 |
+
## 🌟 Perfermance
|
64 |
+
|
65 |
+
<p align="center">Performance of CRSs and ChatGPT using different evaluation approaches.</p>
|
66 |
+
<table border="1" align="center">
|
67 |
+
<tbody >
|
68 |
+
<tr align="center">
|
69 |
+
<td colspan="2">Model</td>
|
70 |
+
<td colspan="3">KBRD</td>
|
71 |
+
<td colspan="3">BARCOR</td>
|
72 |
+
<td colspan="3">UniCRS</td>
|
73 |
+
<td colspan="3">ChatGPT</td>
|
74 |
+
</tr>
|
75 |
+
<tr align="center">
|
76 |
+
<td colspan="2">Evaluation Approach</td>
|
77 |
+
<td>Original</td>
|
78 |
+
<td>iEvaLM(attr)</td>
|
79 |
+
<td>iEvaLM(free)</td>
|
80 |
+
<td>Original</td>
|
81 |
+
<td>iEvaLM(attr)</td>
|
82 |
+
<td>iEvaLM(free)</td>
|
83 |
+
<td>Original</td>
|
84 |
+
<td>iEvaLM(attr)</td>
|
85 |
+
<td>iEvaLM(free)</td>
|
86 |
+
<td>Original</td>
|
87 |
+
<td>iEvaLM(attr)</td>
|
88 |
+
<td>iEvaLM(free)</td>
|
89 |
+
</tr>
|
90 |
+
<tr align="center">
|
91 |
+
<td rowspan="3">ReDial</td>
|
92 |
+
<td>R@1</td>
|
93 |
+
<td>0.028</td>
|
94 |
+
<td>0.039</td>
|
95 |
+
<td>0.035</td>
|
96 |
+
<td>0.031</td>
|
97 |
+
<td>0.034</td>
|
98 |
+
<td>0.034</td>
|
99 |
+
<td>0.050</td>
|
100 |
+
<td>0.053</td>
|
101 |
+
<td>0.107</td>
|
102 |
+
<td>0.037</td>
|
103 |
+
<td><b>0.191</b></td>
|
104 |
+
<td>0.146</td>
|
105 |
+
</tr>
|
106 |
+
<tr align="center">
|
107 |
+
<td>R@10</td>
|
108 |
+
<td>0.169</td>
|
109 |
+
<td>0.196</td>
|
110 |
+
<td>0.198</td>
|
111 |
+
<td>0.170</td>
|
112 |
+
<td>0.201</td>
|
113 |
+
<td>0.190</td>
|
114 |
+
<td>0.215</td>
|
115 |
+
<td>0.238</td>
|
116 |
+
<td>0.317</td>
|
117 |
+
<td>0.174</td>
|
118 |
+
<td><b>0.536</b></td>
|
119 |
+
<td>0.440</td>
|
120 |
+
</tr>
|
121 |
+
<tr align="center">
|
122 |
+
<td>R@50</td>
|
123 |
+
<td>0.366</td>
|
124 |
+
<td>0.436</td>
|
125 |
+
<td>0.453</td>
|
126 |
+
<td>0.372</td>
|
127 |
+
<td>0.427</td>
|
128 |
+
<td>0.467</td>
|
129 |
+
<td>0.413</td>
|
130 |
+
<td>0.520</td>
|
131 |
+
<td>0.602</td>
|
132 |
+
<td>-</td>
|
133 |
+
<td>-</td>
|
134 |
+
<td>-</td>
|
135 |
+
</tr>
|
136 |
+
<tr align="center">
|
137 |
+
<td rowspan="3">OpenDialKG</td>
|
138 |
+
<td>R@1</td>
|
139 |
+
<td>0.231</td>
|
140 |
+
<td>0.131</td>
|
141 |
+
<td>0.234</td>
|
142 |
+
<td>0.312</td>
|
143 |
+
<td>0.264</td>
|
144 |
+
<td>0.314</td>
|
145 |
+
<td>0.308</td>
|
146 |
+
<td>0.180</td>
|
147 |
+
<td>0.314</td>
|
148 |
+
<td>0.310</td>
|
149 |
+
<td>0.299</td>
|
150 |
+
<td><b>0.400</b></td>
|
151 |
+
</tr>
|
152 |
+
<tr align="center">
|
153 |
+
<td>R@10</td>
|
154 |
+
<td>0.423</td>
|
155 |
+
<td>0.293</td>
|
156 |
+
<td>0.431</td>
|
157 |
+
<td>0.453</td>
|
158 |
+
<td>0.423</td>
|
159 |
+
<td>0.458</td>
|
160 |
+
<td>0.513</td>
|
161 |
+
<td>0.393</td>
|
162 |
+
<td>0.538</td>
|
163 |
+
<td>0.539</td>
|
164 |
+
<td>0.604</td>
|
165 |
+
<td><b>0.715</b></td>
|
166 |
+
</tr>
|
167 |
+
<tr align="center">
|
168 |
+
<td>R@50</td>
|
169 |
+
<td>0.492</td>
|
170 |
+
<td>0.377</td>
|
171 |
+
<td>0.509</td>
|
172 |
+
<td>0.510</td>
|
173 |
+
<td>0.482</td>
|
174 |
+
<td>0.530</td>
|
175 |
+
<td>0.574</td>
|
176 |
+
<td>0.458</td>
|
177 |
+
<td>0.609</td>
|
178 |
+
<td>-</td>
|
179 |
+
<td>-</td>
|
180 |
+
<td>-</td>
|
181 |
+
</tr>
|
182 |
+
</tbody>
|
183 |
+
|
184 |
+
</table>
|
185 |
+
|
186 |
+
<p align="center">Persuasiveness of explanations generated by CRSs and ChatGPT.</p>
|
187 |
+
<table border="1" align="center">
|
188 |
+
<tbody>
|
189 |
+
<tr align="center">
|
190 |
+
<td>Model</td>
|
191 |
+
<td>Evaluation Approach</td>
|
192 |
+
<td>ReDial</td>
|
193 |
+
<td>OpenDialKG</td>
|
194 |
+
</tr>
|
195 |
+
<tr align="center">
|
196 |
+
<td rowspan="2">KBRD</td>
|
197 |
+
<td>Original</td>
|
198 |
+
<td>0.638</td>
|
199 |
+
<td>0.824</td>
|
200 |
+
</tr>
|
201 |
+
</tr>
|
202 |
+
<tr align="center">
|
203 |
+
<td>iEvaLM</td>
|
204 |
+
<td>0.766</td>
|
205 |
+
<td>0.862</td>
|
206 |
+
</tr>
|
207 |
+
</tr>
|
208 |
+
<tr align="center">
|
209 |
+
<td rowspan="2">BARCOR</td>
|
210 |
+
<td>Original</td>
|
211 |
+
<td>0.667</td>
|
212 |
+
<td>1.149</td>
|
213 |
+
</tr>
|
214 |
+
</tr>
|
215 |
+
<tr align="center">
|
216 |
+
<td>iEvaLM</td>
|
217 |
+
<td>0.795</td>
|
218 |
+
<td>1.211</td>
|
219 |
+
</tr>
|
220 |
+
</tr>
|
221 |
+
<tr align="center">
|
222 |
+
<td rowspan="2">UniCRS</td>
|
223 |
+
<td>Original</td>
|
224 |
+
<td>0.685</td>
|
225 |
+
<td>1.128</td>
|
226 |
+
</tr>
|
227 |
+
</tr>
|
228 |
+
<tr align="center">
|
229 |
+
<td>iEvaLM</td>
|
230 |
+
<td>1.015</td>
|
231 |
+
<td>1.314</td>
|
232 |
+
</tr>
|
233 |
+
</tr>
|
234 |
+
<tr align="center">
|
235 |
+
<td rowspan="2">ChatGPT</td>
|
236 |
+
<td>Original</td>
|
237 |
+
<td>0.787</td>
|
238 |
+
<td>1.221</td>
|
239 |
+
</tr>
|
240 |
+
</tr>
|
241 |
+
<tr align="center">
|
242 |
+
<td>iEvaLM</td>
|
243 |
+
<td><b>1.331</b></td>
|
244 |
+
<td><b>1.513</b></td>
|
245 |
+
</tr>
|
246 |
+
</tbody>
|
247 |
+
</table>
|
248 |
+
|
249 |
+
[CRSLab](https://github.com/RUCAIBox/CRSLab) will support this interactive evaluation approach, the results in our paper will be updated soon.
|
250 |
+
|
251 |
+
## 📮 Contact
|
252 |
+
|
253 |
+
If you have any questions for our paper or codes, please send an email to <[email protected]>.
|
254 |
+
|
255 |
+
## 🐦 Citing
|
256 |
+
|
257 |
+
Please cite the following paper if you find our code helpful.
|
258 |
+
|
259 |
+
```bibtex
|
260 |
+
@article{wang2023rethinking,
|
261 |
+
title={Rethinking the Evaluation for Conversational Recommendation in the Era of Large Language Models},
|
262 |
+
author={Wang, Xiaolei and Tang, Xinyu and Zhao, Wayne Xin and Wang, Jingyuan and Wen, Ji-Rong},
|
263 |
+
journal={arXiv preprint arXiv:2305.13112},
|
264 |
+
year={2023}
|
265 |
+
}
|
266 |
+
```
|
asset/eval.png
ADDED
![]() |
crs_arena/__init__.py
ADDED
File without changes
|
crs_arena/arena.py
ADDED
@@ -0,0 +1,414 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Streamlit app for side-by-side battle of two CRSs.
|
2 |
+
|
3 |
+
The goal of this application is for a user to have a conversation with two
|
4 |
+
conversational recommender systems (CRSs) and vote on which one they prefer.
|
5 |
+
All the conversations are recorded and saved for future analysis. When the user
|
6 |
+
arrives on the app, they are assigned a unique ID. Then, two CRSs are chosen
|
7 |
+
for the battle depending on the number of conversations already recorded (i.e.,
|
8 |
+
the CRSs with the least number of conversations are chosen). The user is given
|
9 |
+
a few constraints on the items they are looking for, after they interact with
|
10 |
+
the CRSs one after the other. The user can then vote on which CRS they prefer,
|
11 |
+
upon voting a pop-up will appear giving the user the option to provide a more
|
12 |
+
detailed feedback. Once the vote is submitted, all data is logged and the app
|
13 |
+
restarts for a new battle.
|
14 |
+
|
15 |
+
The app is composed of four sections:
|
16 |
+
1. Title/Introduction
|
17 |
+
2. Rules
|
18 |
+
3. Side-by-Side Battle
|
19 |
+
4. Feedback
|
20 |
+
"""
|
21 |
+
|
22 |
+
import asyncio
|
23 |
+
import json
|
24 |
+
import logging
|
25 |
+
import os
|
26 |
+
import threading
|
27 |
+
import time
|
28 |
+
from copy import deepcopy
|
29 |
+
from datetime import datetime
|
30 |
+
from typing import Dict, List
|
31 |
+
|
32 |
+
import streamlit as st
|
33 |
+
from battle_manager import (
|
34 |
+
CONVERSATION_COUNTS,
|
35 |
+
cache_fighters,
|
36 |
+
get_crs_fighters,
|
37 |
+
get_unique_user_id,
|
38 |
+
)
|
39 |
+
from crs_fighter import CRSFighter
|
40 |
+
from utils import (
|
41 |
+
download_and_extract_item_embeddings,
|
42 |
+
download_and_extract_models,
|
43 |
+
upload_conversation_logs_to_hf,
|
44 |
+
upload_feedback_to_gsheet,
|
45 |
+
)
|
46 |
+
|
47 |
+
from src.model.crb_crs.recommender import *
|
48 |
+
|
49 |
+
# A message is a dictionary with two keys: role and message.
|
50 |
+
Message = Dict[str, str]
|
51 |
+
|
52 |
+
logging.basicConfig(
|
53 |
+
level=logging.WARNING,
|
54 |
+
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
55 |
+
)
|
56 |
+
logger = logging.getLogger(__name__)
|
57 |
+
logger.setLevel(logging.INFO)
|
58 |
+
|
59 |
+
# Download models and data externally stored if not already downloaded
|
60 |
+
if not os.path.exists("data/models"):
|
61 |
+
logger.info("Downloading models...")
|
62 |
+
download_and_extract_models()
|
63 |
+
if not os.path.exists("data/embed_items"):
|
64 |
+
logger.info("Downloading item embeddings...")
|
65 |
+
download_and_extract_item_embeddings()
|
66 |
+
|
67 |
+
# Create the conversation logs directory
|
68 |
+
CONVERSATION_LOG_DIR = "data/arena/conversation_logs/"
|
69 |
+
os.makedirs(CONVERSATION_LOG_DIR, exist_ok=True)
|
70 |
+
|
71 |
+
|
72 |
+
# Callbacks
|
73 |
+
def record_vote(vote: str) -> None:
|
74 |
+
"""Record the user's vote in the database.
|
75 |
+
|
76 |
+
Args:
|
77 |
+
vote: Voted CRS model name.
|
78 |
+
"""
|
79 |
+
user_id = st.session_state["user_id"]
|
80 |
+
crs1_model: CRSFighter = st.session_state["crs1"]
|
81 |
+
crs2_model: CRSFighter = st.session_state["crs2"]
|
82 |
+
last_row_id = str(datetime.now())
|
83 |
+
asyncio.run(
|
84 |
+
upload_feedback_to_gsheet(
|
85 |
+
{
|
86 |
+
"id": last_row_id,
|
87 |
+
"user_id": user_id,
|
88 |
+
"crs1": crs1_model.name,
|
89 |
+
"crs2": crs2_model.name,
|
90 |
+
"vote": vote,
|
91 |
+
},
|
92 |
+
worksheet="votes",
|
93 |
+
)
|
94 |
+
)
|
95 |
+
feedback_dialog(row_id=last_row_id)
|
96 |
+
|
97 |
+
|
98 |
+
def record_feedback(feedback: str, row_id: int) -> None:
|
99 |
+
"""Record the user's feedback in the database and restart the app.
|
100 |
+
|
101 |
+
Args:
|
102 |
+
feedback: User's feedback.
|
103 |
+
vote: Voted CRS model name.
|
104 |
+
crs_models: Tuple of CRS model names.
|
105 |
+
user_id: Unique user ID.
|
106 |
+
"""
|
107 |
+
asyncio.run(
|
108 |
+
upload_feedback_to_gsheet(
|
109 |
+
{"id": row_id, "feedback": feedback}, "feedback"
|
110 |
+
)
|
111 |
+
)
|
112 |
+
|
113 |
+
|
114 |
+
def end_conversation(crs: CRSFighter, sentiment: str) -> None:
|
115 |
+
"""Ends the conversation with given CRS model.
|
116 |
+
|
117 |
+
Records the conversation in the logs and moves either to the next CRS or
|
118 |
+
to the voting section.
|
119 |
+
|
120 |
+
Args:
|
121 |
+
crs: CRS model.
|
122 |
+
sentiment: User's sentiment (frustrated or satisfied).
|
123 |
+
"""
|
124 |
+
messages: List[Message] = deepcopy(
|
125 |
+
st.session_state[f"messages_{crs.fighter_id}"]
|
126 |
+
)
|
127 |
+
messages.append({"role": "metadata", "sentiment": sentiment})
|
128 |
+
user_id = st.session_state["user_id"]
|
129 |
+
logger.info(f"User {user_id} ended conversation with {crs.name}.")
|
130 |
+
log_file_path = os.path.join(
|
131 |
+
CONVERSATION_LOG_DIR, f"{user_id}_{crs.name}.json"
|
132 |
+
)
|
133 |
+
with open(log_file_path, "a") as f:
|
134 |
+
json.dump(messages, f)
|
135 |
+
|
136 |
+
# Update the conversation count
|
137 |
+
CONVERSATION_COUNTS[crs.name] += 1
|
138 |
+
|
139 |
+
# Asynchronously save the conversation logs to Hugging Face Hub
|
140 |
+
asyncio.run(
|
141 |
+
upload_conversation_logs_to_hf(
|
142 |
+
log_file_path, f"conversation_logs/{user_id}_{crs.name}.json"
|
143 |
+
)
|
144 |
+
)
|
145 |
+
|
146 |
+
if crs.fighter_id == 1:
|
147 |
+
# Disable the chat interface for the first CRS
|
148 |
+
st.session_state["crs1_enabled"] = False
|
149 |
+
# Enable the chat interface for the second CRS
|
150 |
+
st.session_state["crs2_enabled"] = True
|
151 |
+
elif crs.fighter_id == 2:
|
152 |
+
# Disable the chat interface for the second CRS
|
153 |
+
st.session_state["crs2_enabled"] = False
|
154 |
+
# Enable the voting section
|
155 |
+
st.session_state["vote_enabled"] = True
|
156 |
+
# Scroll to the voting section
|
157 |
+
|
158 |
+
st.rerun()
|
159 |
+
|
160 |
+
|
161 |
+
def get_crs_response(crs: CRSFighter, message: str):
|
162 |
+
"""Gets the CRS response for the given message.
|
163 |
+
|
164 |
+
This method sends a POST request to the CRS model including the history of
|
165 |
+
the conversation and the user's message.
|
166 |
+
|
167 |
+
Args:
|
168 |
+
crs: CRS model.
|
169 |
+
message: User's message.
|
170 |
+
|
171 |
+
Yields:
|
172 |
+
Words from the CRS response.
|
173 |
+
"""
|
174 |
+
history = deepcopy(st.session_state[f"messages_{crs.fighter_id}"])
|
175 |
+
history = history[:-1] # Remove the last message (user's message)
|
176 |
+
|
177 |
+
response, state = crs.reply(
|
178 |
+
input_message=message,
|
179 |
+
history=st.session_state[f"messages_{crs.fighter_id}"],
|
180 |
+
options_state=st.session_state.get(f"state_{crs.fighter_id}", []),
|
181 |
+
)
|
182 |
+
st.session_state[f"state_{crs.fighter_id}"] = state
|
183 |
+
# response = "CRS response for testing purposes."
|
184 |
+
for word in response.split():
|
185 |
+
yield f"{word} "
|
186 |
+
time.sleep(0.05)
|
187 |
+
|
188 |
+
|
189 |
+
@st.dialog("Your vote has been submitted!")
|
190 |
+
def feedback_dialog(row_id: int) -> None:
|
191 |
+
"""Pop-up dialog to provide feedback after voting.
|
192 |
+
|
193 |
+
Feedback is optional and can be used to provide more detailed information
|
194 |
+
about the user's vote.
|
195 |
+
|
196 |
+
Args:
|
197 |
+
row_id: Unique row ID of the vote.
|
198 |
+
"""
|
199 |
+
feedback_text = st.text_area(
|
200 |
+
"(Optional) You can provide more detailed feedback below:"
|
201 |
+
)
|
202 |
+
if st.button("Finish", use_container_width=True):
|
203 |
+
record_feedback(feedback_text, row_id)
|
204 |
+
# Restart the app
|
205 |
+
st.session_state.clear()
|
206 |
+
st.rerun()
|
207 |
+
|
208 |
+
|
209 |
+
# Streamlit app
|
210 |
+
st.set_page_config(page_title="CRS Arena", layout="wide")
|
211 |
+
|
212 |
+
# Cache some CRS fighters at startup
|
213 |
+
cache_fighters(n=2)
|
214 |
+
|
215 |
+
# Battle setup
|
216 |
+
if "user_id" not in st.session_state:
|
217 |
+
st.session_state["user_id"] = get_unique_user_id()
|
218 |
+
st.session_state["crs1"], st.session_state["crs2"] = get_crs_fighters()
|
219 |
+
|
220 |
+
|
221 |
+
# Introduction
|
222 |
+
st.title(":gun: CRS Arena")
|
223 |
+
st.write(
|
224 |
+
"Welcome to the CRS Arena! Here you can have a conversation with two "
|
225 |
+
"conversational recommender systems (CRSs) and vote on which one you "
|
226 |
+
"prefer."
|
227 |
+
)
|
228 |
+
|
229 |
+
st.header(":page_with_curl: Rules")
|
230 |
+
st.write(
|
231 |
+
"* Chat with each CRS (one after the other) to get movie recommendations "
|
232 |
+
"up until you feel statisfied or frustrated.\n"
|
233 |
+
"* Try to send several messages to each CRS to get a better sense of their "
|
234 |
+
"capabilities. Don't quit after the first message!\n"
|
235 |
+
"* To finish chatting with a CRS, click on the button corresponding to "
|
236 |
+
"your feeling: frustrated or satisfied.\n"
|
237 |
+
"* Vote on which CRS you prefer or declare a tie.\n"
|
238 |
+
"* (Optional) Provide more detailed feedback after voting.\n"
|
239 |
+
)
|
240 |
+
|
241 |
+
# Side-by-Side Battle
|
242 |
+
st.header(":point_down: Side-by-Side Battle")
|
243 |
+
st.write("Let's start the battle!")
|
244 |
+
|
245 |
+
# Initialize the chat messages
|
246 |
+
if "messages_1" not in st.session_state:
|
247 |
+
st.session_state["messages_1"] = []
|
248 |
+
st.session_state["state_1"] = None
|
249 |
+
if "messages_2" not in st.session_state:
|
250 |
+
st.session_state["messages_2"] = []
|
251 |
+
st.session_state["state_2"] = None
|
252 |
+
|
253 |
+
if "crs1_enabled" not in st.session_state:
|
254 |
+
st.session_state["crs1_enabled"] = True
|
255 |
+
if "crs2_enabled" not in st.session_state:
|
256 |
+
st.session_state["crs2_enabled"] = False
|
257 |
+
if "vote_enabled" not in st.session_state:
|
258 |
+
st.session_state["vote_enabled"] = False
|
259 |
+
|
260 |
+
col_crs1, col_crs2 = st.columns(2)
|
261 |
+
|
262 |
+
# CRS 1
|
263 |
+
with col_crs1:
|
264 |
+
with st.container(border=True):
|
265 |
+
st.write(":red_circle: CRS 1")
|
266 |
+
# Display the chat history
|
267 |
+
messages_crs1 = st.container(height=350, border=False)
|
268 |
+
for message in st.session_state["messages_1"]:
|
269 |
+
messages_crs1.chat_message(message["role"]).write(
|
270 |
+
message["message"]
|
271 |
+
)
|
272 |
+
|
273 |
+
if prompt1 := st.chat_input(
|
274 |
+
"Send a message to CRS 1",
|
275 |
+
key="prompt_crs1",
|
276 |
+
disabled=not st.session_state["crs1_enabled"],
|
277 |
+
):
|
278 |
+
# Display the user's message
|
279 |
+
messages_crs1.chat_message("user").write(prompt1)
|
280 |
+
|
281 |
+
# Add user's message to chat history
|
282 |
+
st.session_state["messages_1"].append(
|
283 |
+
{"role": "user", "message": prompt1}
|
284 |
+
)
|
285 |
+
# Get the CRS response
|
286 |
+
response_crs1 = messages_crs1.chat_message(
|
287 |
+
"assistant"
|
288 |
+
).write_stream(get_crs_response(st.session_state["crs1"], prompt1))
|
289 |
+
|
290 |
+
# Add CRS response to chat history
|
291 |
+
st.session_state["messages_1"].append(
|
292 |
+
{"role": "assistant", "message": response_crs1}
|
293 |
+
)
|
294 |
+
|
295 |
+
crs1_frustrated_col, crs1_satisfied_col = st.columns(2)
|
296 |
+
crs1_frustrated_col.button(
|
297 |
+
":rage: Frustrated",
|
298 |
+
use_container_width=True,
|
299 |
+
key="end_frustated_crs1",
|
300 |
+
on_click=end_conversation,
|
301 |
+
kwargs={
|
302 |
+
"crs": st.session_state["crs1"],
|
303 |
+
"sentiment": "frustrated",
|
304 |
+
},
|
305 |
+
disabled=not st.session_state["crs1_enabled"],
|
306 |
+
)
|
307 |
+
crs1_satisfied_col.button(
|
308 |
+
":heavy_check_mark: Satisfied",
|
309 |
+
use_container_width=True,
|
310 |
+
key="end_satisfied_crs1",
|
311 |
+
on_click=end_conversation,
|
312 |
+
kwargs={
|
313 |
+
"crs": st.session_state["crs1"],
|
314 |
+
"sentiment": "satisfied",
|
315 |
+
},
|
316 |
+
disabled=not st.session_state["crs1_enabled"],
|
317 |
+
)
|
318 |
+
|
319 |
+
# CRS 2
|
320 |
+
with col_crs2:
|
321 |
+
with st.container(border=True):
|
322 |
+
st.write(":large_blue_circle: CRS 2")
|
323 |
+
# Display the chat history
|
324 |
+
messages_crs2 = st.container(height=350, border=False)
|
325 |
+
for message in st.session_state["messages_2"]:
|
326 |
+
messages_crs2.chat_message(message["role"]).write(
|
327 |
+
message["message"]
|
328 |
+
)
|
329 |
+
|
330 |
+
if prompt2 := st.chat_input(
|
331 |
+
"Send a message to CRS 2",
|
332 |
+
key="prompt_crs2",
|
333 |
+
disabled=not st.session_state["crs2_enabled"],
|
334 |
+
):
|
335 |
+
# Display the user's message
|
336 |
+
messages_crs2.chat_message("user").write(prompt2)
|
337 |
+
|
338 |
+
# Add user's message to chat history
|
339 |
+
st.session_state["messages_2"].append(
|
340 |
+
{"role": "user", "message": prompt2}
|
341 |
+
)
|
342 |
+
|
343 |
+
# Get the CRS response
|
344 |
+
response_crs2 = messages_crs2.chat_message(
|
345 |
+
"assistant"
|
346 |
+
).write_stream(get_crs_response(st.session_state["crs2"], prompt2))
|
347 |
+
|
348 |
+
# Add CRS response to chat history
|
349 |
+
st.session_state["messages_2"].append(
|
350 |
+
{"role": "assistant", "message": response_crs2}
|
351 |
+
)
|
352 |
+
|
353 |
+
crs2_frustrated_col, crs2_satisfied_col = st.columns(2)
|
354 |
+
crs2_frustrated_col.button(
|
355 |
+
":rage: Frustrated",
|
356 |
+
use_container_width=True,
|
357 |
+
key="end_frustated_crs2",
|
358 |
+
on_click=end_conversation,
|
359 |
+
kwargs={
|
360 |
+
"crs": st.session_state["crs2"],
|
361 |
+
"sentiment": "frustrated",
|
362 |
+
},
|
363 |
+
disabled=not st.session_state["crs2_enabled"],
|
364 |
+
)
|
365 |
+
crs2_satisfied_col.button(
|
366 |
+
":heavy_check_mark: Satisfied",
|
367 |
+
use_container_width=True,
|
368 |
+
key="end_satisfied_crs2",
|
369 |
+
on_click=end_conversation,
|
370 |
+
kwargs={
|
371 |
+
"crs": st.session_state["crs2"],
|
372 |
+
"sentiment": "satisfied",
|
373 |
+
},
|
374 |
+
disabled=not st.session_state["crs2_enabled"],
|
375 |
+
)
|
376 |
+
|
377 |
+
# Feedback section
|
378 |
+
container = st.container()
|
379 |
+
container.subheader(":trophy: Declare the winner!", anchor="vote")
|
380 |
+
container_col1, container_col2, container_col3 = container.columns(3)
|
381 |
+
container_col1.button(
|
382 |
+
":red_circle: CRS 1",
|
383 |
+
use_container_width=True,
|
384 |
+
key="crs1_wins",
|
385 |
+
on_click=record_vote,
|
386 |
+
kwargs={"vote": st.session_state["crs1"].name},
|
387 |
+
disabled=not st.session_state["vote_enabled"],
|
388 |
+
)
|
389 |
+
container_col2.button(
|
390 |
+
":large_blue_circle: CRS 2",
|
391 |
+
use_container_width=True,
|
392 |
+
key="crs2_wins",
|
393 |
+
on_click=record_vote,
|
394 |
+
kwargs={"vote": st.session_state["crs2"].name},
|
395 |
+
disabled=not st.session_state["vote_enabled"],
|
396 |
+
)
|
397 |
+
container_col3.button(
|
398 |
+
"Tie",
|
399 |
+
use_container_width=True,
|
400 |
+
key="tie",
|
401 |
+
on_click=record_vote,
|
402 |
+
kwargs={"vote": "tie"},
|
403 |
+
disabled=not st.session_state["vote_enabled"],
|
404 |
+
)
|
405 |
+
|
406 |
+
# Terms of service
|
407 |
+
st.header("Terms of Service")
|
408 |
+
st.write(
|
409 |
+
"By using this application, you agree to the following terms of service:\n"
|
410 |
+
"The service is a research platform. Please do not upload any private "
|
411 |
+
"information in the chat. The service collects the chat data and the user's"
|
412 |
+
" vote, which may be released under a Creative Commons Attribution (CC-BY) "
|
413 |
+
"or a similar license."
|
414 |
+
)
|
crs_arena/battle_manager.py
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Battle Manager module.
|
2 |
+
|
3 |
+
Contains helper functions to select fighters for a battle and generate
|
4 |
+
unique user ids.
|
5 |
+
"""
|
6 |
+
|
7 |
+
import logging
|
8 |
+
import uuid
|
9 |
+
from collections import defaultdict
|
10 |
+
from typing import Optional, Tuple
|
11 |
+
|
12 |
+
from crs_fighter import CRSFighter
|
13 |
+
from utils import get_crs_model
|
14 |
+
|
15 |
+
# CRS models with their configuration files.
|
16 |
+
CRS_MODELS = {
|
17 |
+
"kbrd_redial": "data/arena/crs_config/KBRD/kbrd_redial.yaml",
|
18 |
+
"kbrd_opendialkg": "data/arena/crs_config/KBRD/kbrd_opendialkg.yaml",
|
19 |
+
"unicrs_redial": "data/arena/crs_config/UniCRS/unicrs_redial.yaml",
|
20 |
+
"unicrs_opendialkg": "data/arena/crs_config/UniCRS/unicrs_opendialkg.yaml",
|
21 |
+
"barcor_redial": "data/arena/crs_config/BARCOR/barcor_redial.yaml",
|
22 |
+
"barcor_opendialkg": "data/arena/crs_config/BARCOR/barcor_opendialkg.yaml",
|
23 |
+
"chatgpt_redial": "data/arena/crs_config/ChatGPT/chatgpt_redial.yaml",
|
24 |
+
"chatgpt_opendialkg": (
|
25 |
+
"data/arena/crs_config/ChatGPT/chatgpt_opendialkg.yaml"
|
26 |
+
),
|
27 |
+
"crbcrs_redial": "data/arena/crs_config/CRB_CRS/crb_crs_redial.yaml",
|
28 |
+
}
|
29 |
+
|
30 |
+
CONVERSATION_COUNTS = defaultdict(int).fromkeys(CRS_MODELS.keys(), 0)
|
31 |
+
|
32 |
+
|
33 |
+
def get_crs_fighters() -> Tuple[CRSFighter, CRSFighter]:
|
34 |
+
"""Selects two CRS models for a battle.
|
35 |
+
|
36 |
+
The selection is based on the number of conversations collected per model.
|
37 |
+
The ones with the least conversations are selected.
|
38 |
+
|
39 |
+
Returns:
|
40 |
+
CRS models to battle.
|
41 |
+
"""
|
42 |
+
pair = sorted(CONVERSATION_COUNTS.items(), key=lambda x: x[1])[:2]
|
43 |
+
fighter1 = CRSFighter(1, pair[0][0], CRS_MODELS[pair[0][0]])
|
44 |
+
fighter2 = CRSFighter(2, pair[1][0], CRS_MODELS[pair[1][0]])
|
45 |
+
return fighter1, fighter2
|
46 |
+
|
47 |
+
|
48 |
+
def get_unique_user_id() -> str:
|
49 |
+
"""Generates a unique user id.
|
50 |
+
|
51 |
+
Returns:
|
52 |
+
Unique user id.
|
53 |
+
"""
|
54 |
+
return str(uuid.uuid4())
|
55 |
+
|
56 |
+
|
57 |
+
def cache_fighters(n: Optional[int] = None) -> None:
|
58 |
+
"""Caches n CRS fighters.
|
59 |
+
|
60 |
+
Args:
|
61 |
+
n: Number of fighters to cache. If None, all fighters are cached.
|
62 |
+
"""
|
63 |
+
logging.info(f"Caching {n} CRS fighters.")
|
64 |
+
for i, (model_name, config_path) in enumerate(CRS_MODELS.items()):
|
65 |
+
get_crs_model(model_name, config_path)
|
66 |
+
if n is not None and i == n:
|
67 |
+
break
|
crs_arena/crs_fighter.py
ADDED
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""CRS Fighter.
|
2 |
+
|
3 |
+
This class represents a CRS fighter. A CRS fighter has a fighter id (i.e., 1
|
4 |
+
or 2), a name (i.e., model name), and a CRS. The CRS is loaded using the
|
5 |
+
model name and configuration file.
|
6 |
+
"""
|
7 |
+
|
8 |
+
import json
|
9 |
+
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple
|
10 |
+
|
11 |
+
from utils import get_crs_model
|
12 |
+
|
13 |
+
from src.model.utils import get_entity, get_options
|
14 |
+
|
15 |
+
if TYPE_CHECKING:
|
16 |
+
from battle_manager import Message
|
17 |
+
|
18 |
+
|
19 |
+
class CRSFighter:
|
20 |
+
def __init__(self, fighter_id: int, name: str, config_path: str) -> None:
|
21 |
+
"""Initializes CRS fighter.
|
22 |
+
|
23 |
+
Args:
|
24 |
+
fighter_id: Fighter id (1 or 2).
|
25 |
+
name: Model name.
|
26 |
+
config: Model configuration file.
|
27 |
+
|
28 |
+
Raises:
|
29 |
+
ValueError: If id is not 1 or 2.
|
30 |
+
"""
|
31 |
+
if fighter_id not in [1, 2]:
|
32 |
+
raise ValueError("Fighter id must be 1 or 2.")
|
33 |
+
|
34 |
+
self.fighter_id = fighter_id
|
35 |
+
|
36 |
+
self.name = name
|
37 |
+
self.config_path = config_path
|
38 |
+
self.model = get_crs_model(self.name, self.config_path)
|
39 |
+
|
40 |
+
# Load entity data
|
41 |
+
self._load_entity_data()
|
42 |
+
|
43 |
+
# Load options
|
44 |
+
self.options = get_options(self.model.crs_model.kg_dataset)
|
45 |
+
|
46 |
+
# Generation arguments. Not used for now.
|
47 |
+
self.response_generation_args = {}
|
48 |
+
|
49 |
+
def _load_entity_data(self):
|
50 |
+
"""Loads entity data."""
|
51 |
+
with open(
|
52 |
+
f"data/{self.model.crs_model.kg_dataset}/entity2id.json",
|
53 |
+
"r",
|
54 |
+
encoding="utf-8",
|
55 |
+
) as f:
|
56 |
+
self.entity2id = json.load(f)
|
57 |
+
|
58 |
+
self.id2entity = {int(v): k for k, v in self.entity2id.items()}
|
59 |
+
self.entity_list = list(self.entity2id.keys())
|
60 |
+
|
61 |
+
def _process_user_input(
|
62 |
+
self, input_message: str, history: List["Message"]
|
63 |
+
) -> Dict[str, Any]:
|
64 |
+
"""Processes user input.
|
65 |
+
|
66 |
+
The conversation dictionary contains the following keys: context,
|
67 |
+
entity, rec, and resp. Context is a list of the previous utterances,
|
68 |
+
entity is a list of entities mentioned in the conversation, rec is the
|
69 |
+
recommended items, resp is the response generated by the model, and
|
70 |
+
template is the context with masked entities.
|
71 |
+
Note that rec, resp, and template are empty as the model is used for
|
72 |
+
inference only, they are kept for compatibility with the models.
|
73 |
+
|
74 |
+
Args:
|
75 |
+
input_message: User input message.
|
76 |
+
history: Conversation history.
|
77 |
+
|
78 |
+
Returns:
|
79 |
+
Processed user input.
|
80 |
+
"""
|
81 |
+
context = [m["message"] for m in history] + [input_message]
|
82 |
+
entities = []
|
83 |
+
for utterance in context:
|
84 |
+
utterance_entities = get_entity(utterance, self.entity_list)
|
85 |
+
entities.extend(utterance_entities)
|
86 |
+
|
87 |
+
return {
|
88 |
+
"context": context,
|
89 |
+
"entity": entities,
|
90 |
+
"rec": [],
|
91 |
+
"resp": "",
|
92 |
+
"template": [],
|
93 |
+
}
|
94 |
+
|
95 |
+
def reply(
|
96 |
+
self,
|
97 |
+
input_message: str,
|
98 |
+
history: List["Message"],
|
99 |
+
options_state: Optional[List[float]],
|
100 |
+
) -> Tuple[str, List[float]]:
|
101 |
+
"""Generates a reply to the user input.
|
102 |
+
|
103 |
+
Args:
|
104 |
+
input_message: User input message.
|
105 |
+
history: Conversation history.
|
106 |
+
options_state: State of the options.
|
107 |
+
|
108 |
+
Returns:
|
109 |
+
Generated response and updated state.
|
110 |
+
"""
|
111 |
+
# Process conversation to create conversation dictionary
|
112 |
+
conversation_dict = self._process_user_input(input_message, history)
|
113 |
+
|
114 |
+
if options_state is None or len(options_state) != len(self.options[1]):
|
115 |
+
options_state = [0.0] * len(self.options[1])
|
116 |
+
|
117 |
+
# Get response
|
118 |
+
response, state = self.model.get_response(
|
119 |
+
conversation_dict,
|
120 |
+
self.id2entity,
|
121 |
+
self.options,
|
122 |
+
options_state,
|
123 |
+
**self.response_generation_args,
|
124 |
+
)
|
125 |
+
return response, state
|
crs_arena/utils.py
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Utility functions for CRS Arena."""
|
2 |
+
|
3 |
+
import asyncio
|
4 |
+
import logging
|
5 |
+
import os
|
6 |
+
import sqlite3
|
7 |
+
import sys
|
8 |
+
import tarfile
|
9 |
+
from datetime import timedelta
|
10 |
+
from typing import Any, Dict, List
|
11 |
+
|
12 |
+
import openai
|
13 |
+
import pandas as pd
|
14 |
+
import streamlit as st
|
15 |
+
import wget
|
16 |
+
import yaml
|
17 |
+
from huggingface_hub import HfApi
|
18 |
+
from streamlit_gsheets import GSheetsConnection
|
19 |
+
|
20 |
+
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
21 |
+
|
22 |
+
from src.model.crs_model import CRSModel
|
23 |
+
|
24 |
+
# Initialize Hugging Face API
|
25 |
+
HF_API = HfApi(token=st.secrets.hf.hf_token)
|
26 |
+
|
27 |
+
|
28 |
+
@st.cache_resource(show_spinner="Loading CRS...", max_entries=5)
|
29 |
+
def get_crs_model(model_name: str, model_config_file: str) -> CRSModel:
|
30 |
+
"""Returns a CRS model.
|
31 |
+
|
32 |
+
Args:
|
33 |
+
model_name: Model name.
|
34 |
+
model_config_file: Model configuration file.
|
35 |
+
|
36 |
+
Raises:
|
37 |
+
FileNotFoundError: If model configuration file is not found.
|
38 |
+
|
39 |
+
Returns:
|
40 |
+
CRS model.
|
41 |
+
"""
|
42 |
+
logging.debug(f"Loading CRS model {model_name}.")
|
43 |
+
if not os.path.exists(model_config_file):
|
44 |
+
raise FileNotFoundError(
|
45 |
+
f"Model configuration file {model_config_file} not found."
|
46 |
+
)
|
47 |
+
|
48 |
+
model_args = yaml.safe_load(open(model_config_file, "r"))
|
49 |
+
|
50 |
+
if "chatgpt" in model_name:
|
51 |
+
openai.api_key = st.secrets.openai.api_key
|
52 |
+
|
53 |
+
# Extract crs model from name
|
54 |
+
name = model_name.split("_")[0]
|
55 |
+
|
56 |
+
return CRSModel(name, **model_args)
|
57 |
+
|
58 |
+
|
59 |
+
def execute_sql_query(query: str, params: Dict[str, str]) -> List[Any]:
|
60 |
+
"""Executes a SQL query with parameters.
|
61 |
+
|
62 |
+
Args:
|
63 |
+
query: SQL query.
|
64 |
+
params: Dictionary of parameters.
|
65 |
+
|
66 |
+
Returns:
|
67 |
+
Output of the query.
|
68 |
+
"""
|
69 |
+
connection = sqlite3.connect(st.secrets.db.vote_db)
|
70 |
+
cursor = connection.cursor().execute(query, params)
|
71 |
+
output = cursor.fetchall()
|
72 |
+
connection.commit()
|
73 |
+
return output
|
74 |
+
|
75 |
+
|
76 |
+
def download_and_extract_models() -> None:
|
77 |
+
"""Downloads the models folder from the server and extracts it."""
|
78 |
+
logging.debug("Downloading models folder.")
|
79 |
+
models_url = st.secrets.files.models_folder_url
|
80 |
+
models_targz = "models.tar.gz"
|
81 |
+
models_folder = "data/models/"
|
82 |
+
try:
|
83 |
+
wget.download(models_url, models_targz)
|
84 |
+
|
85 |
+
logging.debug("Extracting models folder.")
|
86 |
+
with tarfile.open(models_targz, "r:gz") as tar:
|
87 |
+
tar.extractall(models_folder)
|
88 |
+
|
89 |
+
os.remove(models_targz)
|
90 |
+
logging.debug("Models folder downloaded and extracted.")
|
91 |
+
except Exception as e:
|
92 |
+
logging.error(f"Error downloading models folder: {e}")
|
93 |
+
|
94 |
+
|
95 |
+
def download_and_extract_item_embeddings() -> None:
|
96 |
+
"""Downloads the item embeddings folder from the server and extracts it."""
|
97 |
+
logging.debug("Downloading item embeddings folder.")
|
98 |
+
item_embeddings_url = st.secrets.files.item_embeddings_url
|
99 |
+
item_embeddings_tarbz = "item_embeddings.tar.bz2"
|
100 |
+
item_embeddings_folder = "data/"
|
101 |
+
|
102 |
+
try:
|
103 |
+
wget.download(item_embeddings_url, item_embeddings_tarbz)
|
104 |
+
|
105 |
+
logging.debug("Extracting item embeddings folder.")
|
106 |
+
with tarfile.open(item_embeddings_tarbz, "r:bz2") as tar:
|
107 |
+
tar.extractall(item_embeddings_folder)
|
108 |
+
|
109 |
+
os.remove(item_embeddings_tarbz)
|
110 |
+
logging.debug("Item embeddings folder downloaded and extracted.")
|
111 |
+
except Exception as e:
|
112 |
+
logging.error(f"Error downloading item embeddings folder: {e}")
|
113 |
+
|
114 |
+
|
115 |
+
async def upload_conversation_logs_to_hf(
|
116 |
+
conversation_log_file_path: str, repo_filename: str
|
117 |
+
) -> None:
|
118 |
+
"""Uploads conversation logs to Hugging Face asynchronously.
|
119 |
+
|
120 |
+
Args:
|
121 |
+
conversation_log_file_path: Path to the conversation log file locally.
|
122 |
+
repo_filename: Name of the file in the Hugging Face repository.
|
123 |
+
|
124 |
+
Raises:
|
125 |
+
Exception: If an error occurs during the upload.
|
126 |
+
"""
|
127 |
+
logging.debug(
|
128 |
+
"Uploading conversation logs to Hugging Face: "
|
129 |
+
f"{conversation_log_file_path}."
|
130 |
+
)
|
131 |
+
try:
|
132 |
+
await asyncio.get_event_loop().run_in_executor(
|
133 |
+
None,
|
134 |
+
lambda: HF_API.upload_file(
|
135 |
+
path_or_fileobj=conversation_log_file_path,
|
136 |
+
path_in_repo=repo_filename,
|
137 |
+
repo_id=st.secrets.hf.dataset_repo,
|
138 |
+
repo_type="dataset",
|
139 |
+
),
|
140 |
+
)
|
141 |
+
logging.debug("Conversation logs uploaded to Hugging Face.")
|
142 |
+
except Exception as e:
|
143 |
+
logging.error(
|
144 |
+
f"Error uploading conversation logs to Hugging Face: {e}"
|
145 |
+
)
|
146 |
+
|
147 |
+
|
148 |
+
async def upload_feedback_to_gsheet(
|
149 |
+
row: Dict[str, str], worksheet: str = "votes"
|
150 |
+
) -> None:
|
151 |
+
"""Uploads feedback to Google Sheets asynchronously.
|
152 |
+
|
153 |
+
Args:
|
154 |
+
row: Row to upload to the worksheet.
|
155 |
+
worksheet: Name of the worksheet to upload the feedback to.
|
156 |
+
|
157 |
+
Raises:
|
158 |
+
Exception: If an error occurs during the upload.
|
159 |
+
"""
|
160 |
+
logging.debug("Uploading feedback to Google Sheets.")
|
161 |
+
try:
|
162 |
+
gs_connection = st.connection("gsheets", type=GSheetsConnection)
|
163 |
+
df = gs_connection.read(worksheet=worksheet)
|
164 |
+
if df[df["id"] == row["id"]].empty:
|
165 |
+
df = pd.concat([df, pd.DataFrame([row])], ignore_index=True)
|
166 |
+
else:
|
167 |
+
# Add feedback to existing row
|
168 |
+
df.loc[df["id"] == row["id"], "feedback"] = row["feedback"]
|
169 |
+
gs_connection.update(data=df, worksheet=worksheet)
|
170 |
+
logging.debug("Feedback uploaded to Google Sheets.")
|
171 |
+
except Exception as e:
|
172 |
+
logging.error(f"Error uploading feedback to Google Sheets: {e}")
|
data/arena/crs_config/BARCOR/barcor_opendialkg.yaml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: opendialkg
|
2 |
+
context_max_length: 200
|
3 |
+
rec_model: data/models/barcor_rec_opendialkg
|
4 |
+
conv_model: data/models/barcor_conv_opendialkg
|
5 |
+
tokenizer_path: facebook/bart-base
|
6 |
+
resp_max_length: 128
|
7 |
+
seed: 42
|
8 |
+
debug: false
|
data/arena/crs_config/BARCOR/barcor_redial.yaml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: redial
|
2 |
+
context_max_length: 200
|
3 |
+
rec_model: data/models/barcor_rec_redial/
|
4 |
+
conv_model: data/models/barcor_conv_redial/
|
5 |
+
tokenizer_path: facebook/bart-base
|
6 |
+
resp_max_length: 128
|
7 |
+
seed: 42
|
8 |
+
debug: false
|
data/arena/crs_config/CRB_CRS/crb_crs_redial.yaml
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dataset: "redial"
|
2 |
+
domain: "movies"
|
3 |
+
corpus_folder: "data/redial/corpus"
|
4 |
+
mle_model_path: "data/models/crb_crs_redial/mle_model.pkl"
|
5 |
+
recommender_path: "data/models/crb_crs_redial/movie_recommender.pkl"
|
data/arena/crs_config/ChatGPT/chatgpt_opendialkg.yaml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: opendialkg
|
2 |
+
seed: 42
|
3 |
+
debug: false
|
data/arena/crs_config/ChatGPT/chatgpt_redial.yaml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: redial
|
2 |
+
seed: 42
|
3 |
+
debug: false
|
data/arena/crs_config/KBRD/kbrd_opendialkg.yaml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: opendialkg
|
2 |
+
hidden_size: 128
|
3 |
+
entity_hidden_size: 128
|
4 |
+
num_bases: 8
|
5 |
+
context_max_length: 200
|
6 |
+
entity_max_length: 32
|
7 |
+
rec_model: data/models/kbrd_rec_opendialkg/
|
8 |
+
conv_model: data/models/kbrd_conv_opendialkg/
|
9 |
+
tokenizer_path: facebook/bart-base
|
10 |
+
encoder_layers: 2
|
11 |
+
decoder_layers: 2
|
12 |
+
attn_head: 2
|
13 |
+
text_hidden_size: 300
|
14 |
+
resp_max_length: 128
|
15 |
+
seed: 42
|
16 |
+
debug: false
|
data/arena/crs_config/KBRD/kbrd_redial.yaml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: redial
|
2 |
+
hidden_size: 128
|
3 |
+
entity_hidden_size: 128
|
4 |
+
num_bases: 8
|
5 |
+
context_max_length: 200
|
6 |
+
entity_max_length: 32
|
7 |
+
rec_model: data/models/kbrd_rec_redial/
|
8 |
+
conv_model: data/models/kbrd_conv_redial/
|
9 |
+
tokenizer_path: facebook/bart-base
|
10 |
+
encoder_layers: 2
|
11 |
+
decoder_layers: 2
|
12 |
+
attn_head: 2
|
13 |
+
text_hidden_size: 300
|
14 |
+
resp_max_length: 128
|
15 |
+
seed: 42
|
16 |
+
debug: false
|
data/arena/crs_config/UniCRS/unicrs_opendialkg.yaml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: opendialkg
|
2 |
+
model: microsoft/DialoGPT-small
|
3 |
+
rec_model: data/models/unicrs_rec_opendialkg/
|
4 |
+
conv_model: data/models/unicrs_conv_opendialkg/
|
5 |
+
context_max_length: 128
|
6 |
+
entity_max_length: 20
|
7 |
+
tokenizer_path: microsoft/DialoGPT-small
|
8 |
+
text_tokenizer_path: roberta-base
|
9 |
+
resp_max_length: 64
|
10 |
+
text_encoder: roberta-base
|
11 |
+
num_bases: 8
|
12 |
+
seed: 42
|
13 |
+
debug: false
|
data/arena/crs_config/UniCRS/unicrs_redial.yaml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kg_dataset: redial
|
2 |
+
model: microsoft/DialoGPT-small
|
3 |
+
rec_model: data/models/unicrs_rec_redial/
|
4 |
+
conv_model: data/models/unicrs_conv_redial/
|
5 |
+
context_max_length: 128
|
6 |
+
entity_max_length: 43
|
7 |
+
tokenizer_path: microsoft/DialoGPT-small
|
8 |
+
text_tokenizer_path: roberta-base
|
9 |
+
resp_max_length: 128
|
10 |
+
text_encoder: roberta-base
|
11 |
+
num_bases: 8
|
12 |
+
seed: 42
|
13 |
+
debug: false
|
data/crb_crs/contractions.json
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"ain't": "are not",
|
3 |
+
"aren't": "are not",
|
4 |
+
"can't": "cannot",
|
5 |
+
"can't've": "cannot have",
|
6 |
+
"'cause": "because",
|
7 |
+
"could've": "could have",
|
8 |
+
"couldn't": "could not",
|
9 |
+
"couldn't've": "could not have",
|
10 |
+
"didn't": "did not",
|
11 |
+
"doesn't": "does not",
|
12 |
+
"don't": "do not",
|
13 |
+
"hadn't": "had not",
|
14 |
+
"hadn't've": "had not have",
|
15 |
+
"hasn't": "has not",
|
16 |
+
"haven't": "have not",
|
17 |
+
"he'd": "he would",
|
18 |
+
"he'd've": "he would have",
|
19 |
+
"he'll": " he will",
|
20 |
+
"he'll've": "he will have",
|
21 |
+
"he's": "he is",
|
22 |
+
"how'd": "how did",
|
23 |
+
"how'd'y": "how do you",
|
24 |
+
"how'll": "how will",
|
25 |
+
"how's": "how is",
|
26 |
+
"i'd": "I would",
|
27 |
+
"i'd've": "I would have",
|
28 |
+
"i'll": "I will",
|
29 |
+
"i'll've": "I will have",
|
30 |
+
"i'm": "I am",
|
31 |
+
"im": "I am",
|
32 |
+
"i've": "I have",
|
33 |
+
"isn't": "is not",
|
34 |
+
"it'd": "it would",
|
35 |
+
"it'd've": "it would have",
|
36 |
+
"it'll": "it will",
|
37 |
+
"it'll've": "it will have",
|
38 |
+
"it's": "it is",
|
39 |
+
"let's": "let us",
|
40 |
+
"ma'am": "madam",
|
41 |
+
"mayn't": "may not",
|
42 |
+
"might've": "might have",
|
43 |
+
"mightn't": "might not",
|
44 |
+
"mightn't've": "might not have",
|
45 |
+
"must've": "must have",
|
46 |
+
"mustn't": "must not",
|
47 |
+
"mustn't've": "must not have",
|
48 |
+
"needn't": "need not",
|
49 |
+
"needn't've": "need not have",
|
50 |
+
"o'clock": "of the clock",
|
51 |
+
"oughtn't": "ought not",
|
52 |
+
"oughtn't've": "ought not have",
|
53 |
+
"shan't": "shall not",
|
54 |
+
"sha'n't": "shall not",
|
55 |
+
"shan't've": "shall not have",
|
56 |
+
"she'd": "she would",
|
57 |
+
"she'd've": "she would have",
|
58 |
+
"she'll": "she will",
|
59 |
+
"she'll've": "she will have",
|
60 |
+
"she's": "she is",
|
61 |
+
"should've": "should have",
|
62 |
+
"shouldn't": "should not",
|
63 |
+
"shouldn't've": "should not have",
|
64 |
+
"so've": "so have",
|
65 |
+
"so's": "so is",
|
66 |
+
"that'd": "that had",
|
67 |
+
"that'd've": "that would have",
|
68 |
+
"that's": "that is",
|
69 |
+
"there'd": "there would",
|
70 |
+
"there'd've": "there would have",
|
71 |
+
"there's": "there is",
|
72 |
+
"they'd": "they would",
|
73 |
+
"they'd've": "they would have",
|
74 |
+
"they'll": "they will",
|
75 |
+
"they'll've": "they will have",
|
76 |
+
"they're": "they are",
|
77 |
+
"they've": "they have",
|
78 |
+
"to've": "to have",
|
79 |
+
"wasn't": "was not",
|
80 |
+
"we'd": "we would",
|
81 |
+
"we'd've": "we would have",
|
82 |
+
"we'll": "we will",
|
83 |
+
"we'll've": "we will have",
|
84 |
+
"we're": "we are",
|
85 |
+
"we've": "we have",
|
86 |
+
"weren't": "were not",
|
87 |
+
"what'll": "what will",
|
88 |
+
"what'll've": "what will have",
|
89 |
+
"what're": "what are",
|
90 |
+
"what's": "what is",
|
91 |
+
"what've": "what have",
|
92 |
+
"when's": "when is",
|
93 |
+
"when've": "when have",
|
94 |
+
"where'd": "where did",
|
95 |
+
"where's": "where is",
|
96 |
+
"where've": "where have",
|
97 |
+
"who'll": "who will",
|
98 |
+
"who'll've": "who will have",
|
99 |
+
"who's": "who is",
|
100 |
+
"who've": "who have",
|
101 |
+
"why's": "why is",
|
102 |
+
"why've": "why have",
|
103 |
+
"will've": "will have",
|
104 |
+
"won't": "will not",
|
105 |
+
"won't've": "will not have",
|
106 |
+
"would've": "would have",
|
107 |
+
"wouldn't": "would not",
|
108 |
+
"wouldn't've": "would not have",
|
109 |
+
"y'all": "you all",
|
110 |
+
"y'all'd": "you all would",
|
111 |
+
"y'all'd've": "you all would have",
|
112 |
+
"y'all're": "you all are",
|
113 |
+
"y'all've": "you all have",
|
114 |
+
"you'd": "you would",
|
115 |
+
"you'd've": "you would have",
|
116 |
+
"you'd've": "you would have",
|
117 |
+
"you'll": "you will",
|
118 |
+
"you'll've": "you will have",
|
119 |
+
"you're": "you are",
|
120 |
+
"you've": "you have"
|
121 |
+
}
|
data/movielens/movies.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/movielens/movies_data.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/movielens/movies_rating_data.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/build_kg.py
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
from collections import defaultdict
|
3 |
+
|
4 |
+
kg = defaultdict(list)
|
5 |
+
entity2id = defaultdict(lambda: len(entity2id))
|
6 |
+
relation2id = defaultdict(lambda: len(relation2id))
|
7 |
+
|
8 |
+
with open('id2info.json', encoding='utf-8') as f:
|
9 |
+
id2info = json.load(f)
|
10 |
+
for info_dict in id2info.values():
|
11 |
+
item = info_dict['name']
|
12 |
+
for attr, value in info_dict.items():
|
13 |
+
if attr == 'name':
|
14 |
+
continue
|
15 |
+
if isinstance(value, list):
|
16 |
+
for v in value:
|
17 |
+
kg[entity2id[item]].append((relation2id[attr], entity2id[v]))
|
18 |
+
else:
|
19 |
+
kg[entity2id[item]].append((relation2id[attr], entity2id[value]))
|
20 |
+
|
21 |
+
print(len(kg), len(entity2id), len(relation2id))
|
22 |
+
|
23 |
+
with open('kg.json', 'w', encoding='utf-8') as f:
|
24 |
+
json.dump(kg, f, ensure_ascii=False)
|
25 |
+
with open('entity2id.json', 'w', encoding='utf-8') as f:
|
26 |
+
json.dump(entity2id, f, ensure_ascii=False)
|
27 |
+
with open('relation2id.json', 'w', encoding='utf-8') as f:
|
28 |
+
json.dump(relation2id, f, ensure_ascii=False)
|
29 |
+
|
30 |
+
item_ids = set()
|
31 |
+
with open('data.jsonl', encoding='utf-8') as f:
|
32 |
+
for line in f:
|
33 |
+
line = json.loads(line)
|
34 |
+
for turn in line['dialog']:
|
35 |
+
for item in turn['item']:
|
36 |
+
if item in entity2id:
|
37 |
+
item_ids.add(entity2id[item])
|
38 |
+
print(len(item_ids))
|
39 |
+
item_ids = sorted(item_ids)
|
40 |
+
with open('item_ids.json', 'w', encoding='utf-8') as f:
|
41 |
+
json.dump(item_ids, f, ensure_ascii=False)
|
data/opendialkg/data.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/dialog_Books.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/dialog_movie.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/entity2id.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/id2info.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/item_ids.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[0, 15, 23, 33, 59, 67, 79, 84, 85, 92, 93, 103, 108, 113, 114, 122, 141, 145, 153, 181, 196, 206, 212, 217, 223, 227, 234, 235, 240, 246, 267, 272, 277, 280, 284, 290, 293, 296, 313, 337, 346, 364, 383, 404, 423, 434, 447, 468, 470, 472, 480, 503, 509, 512, 520, 521, 526, 531, 547, 555, 560, 562, 565, 571, 590, 594, 605, 609, 615, 617, 618, 626, 640, 652, 653, 658, 662, 666, 667, 680, 682, 686, 687, 688, 689, 690, 703, 707, 710, 716, 717, 732, 733, 742, 743, 753, 763, 764, 767, 772, 780, 783, 795, 798, 808, 816, 820, 827, 835, 843, 847, 856, 859, 860, 880, 882, 883, 885, 887, 891, 896, 901, 905, 909, 913, 917, 931, 935, 940, 961, 964, 982, 986, 992, 993, 999, 1002, 1003, 1006, 1021, 1030, 1036, 1043, 1046, 1050, 1055, 1068, 1074, 1077, 1083, 1089, 1099, 1105, 1107, 1111, 1120, 1123, 1128, 1136, 1139, 1144, 1149, 1154, 1155, 1160, 1164, 1169, 1172, 1176, 1180, 1183, 1191, 1196, 1200, 1206, 1209, 1215, 1220, 1222, 1226, 1231, 1236, 1242, 1246, 1253, 1257, 1266, 1277, 1282, 1287, 1293, 1294, 1297, 1299, 1301, 1317, 1324, 1349, 1353, 1356, 1360, 1363, 1372, 1376, 1392, 1412, 1426, 1437, 1450, 1465, 1468, 1473, 1476, 1479, 1484, 1486, 1488, 1494, 1505, 1516, 1534, 1544, 1547, 1554, 1582, 1591, 1605, 1626, 1648, 1671, 1689, 1694, 1697, 1704, 1708, 1717, 1720, 1727, 1737, 1742, 1748, 1752, 1759, 1773, 1783, 1791, 1797, 1804, 1812, 1817, 1825, 1832, 1839, 1847, 1853, 1860, 1867, 1873, 1880, 1887, 1898, 1908, 1918, 1925, 1935, 1943, 1953, 1960, 1968, 1985, 1992, 1997, 2017, 2027, 2036, 2052, 2059, 2065, 2070, 2081, 2088, 2099, 2115, 2123, 2129, 2141, 2148, 2161, 2165, 2169, 2180, 2184, 2201, 2212, 2221, 2226, 2237, 2254, 2266, 2274, 2284, 2288, 2298, 2312, 2323, 2334, 2344, 2354, 2359, 2375, 2401, 2408, 2413, 2415, 2430, 2436, 2444, 2455, 2462, 2479, 2488, 2492, 2503, 2509, 2516, 2523, 2530, 2537, 2552, 2562, 2569, 2578, 2588, 2594, 2605, 2609, 2614, 2622, 2625, 2628, 2632, 2637, 2643, 2647, 2650, 2662, 2663, 2665, 2666, 2674, 2677, 2683, 2690, 2697, 2705, 2712, 2717, 2727, 2734, 2738, 2747, 2759, 2765, 2781, 2782, 2807, 2828, 2833, 2848, 2858, 2863, 2869, 2889, 2911, 2914, 2937, 2938, 2944, 2958, 2963, 2970, 2983, 3002, 3011, 3024, 3030, 3038, 3051, 3063, 3077, 3081, 3094, 3102, 3111, 3126, 3151, 3168, 3174, 3179, 3184, 3185, 3188, 3191, 3199, 3202, 3206, 3209, 3217, 3228, 3242, 3251, 3273, 3282, 3287, 3301, 3307, 3312, 3316, 3336, 3341, 3351, 3361, 3368, 3375, 3381, 3387, 3397, 3403, 3409, 3416, 3430, 3437, 3441, 3449, 3454, 3458, 3462, 3474, 3480, 3484, 3490, 3494, 3497, 3503, 3517, 3524, 3545, 3558, 3564, 3569, 3581, 3588, 3593, 3600, 3605, 3607, 3615, 3622, 3625, 3633, 3650, 3653, 3659, 3663, 3668, 3680, 3683, 3693, 3717, 3720, 3725, 3733, 3740, 3749, 3772, 3782, 3787, 3803, 3808, 3816, 3827, 3840, 3845, 3849, 3857, 3862, 3864, 3873, 3874, 3879, 3885, 3895, 3901, 3905, 3907, 3911, 3920, 3924, 3933, 3949, 3965, 3973, 3994, 3999, 4007, 4014, 4017, 4019, 4024, 4032, 4038, 4046, 4048, 4057, 4060, 4064, 4069, 4071, 4075, 4082, 4090, 4095, 4099, 4102, 4105, 4107, 4117, 4123, 4129, 4138, 4147, 4150, 4151, 4153, 4158, 4170, 4178, 4181, 4184, 4198, 4201, 4206, 4212, 4222, 4230, 4241, 4244, 4252, 4254, 4272, 4274, 4277, 4284, 4288, 4295, 4297, 4304, 4309, 4316, 4320, 4328, 4338, 4340, 4345, 4354, 4360, 4370, 4377, 4382, 4384, 4391, 4394, 4402, 4410, 4420, 4431, 4442, 4452, 4457, 4478, 4486, 4501, 4510, 4513, 4518, 4533, 4544, 4557, 4560, 4564, 4571, 4576, 4590, 4596, 4608, 4614, 4625, 4637, 4643, 4653, 4658, 4664, 4668, 4677, 4686, 4698, 4700, 4703, 4707, 4713, 4716, 4721, 4733, 4739, 4745, 4749, 4761, 4768, 4771, 4777, 4788, 4800, 4807, 4810, 4826, 4830, 4832, 4851, 4859, 4867, 4881, 4887, 4894, 4897, 4899, 4904, 4908, 4911, 4930, 4940, 4949, 4954, 4962, 4966, 4971, 4983, 4986, 4988, 4992, 4996, 5007, 5012, 5017, 5021, 5027, 5035, 5039, 5048, 5051, 5054, 5055, 5063, 5066, 5074, 5083, 5087, 5100, 5109, 5113, 5119, 5123, 5129, 5133, 5139, 5142, 5149, 5152, 5158, 5164, 5168, 5173, 5179, 5187, 5210, 5213, 5220, 5232, 5255, 5260, 5267, 5273, 5277, 5287, 5292, 5302, 5305, 5310, 5312, 5319, 5326, 5338, 5342, 5348, 5358, 5365, 5374, 5380, 5390, 5394, 5396, 5399, 5402, 5413, 5421, 5426, 5430, 5437, 5443, 5445, 5449, 5459, 5468, 5475, 5480, 5485, 5489, 5490, 5496, 5501, 5505, 5510, 5513, 5517, 5520, 5523, 5528, 5535, 5542, 5546, 5551, 5558, 5561, 5566, 5568, 5571, 5576, 5583, 5585, 5589, 5593, 5598, 5601, 5603, 5610, 5615, 5620, 5626, 5630, 5631, 5635, 5638, 5641, 5644, 5647, 5651, 5654, 5657, 5659, 5663, 5667, 5674, 5686, 5689, 5694, 5700, 5702, 5709, 5712, 5716, 5731, 5736, 5741, 5745, 5747, 5752, 5763, 5765, 5770, 5776, 5779, 5785, 5789, 5791, 5795, 5796, 5809, 5812, 5815, 5819, 5821, 5827, 5831, 5834, 5840, 5844, 5852, 5859, 5864, 5866, 5873, 5877, 5878, 5886, 5893, 5898, 5902, 5908, 5914, 5918, 5924, 5929, 5934, 5936, 5940, 5945, 5947, 5949, 5953, 5955, 5961, 5967, 5975, 5977, 5980, 5985, 5988, 5992, 5995, 5996, 6004, 6008, 6010, 6019, 6022, 6023, 6026, 6034, 6038, 6047, 6053, 6069, 6071, 6078, 6083, 6088, 6093, 6097, 6102, 6105, 6107, 6109, 6117, 6121, 6132, 6139, 6143, 6145, 6152, 6155, 6156, 6162, 6164, 6173, 6174, 6185, 6189, 6192, 6199, 6203, 6208, 6209, 6215, 6220, 6228, 6236, 6242, 6246, 6248, 6252, 6254, 6257, 6263, 6266, 6270, 6273, 6275, 6277, 6284, 6299, 6306, 6311, 6314, 6317, 6323, 6325, 6329, 6332, 6341, 6342, 6348, 6352, 6353, 6359, 6361, 6367, 6371, 6383, 6388, 6392, 6394, 6399, 6401, 6418, 6423, 6428, 6430, 6434, 6437, 6445, 6449, 6452, 6459, 6464, 6466, 6470, 6472, 6474, 6484, 6487, 6492, 6500, 6505, 6508, 6511, 6519, 6523, 6525, 6528, 6533, 6536, 6538, 6541, 6546, 6549, 6552, 6566, 6571, 6578, 6592, 6596, 6602, 6608, 6614, 6617, 6619, 6622, 6628, 6635, 6639, 6647, 6649, 6655, 6661, 6666, 6672, 6679, 6683, 6687, 6693, 6700, 6707, 6713, 6715, 6719, 6724, 6733, 6742, 6748, 6750, 6752, 6760, 6764, 6765, 6769, 6771, 6778, 6782, 6784, 6792, 6798, 6801, 6804, 6805, 6809, 6812, 6817, 6822, 6823, 6825, 6829, 6833, 6841, 6849, 6856, 6859, 6865, 6875, 6880, 6892, 6897, 6900, 6907, 6911, 6914, 6918, 6920, 6922, 6927, 6933, 6955, 6958, 6966, 6968, 6971, 6973, 6975, 6977, 6980, 6984, 6993, 6998, 7005, 7012, 7017, 7022, 7031, 7036, 7039, 7047, 7052, 7058, 7063, 7067, 7076, 7079, 7081, 7091, 7095, 7101, 7103, 7106, 7109, 7113, 7117, 7123, 7126, 7130, 7134, 7138, 7143, 7147, 7150, 7153, 7158, 7162, 7166, 7175, 7178, 7180, 7186, 7191, 7199, 7201, 7206, 7213, 7214, 7218, 7223, 7227, 7230, 7234, 7241, 7246, 7254, 7262, 7274, 7279, 7284, 7288, 7293, 7297, 7301, 7311, 7314, 7324, 7327, 7330, 7331, 7335, 7338, 7341, 7347, 7359, 7364, 7366, 7372, 7386, 7390, 7393, 7395, 7403, 7405, 7409, 7412, 7416, 7421, 7424, 7430, 7442, 7456, 7459, 7467, 7475, 7482, 7485, 7488, 7490, 7501, 7502, 7506, 7522, 7530, 7532, 7536, 7541, 7546, 7551, 7554, 7580, 7586, 7591, 7595, 7602, 7606, 7608, 7613, 7614, 7620, 7622, 7624, 7632, 7636, 7641, 7645, 7649, 7656, 7659, 7663, 7664, 7669, 7673, 7681, 7683, 7686, 7706, 7710, 7714, 7716, 7719, 7729, 7731, 7733, 7736, 7740, 7743, 7747, 7749, 7754, 7756, 7761, 7764, 7766, 7767, 7774, 7778, 7785, 7788, 7796, 7799, 7809, 7811, 7816, 7822, 7825, 7830, 7835, 7838, 7839, 7840, 7841, 7847, 7850, 7851, 7855, 7866, 7868, 7872, 7875, 7881, 7882, 7884, 7886, 7892, 7894, 7897, 7905, 7907, 7910, 7913, 7916, 7920, 7927, 7929, 7935, 7939, 7942, 7947, 7952, 7955, 7958, 7960, 7965, 7970, 7973, 7976, 7985, 7991, 7995, 8006, 8011, 8015, 8019, 8028, 8032, 8040, 8043, 8047, 8050, 8054, 8058, 8062, 8065, 8074, 8078, 8084, 8086, 8090, 8092, 8094, 8096, 8100, 8105, 8106, 8108, 8112, 8113, 8117, 8120, 8123, 8126, 8127, 8130, 8137, 8145, 8148, 8149, 8151, 8155, 8157, 8160, 8163, 8166, 8169, 8171, 8172, 8177, 8180, 8181, 8183, 8184, 8186, 8190, 8191, 8196, 8199, 8200, 8203, 8207, 8210, 8212, 8221, 8222, 8226, 8229, 8235, 8241, 8246, 8248, 8252, 8257, 8263, 8267, 8271, 8275, 8278, 8281, 8286, 8288, 8292, 8293, 8298, 8302, 8305, 8310, 8311, 8316, 8329, 8332, 8337, 8339, 8340, 8346, 8348, 8349, 8355, 8358, 8364, 8369, 8373, 8376, 8380, 8387, 8395, 8402, 8403, 8416, 8425, 8427, 8429, 8432, 8435, 8439, 8450, 8452, 8455, 8467, 8469, 8472, 8481, 8482, 8485, 8488, 8495, 8499, 8502, 8506, 8507, 8509, 8515, 8517, 8522, 8526, 8533, 8535, 8537, 8542, 8545, 8551, 8555, 8557, 8559, 8564, 8574, 8576, 8583, 8586, 8592, 8598, 8600, 8604, 8606, 8607, 8608, 8613, 8614, 8617, 8623, 8630, 8633, 8635, 8641, 8645, 8648, 8651, 8653, 8655, 8663, 8665, 8667, 8669, 8670, 8673, 8675, 8682, 8684, 8685, 8687, 8693, 8696, 8699, 8701, 8702, 8705, 8709, 8711, 8712, 8713, 8714, 8721, 8722, 8723, 8725, 8727, 8728, 8729, 8732, 8737, 8739, 8741, 8743, 8747, 8749, 8750, 8752, 8756, 8757, 8760, 8763, 8764, 8768, 8770, 8775, 8776, 8783, 8786, 8787, 8788, 8789, 8790, 8791, 8793, 8798, 8802, 8804, 8807, 8809, 8819, 8820, 8821, 8823, 8826, 8828, 8829, 8835, 8836, 8838, 8841, 8843, 8844, 8847, 8848, 8851, 8852, 8854, 8859, 8866, 8871, 8872, 8891, 8895, 8899, 8902, 8904, 8909, 8913, 8915, 8923, 8926, 8927, 8929, 8930, 8932, 8933, 8935, 8938, 8945, 8947, 8949, 8953, 8955, 8960, 8961, 8966, 8967, 8968, 8972, 8974, 8976, 8978, 8979, 8986, 8991, 8994, 8995, 8998, 9000, 9003, 9005, 9007, 9010, 9012, 9020, 9023, 9026, 9029, 9031, 9035, 9036, 9045, 9047, 9050, 9052, 9057, 9061, 9069, 9075, 9076, 9078, 9082, 9084, 9087, 9090, 9093, 9096, 9097, 9099, 9100, 9103, 9107, 9111, 9112, 9114, 9119, 9126, 9129, 9134, 9136, 9138, 9139, 9140, 9141, 9147, 9149, 9150, 9152, 9157, 9158, 9159, 9161, 9164, 9168, 9169, 9170, 9174, 9176, 9177, 9179, 9184, 9186, 9188, 9189, 9190, 9192, 9194, 9197, 9198, 9200, 9202, 9206, 9210, 9211, 9212, 9213, 9215, 9220, 9222, 9226, 9227, 9228, 9230, 9233, 9235, 9237, 9238, 9239, 9240, 9242, 9244, 9248, 9249, 9250, 9255, 9258, 9259, 9263, 9265, 9266, 9269, 9270, 9272, 9274, 9275, 9276, 9277, 9278, 9279, 9280, 9282, 9283, 9284, 9285, 9286, 9287, 9289, 9292, 9294, 9296, 9298, 9299, 9300, 9303, 9305, 9307, 9310, 9311, 9315, 9317, 9318, 9319, 9322, 9324, 9326, 9327, 9329, 9330, 9332, 9334, 9335, 9339, 9340, 9341, 9342, 9346, 9347, 9348, 9349, 9350, 9352, 9354, 9355, 9356, 9357, 9358, 9361, 9362, 9363, 9365, 9366, 9367, 9368, 9370, 9372, 9374, 9375, 9377, 9378, 9379, 9381, 9382, 9383, 9385, 9386, 9387, 9388, 9391, 9393, 9394, 9395, 9397, 9399, 9400, 9401, 9402, 9403, 9404, 9405, 9406, 9409, 9410, 9411, 9412, 9413, 9416, 9418, 9419, 9422, 9426, 9427, 9428, 9430, 9433, 9434, 9436, 9437, 9441, 9445, 9447, 9448, 9452, 9456, 9457, 9459, 9463, 9467, 9469, 9480, 9482, 9483, 9486, 9487, 9490, 9493, 9495, 9497, 9499, 9504, 9506, 9507, 9513, 9519, 9523, 9527, 9528, 9530, 9544, 9546, 9548, 9549, 9554, 9555, 9563, 9566, 9569, 9570, 9577, 9579, 9581, 9582, 9586, 9591, 9592, 9595, 9599, 9602, 9603, 9607, 9614, 9615, 9618, 9621, 9630, 9631, 9641, 9643, 9644, 9645, 9646, 9648, 9649, 9650, 9652, 9653, 9661, 9663, 9668, 9670, 9674, 9676, 9679, 9681, 9687, 9689, 9694, 9696, 9700, 9704, 9706, 9709, 9712, 9717, 9720, 9721, 9723, 9729, 9732, 9736, 9739, 9741, 9743, 9770, 9771, 9772, 9779, 9780, 9785, 9787, 9789, 9792, 9795, 9796, 9799, 9800, 9803, 9806, 9811, 9814, 9817, 9819, 9821, 9824, 9826, 9827, 9829, 9831, 9832, 9834, 9837, 9838, 9839, 9841, 9842, 9845, 9849, 9851, 9853, 9855, 9856, 9857, 9859, 9866, 9867, 9868, 9869, 9874, 9876, 9882, 9884, 9886, 9887, 9889, 9890, 9893, 9896, 9897, 9899, 9908, 9913, 9915, 9924, 9931, 9932, 9934, 9936, 9937, 9938, 9941, 9945, 9947, 9949, 9954, 9956, 9959, 9961, 9962, 9965, 9967, 9968, 9969, 9974, 9976, 9980, 9986, 9987, 9991, 9992, 10000, 10002, 10004, 10008, 10009, 10014, 10016, 10018, 10020, 10021, 10023, 10025, 10027, 10029, 10031, 10032, 10036, 10038, 10040, 10042, 10044, 10048, 10050, 10052, 10053, 10057, 10059, 10063, 10064, 10067, 10072, 10073, 10077, 10098, 10101, 10107, 10110, 10117, 10121, 10122, 10126, 10129, 10133, 10138, 10139, 10140, 10141, 10147, 10150, 10153, 10156, 10158, 10160, 10163, 10164, 10166, 10167, 10168, 10170, 10172, 10173, 10181, 10182, 10188, 10192, 10194, 10195, 10197, 10199, 10207, 10210, 10217, 10219, 10222, 10229, 10230, 10235, 10239, 10243, 10244, 10247, 10249, 10251, 10252, 10254, 10255, 10258, 10262, 10264, 10269, 10271, 10275, 10280, 10282, 10284, 10285, 10288, 10290, 10291, 10298, 10300, 10305, 10308, 10312, 10313, 10316, 10317, 10320, 10321, 10322, 10324, 10325, 10328, 10330, 10332, 10334, 10336, 10337, 10339, 10342, 10344, 10346, 10347, 10350, 10351, 10352, 10353, 10354, 10356, 10357, 10358, 10362, 10364, 10367, 10368, 10369, 10370, 10371, 10372, 10373, 10377, 10378, 10380, 10384, 10386, 10388, 10389, 10391, 10396, 10398, 10399, 10403, 10404, 10405, 10406, 10407, 10409, 10412, 10414, 10415, 10416, 10417, 10420, 10423, 10424, 10425, 10427, 10428, 10429, 10430, 10432, 10433, 10434, 10435, 10437, 10438, 10442, 10443, 10444, 10445, 10446, 10447, 10448, 10449, 10452, 10453, 10454, 10456, 10457, 10458, 10460, 10463, 10465, 10466, 10469, 10470, 10471, 10472, 10473, 10474, 10475, 10476, 10477, 10478, 10480, 10481, 10483, 10484, 10486, 10487, 10488, 10489, 10490, 10492, 10493, 10494, 10495, 10496, 10498, 10499, 10500, 10501, 10503, 10504, 10510, 10514, 10518, 10520, 10521, 10529, 10531, 10533, 10534, 10537, 10541, 10545, 10547, 10550, 10554, 10557, 10558, 10560, 10563, 10566, 10570, 10571, 10574, 10576, 10578, 10584, 10587, 10589, 10591, 10593, 10596, 10601, 10602, 10606, 10608, 10609, 10612, 10616, 10619, 10621, 10629, 10630, 10636, 10642, 10644, 10646, 10648, 10654, 10659, 10660, 10662, 10664, 10666, 10677, 10681, 10696, 10701, 10704, 10713, 10715, 10720, 10722, 10724, 10727, 10731, 10734, 10737, 10739, 10742, 10746, 10750, 10754, 10757, 10758, 10761, 10764, 10765, 10766, 10769, 10771, 10774, 10776, 10777, 10778, 10782, 10785, 10788, 10790, 10792, 10795, 10798, 10801, 10802, 10803, 10807, 10813, 10816, 10817, 10819, 10827, 10831, 10832, 10835, 10837, 10839, 10841, 10844, 10846, 10847, 10848, 10851, 10852, 10854, 10855, 10857, 10862, 10866, 10877, 10881, 10882, 10884, 10886, 10887, 10888, 10893, 10897, 10898, 10901, 10902, 10903, 10907, 10910, 10913, 10916, 10917, 10921, 10922, 10923, 10926, 10928, 10931, 10938, 10941, 10944, 10947, 10951, 10967, 10969, 10970, 10974, 10977, 10979, 10982, 10985, 10987, 10990, 10998, 11000, 11003, 11004, 11010, 11013, 11017, 11019, 11023, 11024, 11025, 11027, 11031, 11032, 11034, 11035, 11039, 11041, 11043, 11044, 11048, 11052, 11054, 11061, 11070, 11073, 11076, 11079, 11080, 11081, 11082, 11086, 11087, 11088, 11089, 11095, 11096, 11098, 11100, 11103, 11104, 11107, 11110, 11113, 11115, 11117, 11120, 11124, 11126, 11128, 11132, 11134, 11140, 11141, 11143, 11144, 11150, 11153, 11156, 11162, 11164, 11167, 11171, 11173, 11179, 11185, 11188, 11189, 11192, 11197, 11198, 11199, 11202, 11207, 11208, 11211, 11213, 11215, 11220, 11221, 11223, 11226, 11229, 11231, 11233, 11235, 11239, 11244, 11247, 11250, 11253, 11256, 11257, 11258, 11260, 11266, 11268, 11270, 11272, 11273, 11277, 11279, 11282, 11286, 11289, 11291, 11293, 11294, 11297, 11299, 11301, 11306, 11308, 11312, 11313, 11314, 11315, 11317, 11319, 11322, 11323, 11324, 11326, 11327, 11328, 11329, 11331, 11335, 11336, 11337, 11341, 11342, 11344, 11346, 11349, 11351, 11352, 11358, 11359, 11360, 11362, 11363, 11364, 11366, 11367, 11372, 11373, 11374, 11376, 11377, 11378, 11380, 11381, 11384, 11385, 11388, 11391, 11394, 11395, 11397, 11398, 11400, 11402, 11404, 11405, 11406, 11409, 11410, 11411, 11412, 11413, 11416, 11417, 11418, 11420, 11422, 11423, 11425, 11427, 11428, 11429, 11430, 11431, 11432, 11435, 11438, 11439, 11440, 11442, 11443, 11445, 11449, 11452, 11454, 11455, 11456, 11457, 11459, 11460, 11461, 11466, 11467, 11468, 11469, 11470, 11471, 11472, 11473, 11475, 11478, 11480, 11481, 11483, 11485, 11487, 11488, 11491, 11492, 11493, 11494, 11495, 11497, 11498, 11499, 11500, 11501, 11503, 11504, 11506, 11507, 11508, 11509, 11510, 11511, 11515, 11516, 11517, 11520, 11521, 11524, 11525, 11527, 11528, 11531, 11532, 11534, 11536, 11538, 11539, 11541, 11543, 11544, 11545, 11546, 11547, 11548, 11549, 11550, 11551, 11552, 11553, 11555, 11556, 11558, 11559, 11561, 11562, 11564, 11565, 11567, 11568, 11569, 11571, 11572, 11574, 11576, 11577, 11578, 11580, 11582, 11583, 11584, 11585, 11587, 11588, 11589, 11590, 11592, 11593, 11596, 11598, 11602, 11605, 11606, 11608, 11610, 11613, 11616, 11620, 11624, 11625, 11627, 11630, 11632, 11637, 11638, 11639, 11643, 11648, 11649, 11651, 11653, 11663, 11677, 11681, 11683, 11685, 11688, 11689, 11690, 11692, 11694, 11695, 11696, 11699, 11713, 11715, 11717, 11719, 11720, 11723, 11725, 11727, 11732, 11733, 11737, 11738, 11741, 11743, 11744, 11746, 11751, 11752, 11755, 11756, 11758, 11759, 11760, 11763, 11764, 11765, 11767, 11768, 11769, 11770, 11772, 11774, 11778, 11780, 11783, 11788, 11792, 11793, 11794, 11798, 11801, 11802, 11839, 11841, 11848, 11850, 11851, 11852, 11859, 11865, 11867, 11869, 11871, 11873, 11875, 11879, 11883, 11885, 11886, 11887, 11888, 11889, 11890, 11893, 11894, 11895, 11898, 11902, 11903, 11912, 11913, 11914, 11921, 11922, 11924, 11926, 11927, 11928, 11929, 11938, 11940, 11941, 11943, 11951, 11952, 11956, 11958, 11960, 11961, 11962, 11963, 11964, 11966, 11968, 11969, 11971, 11972, 11973, 11974, 11975, 11977, 11979, 11982, 11983, 11984, 11985, 11986, 11987, 11988, 11990, 11992, 11994, 11996, 11999, 12005, 12008, 12010, 12014, 12017, 12019, 12021, 12022, 12025, 12026, 12029, 12030, 12050, 12052, 12055, 12056, 12060, 12061, 12062, 12064, 12067, 12070, 12072, 12075, 12077, 12081, 12087, 12089, 12091, 12092, 12093, 12095, 12098, 12100, 12101, 12102, 12105, 12108, 12109, 12112, 12113, 12114, 12115, 12116, 12120, 12121, 12125, 12128, 12129, 12130, 12131, 12133, 12135, 12140, 12141, 12142, 12143, 12144, 12145, 12146, 12147, 12149, 12150, 12155, 12156, 12157, 12161, 12163, 12164, 12167, 12168, 12170, 12172, 12175, 12177, 12178, 12179, 12180, 12181, 12183, 12185, 12186, 12188, 12190, 12191, 12192, 12198, 12200, 12201, 12204, 12205, 12207, 12208, 12209, 12210, 12211, 12212, 12213, 12218, 12219, 12222, 12223, 12224, 12227, 12228, 12229, 12231, 12233, 12234, 12240, 12241, 12242, 12243, 12244, 12249, 12250, 12251, 12254, 12257, 12258, 12259, 12261, 12262, 12263, 12264, 12268, 12269, 12272, 12275, 12276, 12277, 12282, 12283, 12285, 12286, 12288, 12289, 12294, 12296, 12299, 12300, 12302, 12303, 12305, 12310, 12314, 12317, 12318, 12320, 12322, 12323, 12324, 12325, 12326, 12327, 12329, 12331, 12333, 12334, 12335, 12337, 12338, 12339, 12341, 12343, 12344, 12345, 12347, 12348, 12349, 12351, 12352, 12354, 12358, 12359, 12361, 12362, 12364, 12365, 12366, 12369, 12372, 12373, 12374, 12375, 12378, 12379, 12382, 12386, 12392, 12393, 12395, 12396, 12397, 12400, 12401, 12404, 12407, 12410, 12411, 12413, 12415, 12420, 12423, 12426, 12427, 12431, 12432, 12434, 12436, 12438, 12439, 12444, 12445, 12446, 12450, 12453, 12455, 12456, 12457, 12458]
|
data/opendialkg/kg.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg/relation2id.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"year": 0, "actor": 1, "director": 2, "genre": 3, "language": 4, "writer": 5}
|
data/opendialkg/split.py
ADDED
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import random
|
3 |
+
from copy import copy
|
4 |
+
from tqdm import tqdm
|
5 |
+
|
6 |
+
|
7 |
+
def process_data(data_file_path):
|
8 |
+
global dialog_id
|
9 |
+
|
10 |
+
dialog_list = []
|
11 |
+
data_list = []
|
12 |
+
with open(data_file_path, encoding='utf-8') as f:
|
13 |
+
for line in tqdm(f):
|
14 |
+
line = json.loads(line)
|
15 |
+
context_text_list = []
|
16 |
+
context_text_template_list = []
|
17 |
+
context_entity_list = []
|
18 |
+
context_item_list = []
|
19 |
+
turn_id = 0
|
20 |
+
|
21 |
+
dialog = {'dialog_id': dialog_id, 'dialog': []}
|
22 |
+
|
23 |
+
for turn in line:
|
24 |
+
turn['turn_id'] = turn_id
|
25 |
+
dialog['dialog'].append(turn)
|
26 |
+
|
27 |
+
text = turn['text']
|
28 |
+
text_template = turn['text_template']
|
29 |
+
role = turn['role']
|
30 |
+
# item = [title2id[title] for title in turn['item']]
|
31 |
+
item = turn['item']
|
32 |
+
entity = turn['entity']
|
33 |
+
|
34 |
+
if role == 'assistant':
|
35 |
+
flag = True
|
36 |
+
if len(context_text_list) == 0:
|
37 |
+
context_text_list.append('')
|
38 |
+
turn_id += 1
|
39 |
+
flag = False
|
40 |
+
|
41 |
+
if len(item) > 0 and flag is True:
|
42 |
+
data = {
|
43 |
+
'dialog_id': dialog_id,
|
44 |
+
'turn_id': turn_id,
|
45 |
+
'context': copy(context_text_list),
|
46 |
+
'context_template': copy(context_text_template_list),
|
47 |
+
'context_entity': copy(context_entity_list),
|
48 |
+
'context_item': copy(context_item_list),
|
49 |
+
'resp': text,
|
50 |
+
'item': item
|
51 |
+
}
|
52 |
+
data_list.append(data)
|
53 |
+
# out_file.write(json.dumps(data, ensure_ascii=False) + '\n')
|
54 |
+
|
55 |
+
context_text_list.append(text)
|
56 |
+
context_text_template_list.append(text_template)
|
57 |
+
context_entity_list.extend(entity)
|
58 |
+
context_item_list.extend(item)
|
59 |
+
turn_id += 1
|
60 |
+
|
61 |
+
dialog_id += 1
|
62 |
+
dialog_list.append(dialog)
|
63 |
+
|
64 |
+
return data_list, dialog_list
|
65 |
+
|
66 |
+
|
67 |
+
if __name__ == '__main__':
|
68 |
+
dialog_id = 0
|
69 |
+
|
70 |
+
random.seed(42)
|
71 |
+
|
72 |
+
with open('id2info.json', encoding='utf-8') as f:
|
73 |
+
id2info = json.load(f)
|
74 |
+
with open('title2id.json', encoding='utf-8') as f:
|
75 |
+
title2id = json.load(f)
|
76 |
+
|
77 |
+
data_file_path = 'dialog_movie.jsonl'
|
78 |
+
movie_data_list, movie_dialog_list = process_data(data_file_path)
|
79 |
+
|
80 |
+
data_file_path = 'dialog_Books.jsonl'
|
81 |
+
book_data_list, book_dialog_list = process_data(data_file_path)
|
82 |
+
|
83 |
+
all_dialog_list = movie_dialog_list + book_dialog_list
|
84 |
+
with open('data.jsonl', 'w', encoding='utf-8') as f:
|
85 |
+
for dialog in all_dialog_list:
|
86 |
+
f.write(json.dumps(dialog, ensure_ascii=False) + '\n')
|
87 |
+
|
88 |
+
all_data_list = movie_data_list + book_data_list
|
89 |
+
test_data_list = random.sample(all_data_list, int(len(all_data_list) * 0.15))
|
90 |
+
test_data_list = sorted(test_data_list, key=lambda x: x['dialog_id'])
|
91 |
+
|
92 |
+
print(len(test_data_list))
|
93 |
+
|
94 |
+
test_data_dialog_id_set = {f"{data['dialog_id']}_{data['turn_id']}" for data in test_data_list}
|
95 |
+
rest_data_list = []
|
96 |
+
for data in all_data_list:
|
97 |
+
if f"{data['dialog_id']}_{data['turn_id']}" not in test_data_dialog_id_set:
|
98 |
+
rest_data_list.append(data)
|
99 |
+
assert len(rest_data_list) + len(test_data_list) == len(all_data_list)
|
100 |
+
|
101 |
+
random.shuffle(rest_data_list)
|
102 |
+
train_data_list, valid_data_list = rest_data_list[int(0.15 * len(all_data_list)):], rest_data_list[:int(0.15 * len(all_data_list))]
|
103 |
+
assert len(valid_data_list) == len(test_data_list)
|
104 |
+
|
105 |
+
train_data_id_list = [f"{data['dialog_id']}_{data['turn_id']}" for data in train_data_list]
|
106 |
+
with open('train_data_id.json', 'w', encoding='utf-8') as f:
|
107 |
+
json.dump(train_data_id_list, f, ensure_ascii=False)
|
108 |
+
|
109 |
+
valid_data_id_list = [f"{data['dialog_id']}_{data['turn_id']}" for data in valid_data_list]
|
110 |
+
with open('valid_data_id.json', 'w', encoding='utf-8') as f:
|
111 |
+
json.dump(valid_data_id_list, f, ensure_ascii=False)
|
112 |
+
|
113 |
+
test_data_id_list = [f"{data['dialog_id']}_{data['turn_id']}" for data in test_data_list]
|
114 |
+
with open('test_data_id.json', 'w', encoding='utf-8') as f:
|
115 |
+
json.dump(test_data_id_list, f, ensure_ascii=False)
|
116 |
+
|
117 |
+
# with open('train_data.jsonl', 'w', encoding='utf-8') as f:
|
118 |
+
# for data in train_data_list:
|
119 |
+
# f.write(json.dumps(data, ensure_ascii=False) + '\n')
|
120 |
+
#
|
121 |
+
# with open('valid_data.jsonl', 'w', encoding='utf-8') as f:
|
122 |
+
# for data in valid_data_list:
|
123 |
+
# f.write(json.dumps(data, ensure_ascii=False) + '\n')
|
124 |
+
#
|
125 |
+
# with open('test_data.jsonl', 'w', encoding='utf-8') as f:
|
126 |
+
# for data in test_data_list:
|
127 |
+
# f.write(json.dumps(data, ensure_ascii=False) + '\n')
|
128 |
+
|
129 |
+
# cnt = 0
|
130 |
+
# with open('../../model/chat/data/opendialkg/test_data_processed.jsonl', encoding='utf-8') as f:
|
131 |
+
# for line in f:
|
132 |
+
# data = json.loads(line)
|
133 |
+
# data_id = f"{data['dialog_id']}_{data['turn_id']}"
|
134 |
+
# if data_id not in test_data_dialog_id_set:
|
135 |
+
# print(data_id)
|
136 |
+
# cnt += 1
|
137 |
+
# assert cnt == len(test_data_list)
|
data/opendialkg/test_data_id.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
["3_1", "4_1", "11_3", "14_1", "19_1", "20_7", "31_1", "32_1", "37_1", "39_1", "44_1", "54_1", "56_1", "58_1", "65_3", "70_11", "70_1", "76_1", "79_3", "92_1", "102_1", "103_1", "103_3", "106_1", "110_1", "125_1", "131_1", "134_1", "135_1", "140_1", "145_1", "146_5", "147_3", "149_5", "154_5", "155_3", "159_1", "164_3", "165_3", "168_3", "169_5", "196_3", "207_5", "209_1", "215_5", "216_5", "218_1", "223_3", "228_1", "237_1", "241_1", "243_1", "248_3", "250_7", "252_1", "257_1", "274_7", "275_1", "277_5", "278_5", "280_5", "284_1", "294_1", "296_5", "303_5", "308_5", "310_5", "314_1", "317_3", "318_1", "319_3", "327_5", "330_1", "337_1", "344_1", "346_1", "348_1", "354_1", "359_3", "367_3", "370_1", "372_1", "372_5", "373_1", "374_1", "375_5", "377_3", "377_1", "380_1", "383_5", "383_3", "385_3", "389_3", "391_1", "393_3", "405_3", "406_1", "410_1", "417_1", "425_5", "429_5", "431_3", "433_1", "439_7", "439_3", "451_1", "456_1", "458_7", "463_1", "466_1", "488_3", "496_3", "499_1", "500_3", "501_1", "502_1", "503_3", "507_1", "522_1", "523_1", "526_5", "528_5", "540_3", "543_1", "546_3", "552_5", "554_5", "556_1", "557_7", "557_3", "561_1", "571_1", "575_3", "575_7", "577_1", "582_1", "583_1", "587_3", "588_1", "594_9", "595_1", "597_3", "610_1", "613_3", "613_1", "616_5", "617_1", "618_1", "635_5", "636_3", "639_5", "641_3", "643_1", "657_1", "659_1", "661_5", "664_5", "665_5", "670_5", "670_1", "670_7", "673_1", "686_3", "687_1", "693_3", "694_1", "699_1", "702_1", "709_1", "720_1", "726_5", "731_1", "743_1", "768_1", "769_3", "773_1", "776_7", "783_5", "792_3", "793_5", "794_1", "794_7", "801_3", "803_1", "806_3", "819_1", "821_3", "822_5", "830_3", "830_1", "832_1", "833_3", "844_1", "850_3", "851_1", "857_1", "860_1", "864_1", "868_1", "875_1", "883_3", "896_1", "903_5", "917_1", "927_1", "929_3", "934_3", "943_1", "944_1", "948_1", "956_3", "957_1", "967_3", "973_1", "976_1", "980_1", "1001_1", "1003_5", "1003_3", "1003_1", "1006_1", "1007_3", "1008_5", "1010_1", "1011_5", "1014_11", "1021_1", "1022_3", "1033_5", "1038_5", "1040_3", "1041_1", "1042_3", "1043_5", "1043_3", "1051_3", "1066_1", "1072_3", "1086_3", "1098_1", "1101_3", "1102_3", "1105_5", "1108_1", "1111_1", "1113_1", "1114_3", "1118_1", "1120_7", "1122_1", "1123_1", "1124_1", "1127_1", "1132_1", "1136_1", "1143_1", "1143_5", "1147_1", "1148_1", "1150_3", "1150_5", "1152_1", "1155_5", "1156_3", "1157_1", "1162_1", "1166_1", "1170_1", "1171_1", "1178_1", "1179_5", "1195_3", "1196_1", "1197_3", "1202_5", "1203_1", "1210_5", "1212_3", "1217_1", "1226_1", "1227_1", "1234_3", "1237_1", "1238_3", "1246_1", "1248_1", "1252_3", "1255_3", "1256_1", "1258_1", "1259_3", "1263_5", "1268_1", "1271_5", "1280_3", "1280_1", "1282_3", "1286_5", "1287_3", "1289_1", "1291_3", "1291_1", "1294_3", "1297_3", "1298_1", "1301_1", "1303_1", "1303_5", "1306_3", "1308_5", "1310_1", "1311_3", "1319_5", "1321_3", "1325_1", "1326_3", "1337_3", "1345_1", "1355_7", "1360_7", "1365_5", "1367_3", "1369_1", "1372_1", "1374_5", "1377_3", "1380_7", "1383_1", "1386_3", "1386_7", "1387_1", "1388_3", "1388_1", "1396_5", "1396_1", "1400_1", "1404_1", "1409_3", "1409_5", "1414_3", "1418_3", "1422_1", "1425_1", "1432_3", "1434_5", "1438_3", "1444_1", "1445_5", "1446_1", "1449_1", "1452_1", "1452_5", "1453_3", "1453_5", "1455_1", "1455_3", "1456_1", "1457_1", "1461_1", "1470_3", "1476_1", "1481_3", "1485_1", "1488_3", "1490_1", "1493_1", "1500_3", "1511_3", "1526_3", "1531_9", "1533_5", "1537_1", "1547_1", "1547_9", "1550_1", "1557_1", "1557_5", "1562_1", "1564_3", "1567_1", "1571_1", "1575_5", "1581_1", "1583_1", "1590_3", "1597_1", "1603_1", "1605_5", "1610_3", "1613_5", "1617_1", "1622_1", "1626_3", "1630_5", "1631_3", "1640_9", "1642_1", "1643_3", "1646_1", "1651_1", "1653_3", "1654_1", "1657_7", "1668_5", "1677_5", "1678_1", "1685_5", "1685_3", "1688_9", "1694_3", "1697_3", "1699_1", "1705_1", "1718_1", "1719_3", "1721_1", "1722_5", "1722_1", "1728_5", "1735_3", "1741_7", "1745_3", "1745_7", "1746_3", "1747_1", "1751_1", "1753_1", "1759_1", "1763_3", "1764_3", "1765_1", "1768_1", "1771_1", "1781_3", "1786_3", "1786_1", "1794_3", "1804_1", "1812_5", "1815_7", "1817_1", "1823_3", "1825_5", "1826_1", "1836_1", "1838_5", "1841_1", "1843_1", "1856_3", "1860_3", "1868_5", "1871_1", "1873_3", "1875_1", "1879_3", "1886_1", "1888_5", "1888_1", "1913_3", "1914_3", "1914_1", "1917_1", "1921_1", "1923_3", "1939_3", "1942_1", "1949_5", "1963_7", "1966_1", "1966_5", "1969_1", "1972_1", "1972_5", "1975_1", "1981_1", "1984_3", "1986_3", "1992_1", "1997_1", "2000_1", "2017_5", "2021_3", "2024_3", "2027_3", "2049_1", "2058_5", "2059_1", "2063_7", "2072_1", "2076_1", "2078_3", "2079_1", "2080_1", "2086_3", "2086_1", "2092_1", "2093_1", "2098_5", "2102_5", "2112_1", "2114_1", "2118_3", "2121_3", "2126_1", "2140_1", "2145_1", "2147_5", "2159_1", "2160_3", "2163_5", "2183_5", "2185_3", "2187_1", "2192_1", "2193_3", "2201_3", "2202_3", "2203_5", "2206_1", "2208_1", "2209_3", "2211_1", "2220_1", "2222_1", "2230_5", "2236_3", "2241_1", "2242_3", "2248_5", "2248_7", "2254_3", "2254_7", "2267_5", "2272_3", "2274_1", "2276_5", "2277_3", "2278_1", "2280_5", "2280_1", "2290_1", "2291_1", "2301_1", "2303_5", "2311_3", "2313_5", "2316_3", "2319_3", "2333_1", "2346_5", "2349_1", "2353_1", "2356_5", "2360_3", "2363_3", "2374_1", "2375_3", "2376_1", "2380_3", "2381_5", "2383_3", "2389_1", "2392_7", "2397_5", "2400_5", "2404_1", "2406_3", "2408_5", "2416_1", "2419_3", "2420_3", "2430_5", "2431_1", "2432_5", "2433_1", "2438_1", "2442_5", "2444_1", "2448_3", "2455_3", "2460_3", "2463_5", "2473_1", "2475_1", "2476_1", "2479_1", "2486_5", "2489_1", "2490_1", "2494_1", "2498_3", "2500_1", "2504_3", "2510_5", "2529_5", "2539_1", "2543_3", "2545_3", "2550_1", "2551_5", "2553_1", "2557_1", "2561_1", "2566_1", "2568_1", "2576_1", "2580_1", "2581_1", "2595_1", "2599_1", "2623_3", "2632_3", "2643_1", "2652_1", "2654_7", "2655_1", "2656_3", "2661_1", "2664_3", "2666_1", "2675_5", "2676_1", "2685_1", "2687_1", "2700_5", "2709_3", "2717_1", "2719_5", "2723_1", "2732_1", "2740_1", "2743_3", "2749_5", "2757_1", "2775_1", "2781_5", "2782_1", "2787_1", "2789_7", "2790_1", "2790_3", "2798_1", "2798_3", "2806_1", "2813_9", "2814_5", "2815_1", "2819_1", "2823_5", "2826_5", "2826_1", "2827_1", "2831_1", "2832_9", "2833_1", "2836_1", "2837_3", "2848_1", "2849_5", "2854_1", "2863_1", "2865_1", "2867_1", "2870_3", "2880_1", "2890_3", "2893_1", "2899_1", "2900_5", "2904_3", "2907_1", "2907_5", "2907_3", "2909_1", "2910_3", "2911_3", "2915_3", "2916_5", "2916_9", "2920_5", "2923_3", "2931_11", "2936_5", "2943_3", "2946_1", "2947_1", "2955_9", "2961_3", "2962_3", "2967_1", "2970_3", "2977_1", "2978_1", "2990_1", "2992_1", "2993_1", "3000_1", "3017_1", "3027_3", "3027_7", "3029_3", "3032_1", "3036_5", "3042_3", "3043_3", "3045_1", "3049_1", "3052_1", "3057_1", "3064_1", "3069_3", "3070_1", "3071_3", "3072_1", "3075_1", "3097_1", "3098_3", "3104_1", "3105_1", "3112_3", "3121_5", "3122_3", "3125_1", "3134_5", "3137_3", "3137_9", "3140_7", "3142_1", "3144_1", "3145_3", "3146_1", "3157_7", "3166_1", "3172_5", "3176_3", "3180_1", "3188_1", "3191_7", "3194_1", "3195_5", "3197_1", "3204_3", "3206_1", "3211_5", "3217_5", "3220_3", "3225_1", "3243_1", "3246_1", "3260_3", "3262_5", "3262_3", "3268_1", "3271_1", "3271_3", "3277_1", "3282_5", "3295_3", "3302_1", "3305_1", "3306_1", "3312_1", "3320_1", "3325_5", "3334_1", "3339_3", "3340_3", "3342_7", "3345_1", "3346_3", "3354_1", "3356_1", "3358_1", "3363_3", "3366_1", "3367_9", "3370_3", "3373_1", "3382_1", "3383_1", "3395_5", "3396_7", "3397_3", "3406_3", "3408_5", "3418_1", "3418_5", "3421_1", "3429_1", "3431_3", "3438_1", "3441_1", "3446_1", "3451_1", "3455_1", "3464_1", "3474_5", "3474_1", "3477_3", "3479_1", "3489_1", "3491_1", "3493_1", "3500_1", "3502_1", "3505_1", "3505_3", "3506_3", "3510_5", "3519_3", "3521_3", "3523_3", "3525_3", "3528_3", "3529_3", "3533_1", "3534_5", "3535_3", "3538_1", "3540_1", "3548_1", "3554_1", "3557_1", "3570_1", "3572_5", "3578_1", "3582_1", "3593_5", "3595_3", "3598_3", "3599_3", "3606_1", "3609_3", "3620_1", "3624_5", "3627_1", "3643_3", "3647_3", "3648_1", "3650_3", "3660_1", "3661_5", "3664_3", "3665_5", "3668_1", "3683_1", "3692_1", "3693_1", "3695_3", "3697_1", "3701_3", "3703_3", "3707_9", "3716_1", "3725_7", "3726_3", "3730_1", "3736_5", "3742_3", "3747_5", "3753_1", "3757_1", "3761_5", "3765_1", "3767_1", "3772_3", "3789_5", "3795_1", "3798_1", "3803_7", "3808_1", "3810_1", "3818_1", "3819_5", "3822_3", "3822_1", "3827_1", "3828_1", "3829_5", "3830_1", "3832_1", "3836_3", "3840_1", "3844_1", "3849_3", "3854_3", "3856_3", "3876_1", "3879_1", "3881_1", "3882_1", "3885_1", "3886_1", "3888_3", "3890_1", "3893_1", "3905_1", "3909_3", "3911_1", "3913_5", "3914_1", "3917_1", "3919_1", "3927_3", "3940_3", "3943_1", "3945_1", "3948_1", "3951_3", "3954_1", "3957_5", "3966_1", "3972_3", "3978_1", "3981_3", "3984_3", "3984_5", "3990_3", "3993_1", "3997_1", "4000_1", "4001_3", "4005_1", "4006_1", "4007_1", "4012_3", "4015_5", "4015_3", "4018_5", "4022_5", "4026_1", "4038_1", "4043_1", "4047_3", "4049_3", "4052_1", "4056_1", "4057_3", "4059_1", "4065_5", "4077_3", "4078_3", "4086_1", "4095_1", "4096_5", "4096_1", "4101_3", "4102_1", "4108_3", "4117_1", "4120_3", "4122_3", "4129_3", "4138_1", "4148_6", "4149_1", "4152_1", "4153_3", "4163_1", "4170_7", "4176_1", "4178_1", "4182_1", "4186_3", "4188_3", "4190_1", "4192_5", "4196_1", "4203_1", "4229_1", "4233_1", "4239_1", "4248_1", "4251_1", "4252_1", "4260_1", "4261_5", "4270_5", "4274_5", "4277_5", "4280_1", "4291_3", "4296_1", "4299_1", "4300_3", "4304_1", "4305_1", "4306_3", "4307_3", "4309_5", "4313_1", "4314_3", "4321_3", "4328_1", "4352_3", "4358_3", "4360_5", "4362_1", "4369_1", "4375_5", "4382_1", "4391_1", "4392_1", "4394_1", "4407_1", "4424_1", "4428_1", "4436_1", "4437_1", "4443_1", "4445_1", "4448_1", "4449_3", "4453_3", "4453_1", "4455_1", "4457_5", "4458_1", "4464_1", "4465_3", "4482_1", "4486_5", "4489_1", "4493_1", "4500_5", "4505_1", "4518_5", "4525_5", "4528_1", "4531_1", "4532_3", "4536_5", "4537_3", "4539_1", "4544_1", "4546_7", "4549_1", "4553_7", "4555_1", "4557_1", "4566_3", "4571_3", "4574_5", "4584_1", "4590_1", "4595_5", "4595_1", "4596_1", "4597_1", "4598_3", "4599_5", "4600_1", "4601_3", "4602_1", "4613_1", "4614_3", "4615_3", "4617_3", "4617_1", "4627_5", "4629_1", "4637_1", "4642_1", "4648_1", "4650_1", "4654_1", "4656_1", "4658_9", "4668_5", "4670_1", "4676_1", "4679_1", "4682_1", "4687_5", "4687_11", "4692_1", "4695_1", "4697_3", "4698_5", "4700_3", "4702_3", "4704_1", "4706_1", "4708_1", "4711_1", "4715_1", "4719_3", "4721_3", "4721_5", "4724_1", "4729_1", "4749_1", "4753_3", "4759_1", "4760_1", "4761_1", "4762_5", "4762_1", "4764_5", "4766_3", "4790_1", "4793_1", "4801_3", "4801_1", "4803_3", "4803_1", "4805_1", "4811_3", "4816_5", "4818_1", "4825_3", "4831_1", "4833_5", "4833_3", "4840_3", "4841_1", "4848_3", "4849_1", "4871_1", "4872_3", "4880_1", "4897_3", "4903_1", "4904_1", "4909_3", "4910_1", "4910_3", "4917_3", "4924_3", "4924_5", "4929_3", "4935_1", "4939_1", "4941_1", "4942_1", "4945_3", "4947_1", "4961_3", "4962_1", "4963_1", "4967_3", "4972_1", "4975_5", "4984_1", "4985_5", "4993_1", "4994_1", "4996_3", "4998_1", "5004_1", "5016_1", "5019_1", "5025_1", "5025_3", "5028_7", "5029_5", "5030_1", "5036_1", "5036_5", "5038_1", "5044_3", "5050_3", "5057_5", "5060_7", "5060_5", "5066_1", "5067_1", "5070_7", "5075_1", "5076_5", "5080_5", "5082_3", "5087_1", "5097_3", "5097_1", "5099_1", "5118_3", "5118_5", "5122_1", "5124_1", "5132_1", "5136_1", "5147_1", "5151_1", "5155_1", "5156_1", "5161_1", "5168_3"]
|
data/opendialkg/train_data_id.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
["1401_1", "1548_3", "4918_1", "3875_3", "313_3", "3308_1", "1864_3", "4324_1", "2459_3", "1328_1", "763_1", "2260_3", "2538_1", "1299_1", "3699_3", "1596_5", "2578_1", "2994_1", "2682_1", "5078_3", "2849_3", "206_3", "3199_1", "3365_1", "2160_1", "4991_1", "962_3", "4199_1", "1892_1", "2190_1", "4343_1", "2702_1", "1949_3", "1744_1", "3343_1", "764_1", "2413_1", "4101_1", "3687_1", "1832_1", "4155_1", "69_1", "1315_3", "5023_1", "1303_3", "3156_3", "1896_1", "3102_1", "4143_3", "1441_5", "647_3", "1128_1", "1074_5", "2244_5", "4744_1", "3212_1", "1904_5", "3122_1", "1667_1", "5007_1", "3549_1", "5141_3", "4880_3", "2560_3", "1819_1", "738_7", "3820_1", "2482_5", "1750_1", "2428_3", "4850_3", "955_5", "5029_3", "4683_1", "2673_1", "370_5", "1612_3", "4898_1", "1083_3", "3890_7", "218_3", "3498_3", "2920_1", "2379_5", "3521_1", "150_1", "245_5", "1338_1", "878_1", "2064_1", "2214_3", "2055_3", "1121_5", "36_3", "1565_1", "3286_1", "4089_1", "4968_1", "2117_1", "3226_3", "2045_1", "2869_1", "27_1", "2707_3", "1353_1", "58_3", "2342_1", "1302_1", "2390_9", "4714_1", "4050_5", "2646_1", "4689_1", "2008_1", "2976_1", "832_5", "4337_1", "3613_1", "4791_3", "2760_1", "5164_3", "1267_1", "4672_1", "589_1", "1127_3", "992_1", "1649_5", "3325_3", "1153_3", "922_1", "2729_5", "3870_1", "535_1", "4564_5", "3861_1", "3048_1", "1890_1", "4186_7", "3022_1", "661_3", "1539_1", "2896_1", "4937_1", "1134_3", "164_1", "4344_1", "5061_3", "2210_3", "3337_1", "4217_1", "2650_5", "1109_1", "2397_3", "5102_1", "1606_3", "2447_3", "805_5", "1233_3", "2433_3", "1991_3", "4131_1", "2206_5", "1648_3", "3486_1", "3409_3", "68_1", "1799_5", "424_3", "2983_3", "90_5", "586_1", "646_1", "856_1", "4500_3", "93_3", "5130_3", "1711_1", "1309_3", "4002_1", "2900_3", "4345_1", "3283_5", "108_5", "1359_1", "2164_1", "4743_1", "78_1", "3380_3", "1807_9", "956_1", "5145_1", "3956_5", "3773_3", "1954_3", "1863_3", "4194_1", "55_1", "1376_3", "5149_3", "4977_1", "2806_3", "3325_1", "1170_3", "4896_1", "4185_3", "2223_1", "2645_5", "1008_7", "2830_1", "1371_3", "1200_3", "1879_1", "1854_5", "3173_3", "3347_1", "1804_3", "1214_1", "4254_1", "3295_5", "2083_5", "3653_1", "1301_3", "1690_3", "4039_1", "2460_1", "4103_1", "4713_1", "1927_1", "3589_5", "3712_1", "2693_5", "4384_1", "3592_3", "292_3", "598_3", "771_3", "5124_5", "4881_3", "4893_1", "4870_3", "3475_5", "1518_1", "2534_3", "695_1", "3770_1", "3183_1", "3203_1", "255_1", "2421_3", "920_1", "437_3", "717_1", "2355_3", "4268_1", "3712_3", "296_3", "3762_1", "299_3", "4043_3", "4959_3", "4159_1", "2606_5", "859_3", "1717_1", "1079_5", "3003_1", "2205_1", "2087_3", "2795_3", "1723_1", "596_1", "1439_3", "1733_1", "305_1", "1662_1", "4052_3", "3739_1", "4029_1", "4766_1", "3546_1", "745_1", "1714_3", "3839_1", "2128_3", "3090_3", "1684_1", "2657_3", "1960_1", "1870_3", "1724_3", "3665_1", "4635_1", "5130_1", "2761_1", "2012_5", "2647_7", "2057_3", "4174_5", "1857_1", "2948_3", "246_3", "2242_1", "4856_1", "2811_7", "4872_1", "2952_3", "1138_3", "1239_1", "2881_3", "625_3", "1484_1", "902_3", "1603_3", "3449_1", "1179_1", "514_3", "672_5", "972_1", "3140_1", "1946_1", "4644_3", "4398_5", "2837_1", "4183_1", "313_5", "472_1", "981_1", "737_1", "3214_3", "193_1", "3589_1", "838_3", "1629_5", "1115_3", "964_1", "253_1", "4707_1", "3781_1", "1538_5", "1959_3", "1936_3", "2687_11", "1020_1", "1739_5", "1928_3", "1129_1", "2386_1", "3556_1", "56_5", "4745_7", "1294_1", "1292_1", "2179_1", "396_3", "1090_1", "2936_3", "22_1", "3518_1", "3370_5", "1852_5", "3749_1", "2057_5", "827_3", "4712_3", "620_7", "425_1", "4805_3", "3890_3", "2639_1", "122_3", "4799_1", "53_3", "4712_5", "1344_3", "1471_7", "4996_1", "3240_1", "3936_1", "3698_3", "4042_1", "752_5", "3196_5", "4911_3", "142_1", "370_3", "2719_1", "1112_1", "2795_1", "1731_1", "1316_1", "2885_1", "447_1", "160_1", "2127_3", "3675_3", "4814_1", "5161_5", "242_1", "3342_9", "2162_3", "3672_1", "1241_7", "955_3", "5116_3", "2959_3", "3264_5", "2177_1", "1834_1", "977_1", "173_1", "458_5", "1341_1", "3941_1", "3553_3", "297_1", "3173_1", "3311_1", "4373_1", "4533_3", "995_3", "5013_9", "4285_1", "4082_1", "4487_7", "1423_5", "1504_3", "1389_5", "2296_1", "3157_3", "655_1", "2633_1", "1425_5", "1528_3", "3759_3", "3636_1", "991_1", "2992_3", "2192_3", "1375_1", "2319_1", "1780_5", "3334_7", "3376_1", "1363_5", "298_1", "2725_1", "2429_1", "15_1", "4868_5", "4294_1", "2293_3", "3898_5", "4244_5", "667_1", "2859_5", "17_3", "473_3", "732_1", "1160_1", "751_3", "2216_5", "3974_1", "812_1", "4513_1", "455_5", "2454_5", "1883_1", "1163_3", "2094_7", "2042_3", "1594_7", "477_5", "3857_1", "2860_1", "3000_3", "2851_1", "4135_3", "1792_1", "141_1", "1242_1", "361_1", "2181_1", "2064_5", "1448_3", "4894_1", "3902_5", "2350_1", "3034_3", "795_1", "4422_1", "869_1", "2768_1", "4063_1", "1990_1", "4879_1", "2357_1", "3674_1", "4216_1", "4249_3", "4267_1", "210_1", "4847_1", "1304_1", "2927_5", "1451_1", "2929_5", "1373_3", "2144_1", "569_1", "1677_1", "59_1", "49_3", "272_1", "1699_5", "4669_3", "3931_1", "2277_5", "1756_5", "4452_5", "1132_3", "2198_5", "1609_1", "1621_7", "616_3", "1004_1", "129_3", "3043_1", "3783_1", "4394_5", "4172_1", "4514_1", "3568_1", "4374_1", "4408_3", "3883_1", "4995_5", "1664_3", "1752_3", "2941_1", "97_5", "150_5", "160_5", "2170_3", "265_1", "2337_5", "1704_1", "2629_1", "3516_3", "1139_3", "401_1", "4066_3", "3385_1", "2507_1", "199_1", "4815_1", "1420_3", "266_1", "3694_7", "3223_3", "790_1", "1869_5", "5012_1", "578_1", "1201_1", "689_1", "4328_3", "2861_3", "1957_3", "932_1", "426_5", "2017_1", "3640_1", "1000_1", "4360_7", "3333_7", "4792_5", "5039_3", "2283_1", "121_3", "2044_3", "1314_1", "2331_3", "1998_1", "3149_1", "968_5", "1393_5", "3862_1", "1646_3", "4668_3", "1628_1", "4674_1", "4165_1", "1715_1", "2285_3", "1607_1", "1402_3", "2805_3", "691_5", "4558_3", "1983_5", "1673_5", "777_1", "3216_1", "4075_5", "3230_3", "2758_3", "3282_1", "4360_3", "2506_1", "4371_1", "3536_1", "4652_3", "2788_5", "4569_5", "4649_5", "1036_5", "4197_1", "4340_1", "4070_1", "643_5", "31_5", "548_3", "2859_1", "1249_7", "855_1", "3690_5", "2001_5", "4456_3", "3797_5", "4783_3", "2875_1", "696_1", "4895_1", "4572_3", "2516_3", "2191_1", "4705_5", "1255_1", "2035_1", "92_3", "259_1", "2078_1", "156_1", "3890_9", "5032_1", "4586_3", "2265_1", "4361_3", "399_1", "2356_1", "742_5", "4098_1", "3078_1", "2138_1", "1945_1", "4535_3", "968_1", "1315_1", "5113_3", "4037_1", "2886_3", "1676_5", "1854_1", "2968_7", "3085_1", "2770_3", "2065_5", "1133_3", "1524_5", "1886_3", "4857_5", "2004_3", "1326_5", "670_9", "3430_3", "2091_1", "4140_3", "429_1", "2432_3", "157_3", "4743_3", "363_3", "4480_5", "888_5", "4522_3", "3168_5", "3166_3", "1919_5", "2882_1", "1559_1", "1323_3", "3189_5", "4827_1", "1153_5", "1519_1", "5060_1", "2690_1", "659_3", "2803_5", "3181_3", "3984_1", "3472_1", "945_5", "2558_3", "3939_3", "3236_5", "4128_1", "3170_3", "296_7", "4149_7", "1535_5", "3792_5", "4916_3", "5086_1", "3673_1", "897_1", "4588_3", "332_1", "1031_9", "2534_1", "4376_1", "1051_1", "1524_3", "1787_3", "786_3", "1065_3", "189_3", "704_3", "4366_3", "1901_3", "3715_3", "4074_5", "4914_1", "4483_1", "1924_3", "3179_1", "3843_1", "1450_3", "1568_1", "3196_1", "2061_5", "4831_3", "85_3", "4084_1", "3504_1", "2532_3", "2730_3", "627_1", "4795_1", "4399_1", "3174_5", "4821_5", "3534_1", "749_1", "4181_1", "4497_1", "4050_3", "4618_3", "1361_3", "3456_1", "4983_1", "3064_3", "953_3", "588_3", "2161_1", "1313_1", "3365_5", "823_1", "1902_3", "4235_3", "13_3", "2310_1", "5039_1", "5043_1", "2748_1", "2092_3", "3882_3", "3942_1", "2966_5", "4417_1", "1828_1", "3031_1", "1836_5", "951_1", "1297_1", "398_1", "3362_1", "4663_1", "4198_1", "326_7", "3404_1", "1349_5", "3129_3", "3646_1", "375_3", "2142_5", "1131_1", "2435_3", "2974_3", "4917_5", "3981_1", "1043_1", "3619_3", "4379_3", "4978_1", "1672_3", "884_5", "4319_5", "3147_5", "3040_5", "2137_1", "2969_3", "2317_1", "3872_3", "848_3", "2604_3", "543_5", "4732_3", "1146_1", "4505_3", "4709_3", "1704_5", "456_3", "4677_3", "4414_3", "2109_1", "1633_3", "1553_3", "3375_1", "3126_3", "564_7", "4966_5", "643_9", "4098_5", "1234_1", "364_5", "1073_1", "1596_3", "348_5", "2949_1", "5014_1", "604_1", "103_5", "2259_1", "182_3", "4653_1", "47_3", "4694_5", "906_1", "4141_3", "3303_5", "2742_1", "5120_1", "5005_1", "4205_1", "4573_5", "4898_5", "4686_3", "2077_3", "1720_3", "3710_1", "4786_1", "761_3", "1624_1", "371_1", "4891_1", "907_5", "229_1", "4982_1", "3399_3", "559_5", "3174_1", "1759_3", "1248_3", "2888_1", "3567_1", "4804_3", "4426_5", "5135_1", "1062_1", "5109_1", "4163_5", "1657_5", "4546_1", "2465_3", "1668_1", "4957_3", "1078_1", "3393_5", "843_3", "4695_5", "3215_1", "1_4", "733_1", "3393_1", "109_3", "3304_3", "3046_3", "3558_1", "616_1", "3339_1", "3442_1", "3247_1", "1356_1", "1526_1", "560_5", "180_1", "1944_1", "2123_1", "1182_5", "4564_3", "254_3", "1137_1", "4767_5", "4527_1", "202_1", "281_5", "2536_1", "4326_5", "2679_1", "2593_1", "4981_1", "1198_1", "5091_1", "162_3", "3586_3", "4115_5", "3916_3", "665_1", "2509_1", "512_5", "2672_1", "2917_7", "381_5", "1973_1", "3982_1", "2250_3", "2704_3", "4784_3", "4887_1", "1135_1", "3860_1", "1495_1", "2292_3", "638_1", "2527_1", "2565_3", "1120_5", "2537_3", "792_5", "4710_3", "3165_3", "488_1", "3195_3", "2638_1", "4545_1", "4570_3", "2193_1", "2214_7", "1622_3", "2861_1", "2174_7", "2981_1", "24_3", "20_1", "4413_3", "781_3", "1262_1", "3350_1", "4244_3", "2751_5", "4193_1", "776_1", "1734_3", "4621_1", "309_1", "2668_1", "4994_3", "4967_1", "707_3", "4229_5", "137_1", "1135_5", "2186_3", "3806_3", "3129_9", "5_5", "415_3", "4262_1", "4648_3", "3688_1", "3718_1", "5110_1", "119_7", "4715_5", "4625_1", "304_1", "2513_3", "2969_1", "1996_1", "3965_3", "4380_5", "56_3", "5036_3", "2394_3", "1186_1", "3391_3", "4612_3", "216_7", "1399_1", "3682_1", "530_1", "801_1", "1929_3", "4487_1", "5108_3", "3846_1", "2777_1", "2132_1", "4337_3", "1459_1", "4276_1", "4794_3", "3523_1", "873_1", "4098_7", "1250_3", "4988_5", "4024_5", "4485_1", "2658_1", "2778_3", "464_5", "120_1", "1793_3", "1995_1", "1792_5", "408_3", "136_1", "1864_1", "72_5", "2501_3", "3530_1", "4691_1", "2820_5", "1479_3", "4021_3", "1978_5", "1011_1", "3900_3", "4515_1", "1827_3", "1106_3", "3095_3", "1908_1", "474_3", "656_1", "2792_1", "3832_3", "3077_5", "4721_1", "525_7", "2586_1", "442_1", "1549_1", "23_1", "3959_1", "3860_9", "3307_1", "1077_1", "1251_5", "3213_1", "2061_1", "5000_3", "766_1", "2552_1", "2682_3", "1120_3", "2059_3", "3426_1", "2892_1", "4567_1", "2440_5", "4476_3", "1613_3", "3645_1", "4348_5", "1863_9", "2002_1", "1404_7", "4775_1", "1831_1", "1101_1", "1602_3", "2803_7", "133_1", "3299_1", "2588_3", "1900_1", "200_1", "5044_1", "3607_5", "3360_5", "3970_1", "2549_1", "4044_5", "3749_5", "3047_3", "4919_1", "3922_1", "445_7", "4819_1", "525_9", "3101_1", "5144_5", "2554_1", "3841_1", "2427_1", "2411_3", "1577_1", "4098_3", "1432_1", "2234_1", "2240_1", "2313_1", "3596_5", "1121_1", "2106_1", "4552_5", "1665_1", "2809_5", "4899_3", "4049_1", "111_5", "659_9", "1250_1", "5101_3", "2330_1", "3181_1", "4460_3", "4317_1", "2584_3", "3605_3", "1663_1", "4956_1", "3289_1", "2600_1", "4975_1", "343_1", "1691_1", "1506_1", "3435_1", "4445_5", "4574_3", "3574_1", "1483_5", "1983_3", "2465_7", "1094_5", "4346_1", "1348_3", "685_1", "4494_1", "5133_3", "3172_1", "2271_1", "4864_7", "2238_1", "1116_1", "4988_3", "2687_13", "480_1", "4486_1", "3167_1", "1999_5", "1504_1", "2829_5", "1912_5", "4192_1", "2410_5", "316_1", "2430_3", "1984_5", "3944_1", "2064_3", "3408_3", "624_5", "2466_1", "4578_5", "3700_5", "1962_1", "4606_3", "2960_3", "1421_1", "4093_5", "3655_3", "5070_3", "2104_5", "2783_3", "4838_1", "2197_1", "5066_5", "3755_1", "2129_3", "2966_3", "1586_1", "3800_1", "2542_1", "2502_1", "652_1", "3597_1", "3516_7", "1681_1", "1659_5", "3317_3", "4593_1", "3218_1", "128_1", "3623_5", "449_3", "4446_5", "3623_1", "37_5", "3341_3", "3971_1", "4526_3", "2016_1", "3838_3", "3414_1", "4260_3", "3459_1", "2781_3", "493_3", "3787_3", "4209_1", "1219_1", "3411_3", "4150_1", "2857_1", "276_1", "5117_1", "894_1", "334_3", "1553_1", "1091_1", "4471_3", "4725_1", "2307_1", "2332_1", "3751_1", "2663_1", "3860_5", "1199_1", "3168_1", "4343_5", "1340_1", "2891_2", "4100_1", "3740_3", "1257_5", "3914_3", "3394_1", "1761_5", "222_5", "4081_1", "4734_1", "568_1", "3409_5", "5048_3", "2608_1", "2753_3", "4154_1", "2057_1", "4271_1", "3367_7", "228_5", "1346_5", "3428_1", "4490_3", "4817_5", "4741_3", "1873_1", "654_1", "3877_3", "2694_5", "4221_3", "1661_1", "529_1", "303_1", "4078_1", "3348_1", "983_7", "608_3", "913_1", "3938_5", "4506_1", "1865_1", "1569_3", "1592_1", "3452_3", "1599_3", "3436_1", "3298_1", "4565_1", "779_5", "2659_5", "360_1", "1928_1", "2461_1", "1893_3", "3895_1", "2354_5", "2587_3", "1055_3", "4201_1", "2396_1", "2369_5", "4363_3", "3169_3", "3878_1", "906_3", "2737_1", "2626_1", "2081_3", "4867_3", "4189_1", "1067_1", "2858_1", "2046_1", "4222_1", "1672_5", "1290_1", "4479_3", "3384_3", "213_1", "4955_1", "585_1", "3929_3", "3545_1", "975_5", "231_3", "2165_1", "2886_5", "3435_3", "1516_1", "3041_1", "1882_1", "159_3", "3720_1", "2721_1", "3583_1", "121_5", "488_5", "1439_5", "1012_1", "4723_5", "3066_3", "2786_1", "1944_5", "415_1", "4336_7", "3343_3", "858_1", "1327_3", "4270_1", "4992_1", "5108_1", "1589_5", "3166_5", "3527_3", "2929_1", "2739_1", "1382_3", "2457_1", "3988_1", "621_1", "3133_3", "2995_3", "1806_1", "3067_1", "3190_1", "2464_1", "4404_5", "635_7", "765_3", "43_1", "3788_3", "5132_3", "2136_1", "1292_5", "2590_3", "4034_1", "149_3", "888_3", "4026_3", "3290_3", "1197_1", "1724_5", "4703_3", "4055_1", "1883_3", "2373_1", "3910_1", "2960_5", "2694_1", "1669_1", "638_5", "2825_3", "197_1", "462_1", "5002_3", "3683_3", "2890_1", "810_1", "3909_5", "176_1", "164_5", "459_3", "3645_3", "3100_1", "4509_3", "1615_7", "2156_3", "4542_5", "2756_3", "4222_7", "1294_9", "1750_3", "3397_5", "3421_3", "3949_1", "1075_3", "3851_1", "989_1", "1950_1", "1672_1", "1554_1", "567_5", "423_5", "4378_1", "2139_1", "1907_1", "2670_1", "4332_1", "673_3", "1937_1", "4329_1", "962_7", "5056_1", "2557_5", "1585_5", "2692_1", "1276_1", "3743_3", "2950_5", "2979_7", "2306_5", "1047_3", "1228_1", "2274_5", "5129_1", "3519_1", "5150_3", "4368_1", "4410_1", "3038_3", "1856_1", "3337_3", "1191_3", "4262_3", "410_3", "4503_1", "3689_5", "565_3", "5065_1", "2098_1", "1795_7", "2084_3", "1697_1", "152_1", "1639_1", "17_1", "2868_3", "3704_1", "1555_1", "1807_7", "1409_1", "1390_3", "3137_7", "4833_1", "1937_5", "148_1", "2514_1", "340_1", "2636_5", "3520_1", "1408_5", "669_3", "3294_5", "2918_1", "591_3", "620_3", "4242_3", "775_5", "337_7", "2287_3", "446_5", "2755_5", "3917_5", "2905_7", "4363_1", "2450_3", "1614_5", "1682_1", "2600_7", "1940_1", "1084_3", "1042_1", "3187_1", "4289_1", "2013_1", "4969_1", "362_3", "1397_1", "2032_1", "4727_1", "2492_3", "4603_1", "3118_3", "1722_3", "3250_1", "1403_3", "690_1", "170_1", "1110_3", "3937_1", "3477_1", "3219_3", "2601_5", "1729_1", "1569_1", "937_1", "4715_3", "4358_5", "4064_5", "4075_3", "0_1", "4202_3", "4612_1", "109_1", "3961_1", "2229_1", "2248_3", "60_1", "3115_3", "2345_1", "3248_3", "3201_1", "1376_5", "1540_1", "2269_1", "1380_5", "1756_1", "2200_3", "3013_3", "4836_1", "5008_1", "4364_1", "1162_3", "4325_5", "4949_1", "689_5", "1563_3", "158_1", "853_1", "3191_5", "738_3", "4338_3", "5169_1", "2948_5", "4177_1", "4457_1", "1449_3", "4253_1", "3494_1", "1965_5", "38_3", "3176_1", "4212_1", "2326_3", "3911_7", "1184_1", "1961_1", "2066_7", "2029_3", "1054_3", "3158_5", "5101_5", "2184_1", "1339_5", "301_1", "3458_1", "2451_3", "1607_3", "1033_3", "2049_3", "692_5", "1737_1", "4782_1", "3314_5", "4651_1", "2521_1", "963_3", "3785_3", "4397_1", "3528_1", "3229_1", "1362_1", "1272_1", "3691_1", "1508_3", "1496_3", "2989_5", "2366_3", "2718_1", "2689_1", "2879_3", "4030_1", "1867_1", "577_3", "3053_5", "2075_5", "1745_5", "3331_1", "3471_1", "3037_1", "3191_3", "504_5", "183_1", "423_3", "359_1", "3067_5", "3439_1", "1306_1", "1477_1", "4866_3", "3837_1", "2930_1", "2434_1", "5052_3", "1236_3", "2173_1", "3666_3", "2233_3", "3328_1", "293_1", "4729_3", "1898_7", "1352_1", "2857_3", "3692_7", "542_1", "3812_1", "3496_3", "3390_7", "3565_3", "4365_1", "300_3", "2202_1", "1318_3", "959_1", "2068_1", "3614_1", "898_3", "2162_1", "3756_1", "315_7", "4971_1", "2428_5", "2499_3", "912_3", "3009_5", "711_1", "1970_3", "779_1", "3261_1", "2638_3", "2175_5", "286_3", "471_1", "1525_5", "2047_1", "3741_1", "349_1", "283_1", "2330_5", "3576_1", "11_5", "718_3", "1013_1", "1485_5", "2105_1", "2916_1", "3369_3", "1683_1", "121_1", "509_1", "4491_5", "1265_7", "4800_1", "1092_1", "3702_1", "3617_1", "5006_5", "628_3", "2368_1", "4750_1", "1536_5", "335_1", "4460_1", "5014_3", "4646_1", "4390_3", "2371_1", "4712_1", "1297_9", "435_5", "4548_1", "3386_1", "3293_3", "820_3", "2239_1", "4957_5", "3799_1", "2022_3", "1302_5", "925_5", "30_5", "2873_3", "2097_3", "2130_1", "2625_5", "482_7", "2151_1", "2419_1", "770_3", "1680_9", "4439_3", "4850_1", "1370_1", "2459_1", "3109_3", "3842_3", "2660_1", "66_1", "2631_1", "4036_1", "2605_1", "151_1", "4868_3", "153_1", "2520_1", "3579_1", "778_1", "1958_1", "5035_1", "2492_1", "1989_1", "4187_1", "1125_5", "391_5", "535_3", "1555_3", "2571_1", "4680_5", "2454_3", "419_1", "693_1", "3265_3", "3873_3", "2264_3", "2630_1", "3734_5", "1094_3", "1514_3", "2288_5", "427_1", "4438_1", "3025_1", "2471_1", "1618_7", "1829_1", "1610_5", "1407_1", "899_1", "916_1", "146_1", "3270_1", "3560_5", "4660_1", "1806_3", "3416_3", "1181_1", "5018_1", "412_1", "957_3", "2414_5", "2712_1", "2583_5", "4230_3", "4673_5", "16_1", "4420_1", "61_1", "3239_5", "3942_5", "988_5", "48_1", "1143_3", "2248_9", "3266_1", "1651_5", "115_1", "3005_3", "1180_1", "1474_5", "4162_1", "2442_3", "3084_5", "3463_5", "1342_3", "1877_7", "414_1", "281_1", "1513_3", "499_7", "4299_3", "3155_5", "649_3", "4840_1", "2915_5", "18_1", "4596_5", "4111_5", "962_1", "565_1", "1931_1", "3393_3", "1507_3", "257_5", "4830_1", "2195_5", "971_1", "455_3", "1410_3", "1746_5", "2622_3", "3520_5", "3870_5", "3316_1", "4484_1", "169_1", "3249_1", "2367_1", "2970_1", "1175_1", "4866_7", "5007_3", "1546_1", "4913_1", "4751_3", "226_3", "4463_3", "1782_5", "3676_1", "1943_7", "2627_3", "1455_5", "378_1", "3329_3", "907_3", "1797_5", "790_5", "1139_1", "2481_3", "1302_3", "946_5", "2291_3", "4478_1", "3400_3", "2334_1", "3207_5", "2002_3", "1028_3", "4986_1", "3460_1", "1716_7", "4391_3", "4403_3", "4126_3", "409_1", "2596_3", "308_3", "907_1", "576_3", "1713_1", "2011_1", "2639_3", "922_3", "4265_1", "4931_3", "2056_1", "1470_1", "3737_1", "3542_1", "3047_1", "2878_1", "2807_1", "2234_5", "1047_5", "599_1", "2517_1", "2166_7", "1791_3", "3044_1", "4250_1", "2774_3", "3198_7", "3227_5", "787_1", "3932_1", "1536_3", "2005_3", "81_1", "3462_1", "445_3", "2485_1", "4124_3", "2618_3", "3884_1", "3594_1", "4076_3", "736_3", "1600_1", "3047_5", "2757_9", "918_1", "2399_1", "5063_1", "3773_1", "2642_7", "847_3", "3834_1", "3610_3", "845_3", "3266_5", "5030_5", "1491_1", "5088_1", "2095_1", "3667_1", "871_1", "4634_3", "1822_5", "3311_3", "1725_1", "3288_1", "2942_3", "1584_1", "25_1", "4002_3", "2924_1", "1226_5", "1905_1", "4164_1", "2893_7", "4588_1", "1440_3", "4699_1", "767_1", "1415_3", "1064_5", "4446_1", "3211_3", "4629_5", "4740_3", "2171_1", "2182_1", "941_1", "4104_3", "4675_1", "692_1", "27_3", "1842_5", "553_3", "2403_3", "4107_1", "3254_3", "3324_5", "2088_1", "3295_1", "3979_1", "1588_3", "1264_1", "1993_1", "817_1", "3985_1", "2548_3", "4912_1", "3833_1", "684_1", "664_3", "2926_1", "2541_3", "4407_3", "3778_1", "1188_5", "4582_1", "877_5", "2910_1", "3671_1", "5090_1", "785_3", "518_3", "1050_1", "1068_5", "3711_3", "4246_1", "4867_1", "4367_3", "1374_3", "2636_1", "4134_1", "3042_1", "739_1", "3633_5", "3485_3", "395_1", "1945_5", "1225_1", "1556_1", "3487_1", "4387_1", "3974_5", "4105_5", "3089_5", "4389_3", "3755_3", "1407_5", "101_1", "4341_1", "5019_3", "5119_1", "2540_3", "4746_1", "90_3", "1745_1", "3130_1", "2403_1", "432_1", "1247_1", "4238_1", "2172_1", "4573_1", "4756_1", "504_1", "3524_3", "1595_1", "2752_1", "3775_3", "1598_1", "3891_1", "5165_1", "3058_1", "5027_1", "655_5", "3794_3", "592_3", "284_3", "3209_7", "1853_1", "1293_1", "2699_1", "818_5", "984_3", "4168_3", "4697_1", "3092_1", "923_1", "4477_3", "4288_1", "311_1", "2095_5", "2132_5", "3593_3", "861_9", "954_3", "932_5", "2443_9", "1032_3", "5071_1", "2956_1", "2583_1", "4398_3", "4425_3", "3892_5", "3990_1", "2113_3", "1015_3", "1222_1", "119_1", "3403_1", "2125_1", "2084_5", "4779_1", "1889_3", "456_5", "1244_1", "841_1", "549_3", "4523_3", "1463_5", "1862_5", "4234_3", "4615_1", "4401_1", "4248_3", "3137_1", "3151_1", "2574_1", "4563_1", "880_1", "5116_1", "2724_1", "2400_1", "4018_1", "2921_1", "3227_1", "5103_5", "4684_1", "1804_7", "4556_1", "2899_3", "4935_3", "3506_1", "4468_1", "2658_3", "2407_1", "4655_3", "4215_1", "4578_1", "4616_1", "4065_1", "3053_3", "1412_1", "3897_3", "3920_1", "998_3", "1693_1", "1227_3", "5069_1", "4356_1", "4268_3", "209_3", "2491_1", "2973_1", "983_1", "4403_1", "1824_9", "4754_1", "3926_1", "633_3", "1346_7", "2840_7", "4432_5", "1311_1", "2852_3", "4249_1", "4966_3", "5042_1", "3367_1", "3119_1", "552_3", "5100_1", "2331_1", "385_1", "466_3", "3112_5", "2071_3", "4015_1", "2465_9", "1599_1", "4742_1", "3028_1", "105_1", "4264_3", "5008_3", "4797_1", "2893_5", "1471_5", "3301_1", "1755_3", "1468_3", "3973_1", "1656_1", "1297_7", "1615_3", "2532_1", "1190_1", "4690_1", "1697_5", "4708_3", "4666_5", "2330_3", "3450_3", "1670_3", "2493_9", "1049_5", "2043_3", "274_1", "3204_1", "2042_1", "2133_1", "4581_1", "477_1", "2879_5", "1734_5", "815_1", "699_3", "3599_1", "1433_1", "1358_3", "798_3", "140_5", "1373_9", "3195_7", "3815_3", "3928_1", "1138_1", "3647_5", "1191_5", "1674_3", "1962_5", "4269_1", "5153_3", "2019_1", "1512_3", "1456_3", "1227_5", "2417_3", "3465_1", "367_5", "4139_1", "260_3", "3425_5", "4094_1", "4641_5", "4438_3", "82_1", "3576_3", "628_1", "1485_3", "1839_3", "4050_1", "3331_5", "2547_3", "2701_1", "4245_1", "1324_5", "15_3", "4596_3", "171_1", "4180_7", "1516_3", "2599_3", "3723_1", "3030_1", "4705_3", "157_1", "302_5", "726_1", "915_3", "4813_5", "3650_5", "3275_1", "1666_1", "2247_1", "2218_3", "1698_5", "3256_5", "1263_3", "4649_3", "642_3", "2684_3", "4954_1", "3153_1", "495_1", "1343_3", "1858_3", "3123_1", "2000_5", "4307_1", "94_1", "2726_3", "1496_1", "4430_1", "1822_9", "1033_1", "4343_9", "3896_3", "2864_1", "2253_1", "511_3", "3164_1", "3370_1", "1044_1", "4951_3", "4417_3", "5041_5", "4477_1", "67_3", "4336_3", "3569_1", "4628_3", "3368_1", "3372_1", "3873_1", "515_5", "4842_3", "3178_1", "2334_3", "1991_1", "3901_1", "2428_7", "1482_1", "2564_1", "3874_1", "1151_1", "1679_3", "4441_1", "1163_1", "4476_5", "3248_7", "526_3", "1300_3", "2997_1", "4850_5", "1187_3", "151_5", "2978_3", "3035_1", "340_5", "2711_1", "4404_1", "5072_1", "3577_7", "2124_1", "760_1", "650_1", "805_1", "38_1", "1376_1", "1029_1", "2245_1", "1955_1", "4090_1", "3543_1", "5115_3", "4555_5", "1948_3", "4339_1", "3799_3", "1058_1", "728_1", "4097_1", "4638_1", "4367_5", "446_7", "2843_1", "329_1", "2802_1", "1956_3", "682_1", "1868_1", "2789_1", "976_5", "4298_3", "578_7", "3601_1", "1741_5", "2372_1", "2627_5", "1206_1", "3128_5", "4832_1", "8_1", "2244_1", "566_3", "407_1", "908_1", "2107_1", "4647_1", "4184_1", "1161_1", "561_3", "2518_3", "1807_3", "2035_3", "3957_1", "1089_3", "2424_3", "3799_5", "2982_1", "1727_1", "4630_1", "557_9", "974_3", "1985_1", "4735_1", "4151_1", "3752_1", "3787_1", "2253_5", "2909_5", "433_3", "990_1", "4475_1", "3588_1", "320_1", "2870_1", "5115_1", "2024_5", "5166_1", "4224_3", "3852_1", "1119_1", "2655_5", "1625_1", "3994_5", "351_1", "2384_3", "4276_5", "2906_1", "1800_1", "3379_1", "4053_1", "186_1", "994_1", "2678_1", "2609_5", "2470_3", "565_5", "4900_5", "1039_1", "415_5", "4009_1", "632_7", "2832_7", "2855_1", "2_1", "1475_7", "1627_1", "67_1", "676_1", "1843_5", "3769_3", "4323_3", "286_5", "3927_7", "1515_1", "4153_1", "4764_3", "3515_3", "1520_7", "4835_3", "2503_1", "2590_1", "594_5", "1732_3", "452_1", "4352_1", "3760_3", "3853_1", "2147_1", "2155_1", "3829_1", "3001_1", "4859_5", "3992_1", "4619_1", "2487_1", "3864_5", "1818_3", "3800_3", "4508_3", "555_3", "2612_3", "2597_1", "1083_5", "2800_1", "4433_3", "5031_3", "1766_3", "678_1", "2354_1", "174_3", "2267_1", "3327_1", "4757_5", "1651_3", "808_3", "3177_3", "4783_5", "755_1", "317_1", "505_7", "714_3", "3270_3", "2361_3", "1090_3", "4073_1", "4137_3", "2496_1", "3326_3", "863_1", "2396_5", "3527_1", "2759_3", "2842_1", "3952_1", "3903_1", "979_1", "83_1", "573_3", "822_3", "1194_1", "5058_1", "1551_5", "5126_1", "1049_7", "3396_5", "3114_3", "5095_5", "5135_3", "1094_1", "2183_3", "2408_1", "1177_1", "64_3", "4809_1", "1673_3", "2470_1", "1930_1", "759_1", "1623_1", "2455_1", "3887_5", "1963_5", "4944_1", "3039_3", "4732_1", "5093_1", "3157_1", "280_3", "192_1", "1480_1", "1689_3", "3200_1", "1274_1", "1542_1", "4726_1", "4447_1", "750_3", "4119_1", "4402_1", "1877_1", "104_5", "4522_1", "4873_3", "1374_1", "2968_1", "5079_1", "590_5", "2796_3", "3845_5", "1081_1", "551_1", "1322_3", "2091_3", "1178_3", "3086_7", "4885_5", "1218_1", "2228_3", "4124_5", "1340_3", "3415_1", "3330_1", "532_3", "158_5", "1420_5", "4738_1", "389_1", "1016_1", "4658_1", "2567_1", "3748_1", "2787_3", "3203_5", "411_1", "2497_1", "1368_3", "1976_3", "2780_1", "625_1", "3258_1", "71_5", "238_1", "2511_5", "2824_3", "786_1", "1799_3", "5128_1", "4608_1", "5085_5", "1928_5", "2100_1", "4171_1", "1235_5", "2547_1", "4322_1", "2942_1", "4300_1", "4269_3", "2571_3", "4604_1", "38_7", "387_3", "444_1", "3541_5", "2477_1", "322_1", "1424_3", "298_5", "761_1", "1688_7", "3360_3", "1706_3", "3182_1", "2638_11", "3777_3", "94_3", "3256_3", "2535_1", "4639_1", "4306_1", "4846_3", "154_3", "1589_3", "1223_1", "1087_3", "3278_1", "2176_1", "288_7", "4619_3", "3499_1", "2644_3", "3854_1", "4013_5", "122_7", "4395_1", "2134_1", "4256_1", "2556_1", "4953_3", "5094_1", "2491_5", "497_1", "4004_1", "4634_5", "2634_1", "3639_1", "1427_3", "3383_3", "1395_1", "645_3", "3448_1", "1092_3", "3468_1", "386_1", "3651_1", "5137_1", "4727_3", "3267_3", "521_5", "333_1", "490_3", "344_3", "1793_5", "2370_3", "2401_1", "432_5", "635_1", "2909_3", "3856_1", "715_5", "828_1", "1398_1", "3196_3", "999_3", "2263_3", "3351_5", "2958_5", "1211_1", "4504_3", "3584_3", "4145_3", "2628_1", "3361_3", "3007_1", "724_1", "416_1", "4204_1", "1344_5", "4938_1", "1742_1", "1814_3", "3848_1", "1216_5", "4936_3", "4322_3", "426_1", "1558_1", "4810_5", "4213_1", "270_3", "4327_1", "1413_1", "3831_1", "2758_5", "2147_3", "1277_1", "1608_1", "2613_1", "2765_1", "712_1", "3713_5", "4862_3", "3513_3", "3160_1", "3880_5", "5123_1", "188_3", "2965_3", "1520_1", "5040_1", "729_1", "1638_3", "4214_1", "328_1", "947_3", "2237_3", "3222_5", "4219_7", "3639_3", "2010_1", "2336_1", "3199_3", "4170_1", "3514_1", "31_3", "2706_1", "3094_3", "2598_1", "1947_1", "3912_1", "1671_1", "715_1", "3559_1", "1266_3", "4555_3", "22_3", "4813_7", "4157_1", "3129_1", "3946_1", "4568_7", "2775_3", "4188_5", "3510_3", "2389_5", "4882_1", "3416_1", "2999_5", "5021_3", "1130_5", "1429_1", "741_5", "1902_1", "2275_3", "935_1", "2415_1", "1734_1", "900_3", "631_1", "3328_5", "26_1", "1408_1", "1696_1", "274_5", "1003_7", "3115_7", "2610_5", "3136_1", "870_1", "2671_1", "1435_1", "2705_9", "217_7", "1238_1", "2940_1", "3051_1", "1596_1", "2480_5", "691_3", "3442_5", "3443_1", "3287_1", "2060_1", "1551_1", "382_3", "1142_3", "1752_1", "248_1", "2555_1", "4156_5", "4194_5", "2214_1", "2820_1", "1290_3", "756_1", "987_3", "3780_1", "3391_7", "2006_3", "2279_1", "4234_1", "3971_3", "2472_3", "1695_1", "108_3", "5148_5", "2961_5", "2874_5", "572_3", "4200_1", "4510_1", "1178_5", "4109_5", "1462_1", "146_3", "4631_1", "4591_3", "2659_3", "3157_5", "139_3", "11_1", "4625_3", "2280_3", "3264_3", "5078_9", "2221_1", "3826_3", "4316_3", "4206_1", "4627_3", "4226_1", "776_5", "4503_3", "3666_1", "528_1", "1740_7", "3211_7", "1544_3", "173_3", "4892_5", "1579_1", "3940_1", "5003_1", "245_1", "3913_1", "5053_1", "3009_1", "2180_5", "797_5", "201_3", "1617_7", "829_1", "1330_1", "2490_3", "1027_5", "91_1", "4183_3", "2374_3", "379_1", "2732_3", "2255_1", "3228_3", "3234_3", "4342_3", "1023_5", "1604_3", "2124_3", "3066_5", "1005_1", "73_1", "3879_3", "80_3", "732_3", "4826_3", "4127_3", "348_3", "3761_1", "3350_3", "2680_3", "4862_1", "1510_3", "368_1", "4360_1", "4335_1", "4243_1", "422_3", "2406_5", "4828_3", "954_1", "4518_3", "4278_3", "1893_1", "528_3", "1702_1", "4645_1", "3333_5", "3695_1", "2616_3", "3760_1", "3099_1", "1755_5", "4175_3", "3859_1", "5089_1", "1335_1", "4798_1", "5012_3", "4263_1", "4286_11", "4058_1", "2905_5", "1053_1", "2249_1", "2603_1", "2382_1", "800_1", "1937_3", "3417_1", "76_5", "450_1", "3089_1", "3547_5", "698_1", "2376_5", "3279_1", "3804_3", "345_1", "4212_3", "2412_1", "5154_1", "1270_3", "1849_1", "166_1", "4361_1", "3811_3", "4435_1", "1698_3", "5126_5", "3968_3", "4130_1", "2649_1", "4207_1", "4494_3", "752_1", "3780_3", "3868_5", "3991_1", "3692_3", "2729_3", "5055_5", "3924_7", "1320_1", "4492_1", "2716_1", "1005_5", "57_1", "4921_1", "879_1", "807_3", "2358_1", "837_3", "3501_1", "4614_1", "1918_7", "643_11", "640_5", "569_5", "2360_1", "5081_1", "449_5", "2947_3", "4825_1", "2610_1", "738_5", "2103_1", "4014_3", "4878_5", "2745_1", "4610_1", "3233_1", "492_1", "2939_1", "1323_1", "9_1", "601_1", "4643_1", "4282_1", "3689_3", "1866_1", "2440_9", "327_3", "1014_1", "2289_1", "523_3", "5084_3", "2214_5", "590_1", "1682_3", "976_3", "3684_5", "3760_5", "1249_3", "2640_3", "6_1", "2810_1", "4349_5", "4785_3", "4763_1", "4264_5", "4881_1", "627_3", "4905_1", "306_1", "2103_3", "2996_1", "792_1", "2065_3", "1741_3", "1975_5", "3644_3", "3054_1", "4020_3", "2650_3", "1347_1", "2451_1", "3424_1", "4716_1", "2822_1", "4641_1", "18_5", "2003_1", "3011_5", "2800_5", "2270_1", "1708_3", "3969_1", "2484_1", "3440_1", "476_1", "4461_1", "2309_3", "2563_1", "1660_1", "876_3", "3314_1", "2419_5", "4553_1", "4678_1", "903_1", "1544_1", "805_3", "774_1", "4723_3", "380_3", "2545_1", "825_1", "602_1", "3184_1", "4598_1", "1777_1", "1796_5", "1980_1", "1031_7", "1728_1", "2150_1", "381_1", "1281_1", "1278_1", "3387_1", "5107_1", "2644_1", "2149_1", "1300_5", "1467_1", "3631_1", "2709_1", "557_5", "2134_3", "1622_5", "3649_1", "202_5", "3901_5", "4402_5", "640_3", "5114_5", "1350_5", "2723_3", "264_1", "2257_5", "1657_1", "3310_3", "700_1", "3297_3", "4952_1", "2814_3", "4499_1", "3996_1", "5112_1", "1687_5", "5127_5", "1793_1", "4550_3", "194_3", "3520_3", "1025_1", "3015_3", "4180_9", "4054_7", "5064_5", "3389_1", "4017_1", "3777_7", "2364_1", "1200_5", "4990_1", "2990_5", "64_1", "2204_1", "4659_3", "2779_5", "1926_3", "1145_5", "862_1", "1774_1", "4976_5", "1022_7", "1057_1", "4979_5", "4633_3", "2615_1", "2363_1", "842_1", "3373_3", "2392_1", "3165_1", "4405_3", "4266_3", "1121_3", "716_3", "5148_3", "1473_3", "722_1", "1916_3", "4012_1", "4661_3", "4061_1", "4433_1", "3600_1", "4467_3", "5062_1", "703_1", "2418_1", "4773_1", "1919_3", "4859_1", "3021_1", "1621_3", "702_3", "2816_3", "1215_1", "1994_1", "4202_1", "1145_3", "637_1", "398_5", "1709_3", "1273_3", "1330_5", "29_3", "2395_1", "2650_1", "2771_1", "4488_3", "182_5", "2437_1", "2665_3", "4035_1", "1132_5", "4514_7", "1428_5", "2849_1", "4816_1", "2023_3", "983_5", "4720_3", "3193_1", "1508_1", "1006_5", "4255_5", "3347_3", "143_1", "708_3", "284_5", "1840_3", "4191_1", "4468_5", "2786_3", "4192_3", "617_3", "2935_3", "5076_1", "4064_1", "3434_1", "1279_1", "4968_5", "2099_1", "1906_3", "2133_3", "872_3", "712_5", "547_1", "4649_7", "1812_1", "5059_1", "2976_5", "155_1", "2110_7", "926_1", "5095_1", "3659_1", "2410_1", "2303_3", "2751_1", "3681_1", "4925_1", "3164_5", "4755_5", "1601_1", "3612_1", "70_7", "4506_3", "2655_7", "2028_3", "2462_1", "3696_1", "4907_1", "2174_1", "4033_1", "675_1", "539_1", "3322_5", "3802_1", "233_1", "3359_1", "2589_3", "3137_5", "3304_1", "3823_1", "2954_1", "2767_1", "4874_3", "2324_1", "2615_3", "948_9", "1557_3", "1499_1", "4091_5", "854_1", "4623_1", "2531_1", "438_1", "4283_1", "2705_1", "1300_1", "2845_3", "167_3", "1095_1", "4067_5", "1232_5", "4559_5", "2248_1", "2420_1", "3512_3", "2317_3", "1993_3", "1501_1", "3032_5", "1791_1", "4491_11", "3503_3", "1085_1", "1924_5", "5146_1", "1241_1", "3686_1", "3679_3", "831_1", "3552_1", "2048_3", "4985_3", "2013_7", "3896_5", "2031_1", "2438_5", "3908_1", "1863_1", "3738_3", "4866_5", "2818_1", "1204_1", "3063_1", "1523_5", "1553_5", "2219_1", "3503_1", "3907_3", "3956_1", "2604_1", "4845_3", "2681_1", "1024_3", "403_1", "4479_1", "3045_5", "1659_1", "1845_1", "1660_3", "4139_3", "1035_5", "3622_1", "1036_1", "3223_1", "1503_3", "536_3", "2387_5", "4710_1", "5003_3", "78_3", "2370_5", "4576_1", "589_7", "4450_5", "2166_1", "572_7", "4136_1", "644_1", "5011_3", "4560_1", "3423_7", "3437_3", "2765_3", "4111_1", "1149_1", "559_1", "804_1", "639_3", "1664_5", "2212_3", "2744_1", "1885_3", "4174_3", "581_1", "660_1", "4275_5", "4925_3", "2398_1", "3467_3", "2340_3", "5070_1", "1657_3", "521_1", "3995_5", "1522_1", "1811_1", "545_3", "4926_5", "1138_5", "4640_1", "2312_3", "3412_3", "2177_3", "1407_3", "3029_1", "4439_1", "5001_3", "185_1", "1996_5", "3626_1", "2085_3", "478_1", "1430_5", "2696_1", "619_1", "5163_7", "2119_3", "3096_1", "494_3", "4074_1", "2363_5", "2029_1", "3338_7", "2396_3", "1486_3", "3758_1", "997_1", "4585_1", "485_1", "4242_1", "3983_3", "4730_1", "3564_1", "5046_1", "1093_1", "206_1", "3488_3", "4241_3", "1723_3", "470_3", "295_1", "1671_7", "2931_3", "3513_5", "1308_3", "1416_5", "271_1", "3782_3", "3816_1", "3508_1", "3952_3", "2676_5", "4288_7", "525_1", "1047_1", "63_3", "4902_1", "2934_1", "3410_1", "3642_3", "2335_1", "2503_5", "4088_3", "3742_5", "512_1", "4146_7", "1394_5", "1505_1", "3500_3", "2829_1", "4062_3", "2297_1", "3650_1", "2445_3", "1652_3", "2169_7", "5045_1", "4398_1", "4386_1", "3663_3", "915_5", "3842_1", "608_5", "663_1", "1092_5", "4219_1", "4949_5", "104_3", "1756_3", "3313_1", "4671_3", "3273_5", "101_5", "75_1", "2542_3", "4132_1", "3291_1", "45_3", "3706_1", "3010_1", "4867_5", "386_5", "3986_3", "2807_5", "3132_5", "1351_1", "61_5", "930_1", "432_3", "1426_1", "3868_1", "2550_3", "42_1", "307_1", "469_1", "211_3", "4504_1", "376_7", "4719_1", "1130_3", "3012_3", "4876_1", "860_5", "1034_1", "2156_7", "1031_3", "2840_1", "3028_3", "3014_3", "1593_5", "4079_1", "3397_1", "3087_3", "1518_3", "3531_1", "2339_3", "1417_1", "2015_3", "1208_3", "938_1", "4863_3", "2586_3", "3997_5", "3810_3", "99_1", "901_1", "1366_3", "3481_1", "289_1", "2559_1", "1913_5", "2282_3", "1253_1", "1959_1", "4934_7", "624_1", "2876_3", "3074_1", "3173_5", "2210_1", "3802_3", "4552_3", "2205_5", "4927_1", "2877_3", "2344_1", "1739_3", "1965_1", "3407_5", "3934_3", "2443_7", "1263_1", "1503_1", "4917_1", "3797_3", "1167_1", "1312_1", "4940_1", "1856_5", "2036_1", "1296_3", "2957_3", "1342_7", "4401_5", "1154_1", "459_5", "251_3", "2324_5", "1659_3", "5027_3", "1172_1", "3311_5", "587_1", "4772_1", "4448_3", "3888_5", "3869_3", "1254_3", "4646_3", "1503_5", "2391_5", "814_3", "3276_5", "4808_5", "4681_1", "2552_5", "3480_3", "3756_3", "2856_5", "891_1", "1843_3", "1391_1", "1492_1", "2918_7", "3326_1", "1130_1", "2320_5", "1838_3", "5163_1", "4781_3", "2577_1", "1952_3", "3245_3", "2346_7", "2108_1", "296_9", "3062_1", "3432_3", "2638_7", "3855_1", "4605_1", "388_3", "1689_1", "1842_1", "2558_1", "1365_3", "3223_5", "4589_1", "1850_1", "1466_1", "1960_5", "3590_1", "1952_5", "3579_3", "1447_1", "1776_3", "4697_5", "861_1", "358_5", "4754_3", "4380_1", "1447_3", "2708_5", "2481_1", "281_7", "1513_1", "4019_5", "2754_1", "209_5", "633_1", "428_5", "1274_3", "1489_1", "95_1", "2596_1", "202_3", "698_3", "1158_1", "1690_5", "952_3", "2120_1", "2839_1", "4664_1", "1416_1", "2335_3", "3290_1", "2619_7", "4747_1", "2856_3", "3846_5", "144_5", "23_3", "1373_5", "776_3", "3269_3", "3963_3", "3324_3", "1089_7", "725_3", "2131_1", "807_1", "3332_3", "4930_1", "2314_1", "2325_5", "4312_7", "4888_1", "2306_3", "2601_1", "824_1", "1095_3", "2530_1", "4457_7", "200_5", "2911_1", "437_7", "5145_3", "3342_3", "408_1", "4113_1", "2617_3", "3975_3", "461_1", "3595_1", "1348_1", "21_1", "1570_3", "2440_3", "138_1", "1884_1", "2850_1", "4530_3", "366_5", "3492_5", "5152_1", "4826_5", "4701_5", "799_1", "2793_3", "351_3", "2748_5", "3162_1", "578_5", "3016_7", "4884_7", "1269_1", "714_1", "2726_1", "3217_3", "4538_7", "4844_1", "921_1", "4518_1", "3555_5", "1249_1", "4022_3", "3381_3", "392_1", "693_5", "3494_5", "492_3", "5033_1", "3264_7", "3807_1", "3914_7", "519_1", "3719_1", "1529_1", "1350_3", "4774_3", "2905_3", "5025_5", "2574_3", "2300_3", "3788_1", "2803_1", "942_3", "2949_3", "811_1", "1354_9", "1365_1", "2262_1", "3825_5", "718_5", "1899_1", "3110_3", "4475_5", "4032_3", "1874_3", "2873_1", "723_5", "396_1", "4491_3", "2207_1", "1616_1", "73_5", "3556_3", "3625_1", "1851_1", "4414_1", "5026_1", "2755_1", "1458_1", "4995_1", "1613_7", "46_1", "1532_1", "1979_1", "4921_3", "865_3", "1133_5", "602_5", "4587_3", "553_5", "3967_3", "4286_7", "2640_1", "2505_1", "3816_3", "1073_5", "1188_3", "3518_3", "1809_3", "2062_1", "87_3", "1141_3", "1593_1", "2828_1", "3964_1", "2020_5", "697_1", "1187_1", "1679_1", "2887_9", "4145_1", "814_5", "3050_3", "3244_1", "3355_3", "2799_1", "1746_1", "2050_3", "665_7", "4409_3", "3518_5", "1830_3", "62_3", "237_3", "4516_1", "1142_1", "5054_3", "4526_1", "230_1", "1074_3", "2588_1", "4877_1", "236_1", "3310_1", "4884_1", "4611_1", "570_1", "379_5", "1750_5", "4214_3", "1760_1", "1230_3", "2944_3", "4442_3", "2515_1", "969_1", "3396_3", "34_1", "4385_1", "4911_1", "2913_1", "2018_1", "5037_1", "630_1", "4573_3", "1437_3", "4812_7", "3284_3", "321_3", "1502_1", "5015_1", "3656_3", "4758_1", "674_7", "4541_1", "1673_1", "3476_1", "1671_9", "4974_1", "1248_5", "1326_1", "2953_1", "1587_1", "2728_3", "2122_1", "499_5", "4626_1", "268_1", "1784_3", "4489_3", "4558_5", "4806_1", "2338_1", "3355_1", "4628_1", "4297_1", "1763_1", "1680_5", "3466_3", "2135_1", "2960_1", "4120_1", "3017_3", "3918_1", "1775_1", "1825_3", "1387_3", "4979_1", "5158_1", "1712_1", "1523_1", "1183_1", "4416_5", "4787_1", "1634_5", "2168_1", "3371_1", "2095_3", "3297_1", "2834_1", "1056_1", "1921_5", "4372_1", "3251_1", "2950_1", "1988_1", "3469_1", "1284_1", "3208_1", "845_1", "397_5", "2908_3", "3821_1", "4822_1", "2536_3", "1258_5", "2554_5", "932_3", "2592_1", "1920_5", "2720_1", "4308_3", "1174_1", "4720_1", "3555_1", "200_3", "1500_5", "910_3", "4534_1", "4887_3", "3931_5", "3242_1", "1039_3", "2963_1", "3634_1", "325_1", "1405_3", "3591_9", "3596_1", "1643_1", "2925_3", "3725_3", "4330_1", "3933_1", "1881_1", "3635_3", "4071_1", "677_3", "2025_1", "2266_3", "101_3", "2927_7", "1837_3", "3484_1", "3023_3", "3292_1", "3158_1", "3141_1", "2058_3", "4701_1", "1834_5", "3858_1", "2420_7", "997_3", "1950_3", "3835_5", "4213_3", "4780_3", "3191_1", "5155_3", "5111_3", "4942_3", "3211_1", "2919_1", "4500_1", "836_3", "247_1", "4780_1", "5074_1", "3091_1", "2472_1", "3156_1", "4218_5", "1228_3", "890_1", "2251_1", "3444_3", "4225_1", "2298_1", "2426_3", "611_1", "781_1", "727_3", "3817_3", "4933_1", "4757_1", "3394_3", "2775_5", "3124_1", "2379_1", "4680_3", "5103_1", "3413_5", "2229_3", "1198_3", "3475_3", "3537_1", "324_1", "2467_3", "287_3", "4823_1", "2487_3", "4808_1", "4804_7", "814_1", "2657_5", "666_5", "4859_7", "3319_1", "1751_5", "2902_1", "3731_5", "3056_1", "1730_1", "4037_3", "308_1", "4279_3", "3632_5", "4581_3", "4886_1", "2814_1", "3131_3", "2422_1", "573_5", "147_1", "4537_1", "1885_7", "3083_1", "2880_3", "3186_1", "3080_1", "978_1", "1165_1", "1911_5", "3592_1", "2003_3", "982_1", "5159_3", "2588_5", "3850_1", "2365_1", "1783_1", "4813_3", "612_1", "868_3", "1531_1", "2772_7", "1655_1", "748_1", "2879_1", "1498_1", "1953_3", "659_5", "5125_5", "3189_1", "4755_1", "793_3", "4650_3", "2114_5", "1953_5", "4647_3", "4284_1", "3793_1", "2084_1", "1260_1", "2863_5", "2987_1", "2573_1", "2712_3", "4875_1", "383_1", "460_1", "4650_5", "1824_1", "2509_5", "1514_1", "2979_1", "4988_1", "4023_3", "1778_3", "3368_5", "3921_1", "3078_5", "191_1", "4293_3", "4511_1", "4278_1", "3551_3", "1305_1", "1636_1", "3585_1", "4021_1", "4551_1", "5138_1", "177_1", "262_1", "3490_1", "2065_1", "3784_5", "3905_3", "1046_1", "4371_3", "3611_1", "3690_3", "1031_11", "4019_3", "3111_3", "4397_3", "3298_3", "3845_1", "4470_3", "5116_5", "761_5", "4860_1", "5013_1", "3974_7", "1209_1", "1547_7", "4219_5", "1742_3", "3209_1", "2119_5", "1392_1", "1975_3", "994_3", "1008_3", "5098_1", "941_9", "3203_3", "757_1", "350_5", "4350_1", "2668_5", "783_1", "1114_1", "3664_5", "4013_3", "4659_1", "779_7", "2108_3", "3199_5", "2876_1", "2774_1", "4465_1", "4027_1", "1941_3", "762_3", "467_1", "3572_1", "2533_1", "4365_3", "3253_5", "2952_1", "4745_3", "1889_5", "4855_1", "550_1", "3825_1", "788_1", "3405_3", "2883_1", "2269_3", "3553_1", "3418_3", "2217_3", "4604_3", "4481_1", "1465_1", "850_1", "1241_5", "5020_1", "1381_3", "3153_3", "2221_5", "1063_1", "3995_1", "966_3", "1839_1", "1784_1", "3349_1", "3395_1", "414_3", "2129_5", "1956_1", "562_1", "2746_3", "1052_5", "2785_3", "5167_1", "5028_1", "748_3", "1235_3", "3033_1", "1751_3", "3824_3", "1329_1", "2753_1", "1611_1", "1617_5", "721_5", "4633_1", "2383_5", "3201_3", "3086_5", "1140_3", "162_1", "5009_1", "1543_1", "1710_7", "4070_5", "1925_3", "2452_3", "2258_1", "3274_1", "4318_3", "3565_1", "484_1", "4631_3", "2289_3", "2283_3", "2773_3", "946_3", "4444_3", "203_3", "3516_1", "2359_3", "2227_3", "2254_1", "4044_1", "1462_3", "428_1", "4950_3", "220_3", "5022_1", "3798_3", "878_3", "4688_5", "983_3", "3175_1", "2235_1", "2510_3", "3993_7", "5134_1", "364_1", "4740_1", "1686_3", "2683_3", "4280_3", "2159_3", "4525_1", "2756_1", "2154_1", "2736_5", "1022_5", "2633_3", "3768_5", "2751_3", "1870_5", "1813_3", "4147_1", "2006_5", "508_1", "4342_5", "1963_3", "1803_5", "3368_3", "1100_1", "3766_1", "4536_3", "4889_1", "2622_1", "524_1", "1650_3", "3210_1", "5072_3", "3076_5", "3066_1", "1145_1", "2074_2", "2381_3", "4474_1", "2465_5", "2695_5", "2264_1", "758_3", "4595_3", "4948_1", "4110_1", "4295_5", "2188_3", "1754_1", "1176_1", "4051_1", "232_1", "1562_3", "2918_5", "3353_3", "2453_3", "3190_5", "1893_5", "1932_1", "267_1", "1230_5", "280_1", "1245_1", "4901_3", "233_3", "2817_3", "402_1", "819_3", "1117_1", "3953_1", "2951_1", "2866_1", "4890_1", "4028_5", "4934_1", "3369_5", "4850_7", "282_3", "809_1", "4973_1", "3621_1", "645_1", "4839_1", "4121_5", "1494_3", "2109_3", "430_1", "2189_1", "99_3", "1563_5", "2299_1", "2382_3", "3980_1", "278_3", "2898_1", "2405_1", "123_3", "3419_3", "4380_3", "4466_5", "3360_7", "4709_1", "431_1", "2215_1", "3237_1", "544_1", "4195_3", "4172_5", "1148_3", "2578_3", "3541_1", "1487_1", "2160_5", "3846_3", "12_1", "4521_1", "1790_1", "886_5", "1498_3", "3573_1", "3190_3", "3955_1", "100_1", "3315_1", "3725_1", "3090_1", "4765_1", "400_1", "2813_5", "3896_1", "4871_3", "4580_7", "1472_3", "302_1", "744_1", "1845_3", "1469_1", "5127_1", "688_1", "2615_7", "3264_1", "5017_1", "3391_1", "918_3", "1334_3", "4488_5", "116_5", "500_5", "35_3", "3848_3", "2764_1", "4357_1", "849_1", "2914_1", "1757_1", "243_7", "840_1", "902_1", "2052_3", "4072_3", "4761_5", "1951_1", "175_1", "1384_1", "2308_3", "4568_1", "2378_1", "1460_3", "2303_1", "3107_1", "2441_5", "336_1", "4764_1", "165_1", "2141_7", "2779_9", "1369_7", "4582_3", "2698_5", "908_3", "3175_5", "2769_1", "1677_3", "984_1", "531_1", "1749_3", "759_5", "3192_1", "642_1", "3421_5", "2284_3", "2964_1", "4020_1", "330_7", "4869_5", "846_1", "3781_3", "1231_1", "995_1", "2591_1", "3261_5", "3113_3", "2353_3", "1733_5", "4462_3", "2718_3", "3538_5", "4258_1", "2263_5", "1193_1", "2893_3", "1890_3", "1478_1", "3300_3", "1443_3", "4478_3", "1748_1", "3814_3", "2738_3", "1468_5", "4812_1", "2243_1", "4630_3", "4959_5", "2699_3", "1014_5", "3907_1", "4347_5", "1104_1", "996_3", "949_1", "2322_5", "3729_1", "5024_1", "3867_1", "2060_7", "4565_5", "239_1", "3257_3", "3334_3", "3147_1", "633_5", "4865_1", "487_3", "952_1", "839_1", "1398_3", "1182_1", "3001_3", "2091_5", "1327_1", "1097_1", "4835_5", "2230_3", "111_3", "4509_1", "3152_1", "2616_1", "4923_3", "4046_9", "590_3", "3257_1", "4298_5", "5059_3", "777_3", "2009_1", "4032_1", "2322_1", "3453_3", "1891_1", "537_3", "5104_3", "782_5", "2412_5", "4156_1", "4383_1", "4112_1", "4502_3", "2143_1", "871_3", "4954_3", "3628_1", "516_1", "5060_3", "924_1", "3769_1", "4116_1", "1554_3", "1743_1", "2381_1", "4258_5", "3445_1", "596_3", "4632_1", "421_1", "2048_1", "4053_5", "3945_3", "331_1", "3734_3", "4261_1", "2067_1", "2528_3", "2385_5", "4980_1", "2295_1", "2239_5", "975_1", "3809_1", "3232_1", "3241_3", "2711_3", "5092_1", "1530_1", "249_1", "1052_3", "4047_1", "3127_1", "534_5", "2102_1", "644_3", "5131_1", "394_1", "926_3", "3101_3", "2931_5", "3784_3", "1964_1", "1157_3", "4085_1", "3549_3", "2773_1", "261_1", "4731_1", "3608_1", "2853_1", "2367_3", "3139_3", "3707_1", "4696_1", "4807_3", "4040_5", "483_3", "1758_1", "2268_3", "362_1", "238_5", "4698_1", "2846_1", "1895_1", "468_3", "4622_1", "2156_1", "357_1", "3687_3", "1687_1", "1855_1", "3950_1", "5069_3", "2892_3", "434_5", "2713_3", "928_1", "1936_1", "3921_3", "1977_1", "3906_1", "3976_3", "4029_3", "3497_1", "4274_3", "2766_1", "4834_1", "3492_1", "2860_3", "3050_7", "3925_1", "1083_1", "475_5", "4109_3", "941_5", "3764_5", "1058_3", "1217_7", "1584_5", "904_1", "643_3", "1463_1", "909_1", "4045_1", "2152_5", "2139_3", "1192_1", "3159_1", "4667_1", "702_7", "3962_1", "3163_3", "481_1", "1031_1", "2037_1", "1368_1", "2078_5", "1894_1", "4861_1", "496_1", "3241_1", "5051_3", "3669_3", "2688_1", "1505_5", "658_3", "2694_3", "5047_1", "2225_3", "4328_7", "2836_3", "3867_3", "1049_3", "1985_3", "127_1", "2502_5", "4814_5", "4811_1", "2587_1", "4014_5", "4451_1", "2496_3", "3561_1", "2648_5", "3577_1", "1915_3", "491_1", "2834_5", "114_1", "2691_3", "270_1", "2446_1", "457_1", "2167_3", "4194_3", "3453_1", "3093_1", "4852_1", "4409_5", "3294_1", "2341_5", "784_5", "1074_1", "2656_1", "3075_3", "53_1", "735_1", "4788_3", "1778_1", "1580_1", "838_1", "1308_1", "1847_1", "1262_3", "52_1", "345_3", "3745_1", "2434_3", "1363_1", "288_5", "1885_5", "4189_3", "3260_1", "3004_1", "3698_13", "4259_1", "4257_1", "1740_1", "686_1", "2651_1", "4973_3", "701_9", "3172_3", "1333_5", "1679_5", "2562_1", "5029_1", "4851_1", "2998_1", "2619_3", "4154_3", "2731_1", "1675_3", "517_3", "4230_5", "315_1", "3866_1", "4579_1", "955_1", "331_5", "538_5", "3721_7", "3517_1", "4902_3", "4523_1", "1903_1", "2276_3", "965_1", "2087_1", "4666_1", "2598_3", "2318_1", "1332_3", "3280_1", "582_5", "194_1", "4858_1", "874_1", "442_5", "2468_3", "4123_1", "3511_5", "882_1", "5068_7", "40_1", "2152_1", "2082_3", "1889_1", "4405_1", "1680_1", "1099_5", "4934_5", "1654_3", "4351_5", "4126_1", "3803_9", "163_3", "3435_5", "4028_3", "4237_1", "3840_3", "3889_3", "3469_5", "2648_3", "1396_3", "3566_1", "1710_5", "707_9", "2262_3", "3434_3", "2146_5", "671_1", "1382_1", "2974_1", "4118_3", "951_3", "1317_3", "3143_7", "3592_5", "644_5", "2154_3", "1909_5", "3751_7", "4878_1", "325_3", "4520_1", "2614_5", "4179_1", "2163_3", "4960_1", "746_1", "4208_1", "2014_1", "3475_1", "3473_1", "3654_3", "384_1", "3434_5", "789_3", "2294_3", "4636_3", "609_3", "2662_1", "5011_1", "542_3", "5064_1", "427_3", "2923_1", "4310_5", "940_1", "2305_1", "1575_1", "4175_5", "4648_7", "2637_1", "1910_1", "600_1", "4575_1", "2575_1", "2456_1", "2794_3", "2073_1", "2558_7", "1408_3", "2783_1", "2653_1", "1332_1", "4844_5", "3402_1", "4078_5", "4936_1", "705_1", "4402_3", "5144_3", "2654_1", "3786_1", "3132_1", "4772_9", "1808_5", "3281_1", "3731_1", "2346_1", "1988_3", "4469_5", "3388_1", "5068_3", "3961_5", "3904_1", "1688_3", "767_3", "420_1", "914_1", "3800_5", "1970_1", "512_3", "465_3", "2734_1", "4471_1", "3026_1", "670_3", "4303_3", "2634_3", "2474_1", "2952_5", "388_1", "198_1", "4031_5", "2820_3", "1848_3", "3224_3", "4133_1", "4561_3", "277_1", "3847_1", "1367_1", "3120_3", "2785_1", "674_5", "3704_3", "3175_3", "2226_1", "2762_1", "2935_5", "404_1", "4680_1", "701_7", "3256_1", "2603_7", "4651_3", "773_3", "331_3", "1639_5", "1063_5", "96_3", "1982_3", "3669_1", "1470_5", "2197_3", "91_3", "798_5", "5083_1", "4148_2", "679_5", "1065_1", "4846_5", "4768_1", "789_1", "893_1", "1700_1", "20_3", "3720_3", "908_5", "4929_1", "1439_1", "1337_1", "3654_1", "1283_3", "3420_1", "436_3", "1268_5", "3497_3", "766_3", "1506_5", "2041_1", "320_3", "132_1", "3728_1", "4010_1", "4022_1", "1313_5", "4160_3", "582_3", "4802_3", "745_5", "1164_5", "1692_1", "2453_1", "387_1", "2201_5", "4041_5", "3362_3", "2261_1", "4301_3", "626_1", "2231_1", "1462_5", "2742_3", "2733_1", "1344_1", "2281_1", "4333_3", "205_1", "1719_1", "2523_5", "3851_3", "3020_3", "625_5", "4106_3", "2569_1", "950_5", "4558_1", "4657_3", "3661_1", "2594_5", "3336_1", "4368_3", "4662_3", "4211_1", "2284_1", "2794_5", "2393_1", "826_5", "3324_7", "4920_3", "615_5", "713_1", "3041_3", "1862_3", "235_5", "288_1", "860_3", "715_3", "2524_3", "4069_1", "1852_3", "4400_1", "2862_1", "3977_1", "402_3", "5111_5", "1366_5", "3811_1", "2007_1", "3472_3", "3874_3", "157_5", "2908_1", "1442_1", "4236_1", "671_3", "2287_1", "3999_3", "2346_3", "3641_3", "1619_5", "5077_1", "5162_5", "4223_5", "2268_1", "5048_1", "753_3", "3318_1", "1635_1", "87_1", "2430_1", "575_5", "2251_3", "3440_5", "2447_5", "4928_5", "4539_3", "4245_3", "5153_1", "4737_1", "867_1", "475_1", "2889_3", "709_3", "2070_3", "4684_3", "4829_1", "2971_5", "1591_1", "1007_1", "1676_7", "3104_5", "3283_3", "2252_3", "3333_1", "800_5", "1240_1", "1073_7", "5000_9", "4693_3", "2000_3", "1810_1", "574_1", "797_3", "4592_1", "2246_1", "3602_3", "208_5", "2719_3", "1887_5", "251_1", "4048_1", "3923_1", "614_1", "3927_1", "834_5", "4273_1", "4135_5", "4820_1", "4519_1", "4745_1", "4255_3", "1548_1", "3885_3", "1168_5", "3987_1", "1353_5", "2157_1", "3796_3", "1419_3", "1755_1", "3068_5", "4676_3", "3791_1", "310_1", "4958_3", "4301_5", "4893_7", "55_3", "1685_1", "2439_9", "4128_3", "138_3", "1810_5", "4389_1", "1813_9", "3571_3", "2203_1", "3550_3", "2348_1", "1468_1", "661_1", "2980_1", "2369_1", "1229_1", "1852_1", "2813_1", "1545_1", "4334_5", "2620_3", "4003_1", "1834_3", "3663_1", "2115_1", "2725_3", "467_3", "970_5", "3372_3", "4254_3", "1762_5", "2872_1", "63_1", "4187_5", "1578_3", "2833_3", "1566_1", "3995_3", "2841_1", "1431_1", "881_3", "3632_1", "3077_3", "1490_3", "4284_5", "3875_1", "2356_3", "3806_5", "498_1", "1070_7", "1037_3", "1096_1", "4277_3", "3508_5", "2548_1", "3285_1", "1509_1", "899_3", "2657_1", "2308_1", "2199_3", "1800_3", "356_5", "1984_1", "290_3", "182_1", "1836_3", "4354_5", "1019_1", "2735_5", "631_7", "4410_3", "3967_1", "4776_1", "623_3", "2677_1", "576_1", "4686_1", "1405_1", "1760_3", "4292_1", "3947_3", "1450_1", "435_1", "3864_1", "228_3", "3341_5", "3011_1", "4771_1", "4505_5", "3918_3", "1938_7", "2341_3", "3298_5", "4232_1", "2009_3", "509_3", "4072_1", "2449_1", "4346_3", "3897_1", "2069_1", "1638_5", "4905_3", "2895_1", "472_3", "949_5", "4105_1", "2534_5", "889_1", "4529_1", "93_7", "2813_3", "3255_1", "627_5", "2717_3", "631_5", "2029_5", "3678_1", "3108_3", "770_1", "234_1", "3059_1", "936_3", "4087_3", "4167_1", "2377_1", "2347_1", "4418_3", "2916_3", "4672_5", "1949_1", "279_3", "2540_1", "4869_1", "1441_1", "2359_5", "3549_5", "1474_9", "4377_1", "1159_1", "1967_1", "2804_3", "2325_1", "3355_5", "4791_1", "5134_3", "2033_1", "2113_1", "2988_3", "3329_1", "2754_3", "915_1", "3022_3", "4141_1", "3604_5", "3657_3", "1830_5", "4553_5", "1739_1", "5132_5", "1652_1", "3147_3", "4945_1", "2083_1", "2570_1", "4961_1", "4854_1", "1694_5", "443_1", "833_1", "4683_3", "3150_5", "3746_1", "1173_5", "2362_3", "892_3", "3401_3", "2812_1", "1507_1", "2912_1", "2975_1", "2572_1", "1680_3", "4419_1", "3154_1", "1792_3", "4492_5", "3080_3", "948_7", "4057_5", "719_1", "2844_1", "701_1", "1385_1", "589_9", "2522_1", "3409_1", "86_1", "3398_1", "1898_3", "973_3", "4452_1", "1479_1", "3803_1", "3939_5", "181_5", "742_1", "2991_1", "4381_1", "2703_7", "1767_1", "795_3", "3392_1", "1651_7", "1256_3", "326_1", "4774_1", "2727_1", "3911_3", "3081_1", "4748_5", "3894_7", "2224_3", "3205_1", "1150_1", "342_1", "2557_3", "2848_5", "3351_3", "4125_3", "10_1", "3185_3", "2495_3", "4853_1", "712_3", "1978_3", "1555_5", "1926_1", "563_1", "2801_7", "232_7", "3395_3", "4778_1", "2466_3", "4158_1", "1770_1", "3060_1", "4353_1", "2546_1", "2015_1", "987_1", "649_1", "4208_5", "1963_1", "2039_1", "2525_1", "2132_3", "2897_1", "580_1", "5168_5", "3974_3", "2688_5", "3648_3", "1109_5", "1707_1", "2727_5", "4083_1", "3209_5", "2901_1", "1071_1", "4747_3", "4792_3", "256_5", "3580_1", "1664_1", "4220_1", "4804_1", "126_5", "3658_5", "3575_3", "4231_5", "1411_5", "580_3", "161_1", "1547_5", "3776_5", "1971_1", "4609_3", "2664_1", "254_1", "3735_1", "510_1", "2700_1", "3050_1", "3335_3", "3094_1", "1676_1", "2482_3", "4393_3", "1861_1", "4323_5", "2891_6", "757_3", "2710_1", "1772_3", "3526_1", "4705_1", "3714_1", "1880_1", "4978_3", "1017_3", "382_1", "454_1", "877_1", "1644_1", "915_7", "4057_1", "1386_5", "3364_3", "707_7", "2627_1", "1221_5", "5055_3", "4149_3", "3675_5", "3909_1", "4970_1", "4946_3", "5140_1", "1440_5", "4316_1", "453_1", "2796_1", "4406_1", "1738_5", "4432_1", "1769_1", "1427_1", "204_3", "1789_1", "2896_3", "3705_1", "4327_3", "5150_1", "2526_1", "18_9", "961_3", "473_5", "3406_5", "1060_3", "1483_1", "963_1", "515_1", "4144_1", "1635_3", "1307_1", "3911_5", "1289_3", "4789_3", "625_7", "4644_7", "3807_3", "385_5", "3886_3", "3522_3", "1865_3", "2646_3", "3667_3", "1823_5", "2730_1", "2776_1", "2342_3", "3230_5", "4869_3", "1392_3", "3869_1", "4967_5", "3721_3", "3790_5", "2575_5", "4802_1", "3446_5", "725_1", "1532_3", "541_1", "1859_1", "3483_3", "5104_1", "917_3", "933_1", "338_1", "4308_1", "3935_1", "3587_1", "468_1", "3038_1", "2468_1"]
|
data/opendialkg/valid_data_id.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
["5096_1", "4866_1", "3761_3", "2839_5", "2758_1", "3790_1", "3267_1", "4040_3", "4426_1", "2153_1", "2808_1", "353_3", "1309_1", "3709_1", "2270_3", "2674_1", "662_1", "2520_3", "911_1", "687_5", "4777_3", "1075_5", "1194_3", "634_1", "388_5", "2423_1", "1582_1", "1665_3", "647_1", "3575_5", "2970_5", "2933_1", "290_1", "319_5", "1189_3", "4016_5", "2582_1", "2089_1", "1318_1", "2391_1", "4607_1", "1378_3", "2126_5", "3507_1", "4355_1", "1802_1", "1941_1", "1633_1", "1464_1", "2351_1", "4932_1", "2330_7", "2938_3", "1297_5", "86_7", "2040_3", "609_1", "5073_1", "5146_3", "934_1", "1720_1", "4537_5", "1207_3", "4779_3", "440_1", "1035_1", "1770_3", "4751_1", "3685_3", "172_3", "3276_3", "821_5", "506_3", "2116_3", "4987_5", "3717_1", "4472_1", "4722_1", "4370_1", "1735_1", "4922_7", "3227_3", "1558_5", "4476_7", "2315_1", "4507_1", "4883_1", "698_5", "2323_1", "1858_5", "3835_1", "2385_3", "4087_5", "3801_3", "83_3", "1801_1", "1933_1", "33_1", "1823_1", "1390_1", "3433_3", "2791_1", "4826_1", "997_5", "339_3", "632_1", "2034_1", "5041_1", "2619_1", "2085_1", "1295_1", "4314_5", "2219_3", "2066_3", "98_3", "4276_3", "1355_3", "4906_3", "244_5", "2397_1", "1869_3", "1637_1", "2329_1", "4606_1", "1182_3", "2932_1", "84_3", "3618_1", "4915_3", "2163_1", "4973_5", "4769_5", "866_1", "3323_3", "4995_3", "3708_1", "4603_3", "3666_5", "1213_1", "4288_5", "635_11", "4008_1", "4068_1", "605_1", "772_7", "3135_1", "668_1", "1087_1", "2747_1", "4169_1", "1273_5", "1202_3", "5143_1", "208_1", "3930_1", "2361_1", "51_5", "4114_3", "4385_3", "203_5", "1134_5", "2406_1", "2847_3", "1088_5", "1354_11", "2475_3", "4547_1", "117_1", "925_3", "341_1", "3604_1", "2594_1", "3899_3", "4272_3", "4538_5", "1608_3", "130_1", "187_1", "1045_1", "4878_3", "2785_5", "2148_1", "1331_7", "172_5", "2824_1", "701_5", "1416_9", "2011_5", "4906_1", "1378_1", "585_7", "3235_1", "3871_1", "3619_5", "4396_3", "3012_1", "1822_3", "80_1", "462_3", "1683_3", "4290_1", "1405_5", "2469_3", "1776_1", "2741_5", "3079_1", "3532_1", "3221_3", "274_3", "4501_1", "1205_1", "852_1", "4623_3", "2410_3", "1413_5", "179_1", "3138_1", "4411_1", "4935_5", "3942_7", "672_1", "5157_1", "3082_3", "936_1", "3615_1", "876_1", "1366_1", "489_3", "269_3", "2962_1", "4403_7", "4425_5", "2793_1", "2512_3", "2026_3", "700_7", "2894_1", "1846_5", "4099_1", "4884_5", "3321_1", "3396_1", "125_3", "2838_5", "2965_5", "3413_1", "2362_1", "4045_7", "4592_3", "2055_1", "3065_1", "791_1", "659_7", "3431_1", "1647_1", "1821_9", "722_3", "3889_1", "3924_3", "5160_5", "5105_5", "579_1", "734_1", "3272_1", "674_3", "5080_1", "3296_1", "3447_1", "4918_5", "1862_1", "3249_3", "639_1", "2022_1", "1120_1", "70_5", "719_3", "1087_5", "3774_1", "3024_3", "1887_1", "1661_3", "1857_5", "3353_1", "2111_3", "312_3", "4835_1", "679_1", "2447_1", "4728_1", "1445_1", "355_1", "184_1", "3327_5", "5076_3", "4319_1", "5139_1", "2915_1", "1324_1", "107_1", "3061_3", "1275_1", "1572_3", "459_1", "3148_1", "2596_5", "2669_3", "190_1", "1022_1", "2043_1", "835_5", "4431_1", "4817_3", "993_1", "4964_1", "2836_7", "2369_3", "2936_1", "2945_3", "1076_3", "1934_1", "2376_3", "1841_3", "2755_3", "3732_1", "3722_1", "2530_3", "3824_1", "2732_5", "258_5", "740_1", "2777_3", "2986_3", "421_3", "2984_1", "1650_1", "178_1", "558_1", "606_1", "2196_5", "4781_1", "3261_3", "2402_3", "4449_1", "4106_7", "2254_5", "2018_3", "3056_7", "3743_1", "1935_1", "5106_1", "1036_3", "520_1", "4429_1", "3391_11", "1212_1", "1987_1", "4837_3", "4997_3", "74_5", "3525_5", "3890_5", "2635_5", "912_5", "2012_1", "4099_3", "4277_9", "1080_3", "2835_1", "939_1", "4620_1", "2325_3", "3344_5", "2478_5", "2920_3", "620_1", "747_1", "1521_3", "4412_1", "2425_1", "4249_5", "4671_1", "221_1", "2054_3", "2757_5", "2175_1", "3771_1", "2876_5", "1024_1", "4292_3", "390_1", "3002_1", "3495_3", "1585_3", "2030_1", "5114_3", "3132_7", "3622_3", "285_5", "1472_1", "4453_7", "1529_3", "4924_1", "1830_1", "4427_1", "3008_1", "4354_3", "4320_1", "173_5", "997_7", "3252_1", "3457_1", "5096_5", "3144_3", "754_3", "1061_3", "513_5", "4454_3", "1420_1", "2051_5", "735_5", "253_3", "1230_1", "564_3", "4562_1", "3232_5", "2302_5", "3169_1", "3222_1", "2715_1", "4743_5", "195_1", "674_1", "2895_3", "2744_3", "3805_5", "1736_5", "4080_1", "273_1", "3040_1", "2571_5", "28_1", "4785_1", "5020_3", "72_3", "2991_3", "3958_1", "2235_3", "1005_3", "2091_7", "3985_5", "2997_3", "2096_1", "1285_1", "1157_5", "998_1", "1469_5", "1252_5", "3750_1", "5085_1", "4870_5", "1595_5", "914_3", "3569_3", "1541_1", "3463_11", "947_1", "2607_1", "3667_5", "3955_3", "4992_5", "831_5", "526_1", "1564_1", "321_5", "4210_1", "885_3", "796_5", "3616_1", "2999_1", "3161_1", "4243_3", "2424_5", "4459_1", "1406_1", "1785_1", "1200_1", "2604_5", "3454_1", "208_3", "3231_1", "533_1", "1082_5", "403_3", "4255_1", "653_3", "3563_1", "706_1", "1360_3", "5078_1", "3487_3", "2273_1", "1953_1", "2652_3", "2871_1", "4457_3", "3754_3", "1668_3", "3317_5", "4563_3", "3603_1", "2436_1", "2985_1", "3036_1", "1617_3", "2676_3", "5051_1", "1126_1", "3677_1", "4788_5", "2697_1", "2352_1", "1105_1", "1336_3", "5156_3", "4784_1", "1857_3", "1671_3", "2276_1", "1645_1", "3747_1", "1835_5", "753_1", "77_1", "3637_1", "2585_1", "716_1", "4540_1", "1379_1", "4579_3", "3262_1", "2797_3", "2155_5", "1872_1", "1214_5", "895_1", "2717_5", "2922_1", "2809_1", "1527_1", "4315_1", "4275_3", "3005_5", "1878_1", "3202_3", "41_5", "1631_1", "4665_1", "527_1", "4070_3", "4415_1", "3369_1", "629_1", "225_3", "3367_5", "2668_3", "4566_1", "1467_3", "3715_1", "4822_3", "4718_1", "4796_3", "410_5", "752_3", "89_1", "214_1", "4492_3", "2161_9", "2609_1", "4331_3", "4577_3", "3129_5", "4766_9", "1371_5", "227_1", "2784_3", "4594_1", "2730_5", "586_3", "5162_3", "1820_1", "1860_1", "2807_3", "2602_5", "1632_1", "2388_1", "3071_1", "2821_1", "4161_1", "1560_1", "1641_1", "2101_3", "4752_1", "2178_1", "2153_7", "1448_1", "1307_3", "4550_1", "710_1", "4031_3", "892_1", "4142_1", "3006_5", "3195_1", "1103_1", "1613_1", "1602_1", "118_1", "4733_1", "4965_1", "1018_1", "2328_1", "1855_3", "74_1", "1785_3", "3422_3", "5127_3", "5163_3", "1369_5", "3019_1", "587_7", "2292_1", "4379_1", "1876_1", "1188_1", "1922_1", "1282_1", "71_3", "1968_1", "212_1", "3009_3", "1107_1", "3844_3", "2309_1", "4532_1", "149_1", "4554_5", "477_3", "4736_1", "2645_1", "2788_1", "1322_1", "1869_1", "3630_1", "25_3", "222_3", "113_3", "1350_1", "3024_1", "4922_3", "2008_3", "4101_5", "2275_1", "1631_5", "441_3", "780_5", "448_1", "1059_1", "4395_3", "3263_1", "4016_1", "3070_5", "2304_1", "1772_1", "365_1", "3694_1", "1009_1", "3744_3", "104_1", "3539_1", "2624_5", "4512_1", "5150_5", "1000_3", "263_1", "2835_7", "893_7", "2440_7", "2698_1", "4694_1", "3106_1", "1288_1", "5142_5", "4618_1", "3377_1", "1424_1", "593_1", "1620_5", "4672_3", "648_1", "594_7", "201_1", "3171_1", "3598_1", "4213_5", "4999_1", "2983_5", "4354_1", "4717_5", "2028_1", "2736_1", "900_1", "3727_3", "4873_1", "3116_1", "4871_5", "4495_1", "3352_1", "2917_1", "1510_1", "4717_1", "3544_1", "1436_1", "3989_1", "2687_7", "813_1", "3750_5", "4723_1", "3260_5", "3117_1", "1251_1", "1517_3", "2686_1", "3653_3", "3374_1", "3324_1", "1175_3", "2611_5", "1220_1", "4720_5", "4295_3", "479_1", "4888_3", "4921_5", "4231_1", "1069_3", "3006_7", "3733_1", "1544_5", "1222_5", "1655_3", "4624_1", "931_3", "5158_3", "3478_3", "50_3", "1703_1", "587_5", "3126_1", "163_1", "723_1", "3923_5", "4824_3", "2458_1", "795_5", "1805_5", "4046_7", "1573_3", "3629_3", "5034_1", "4421_1", "1741_1", "4761_3", "1828_3", "4531_5", "779_3", "257_3", "919_3", "74_3", "2104_1", "2286_5", "458_3", "591_1", "4108_1", "742_7", "2011_3", "3813_1", "3513_1", "877_3", "1976_5", "1169_3", "4498_1", "2299_3", "1030_5", "3993_3", "4517_1", "1144_1", "1547_3", "4770_1", "4060_1", "263_3", "1909_1", "4001_1", "458_1", "3359_5", "754_1", "653_1", "2782_3", "3794_1", "4325_3", "1534_1", "112_3", "4025_1", "3680_3", "2816_1", "4587_1", "4228_1", "1261_7", "219_1", "775_1", "4203_5", "7_3", "1868_3", "2038_5", "3840_5", "1398_5", "4475_3", "681_3", "1709_5", "2906_5", "4609_1", "1788_1", "4908_1", "3779_3", "733_3", "4046_1", "1576_1", "3819_1", "3920_3", "1002_1", "4011_1", "4281_1", "3305_3", "709_5", "4522_5", "5_3", "3053_1", "4287_1", "4579_7", "3335_5", "494_1", "3662_1", "352_1", "651_1", "1414_1", "2882_3", "3819_3", "4843_1", "3915_1", "680_7", "608_1", "4240_1", "111_1", "2213_1", "3670_1", "3998_1", "3426_3", "3638_3", "905_3", "607_1", "4685_3", "742_3", "4971_5", "2885_3", "1224_1", "3562_1", "1048_1", "1701_1", "1844_1", "4801_5", "2321_1", "418_1", "71_1", "1160_3", "4309_3", "3865_1", "3470_3", "88_3", "4302_3", "2158_1", "1028_1", "2621_5", "5044_5", "1779_3", "3300_1", "1338_3", "2544_3", "3238_1", "1185_3", "1690_1", "1614_3", "4496_3", "4279_1", "4122_1", "2722_3", "4975_3", "4345_5", "5148_7", "1428_3", "5120_5", "1781_5", "2667_5", "4473_1", "1026_3", "4028_1", "1574_3", "4677_1", "2763_1", "1159_5", "1018_3", "3096_7", "4536_1", "3718_3", "4259_3", "2134_5", "3274_3", "1553_7", "3107_5", "3410_3", "2194_1", "2647_3", "2508_1", "1372_3", "1694_1", "226_5", "1897_1", "2146_3", "2085_7", "4359_1", "1052_1", "3103_5", "3134_3", "150_3", "4388_1", "1032_1", "4440_1", "1531_7", "2294_5", "4989_3", "1364_3", "1454_1", "4795_3", "1207_1", "5121_5", "4583_1", "1278_5", "1089_1", "4311_1", "3789_3", "1333_1", "2097_1", "4227_1", "2256_3", "3406_1", "1982_5", "985_5", "4483_3", "3652_1", "1535_7", "4644_1", "1737_3", "455_1", "3793_3", "4943_1", "482_1", "312_1", "2536_5", "4524_1", "5144_1", "4406_3", "584_1", "1009_5", "3459_3", "613_5", "1833_1", "337_3", "2579_1", "1588_1", "2120_5", "4533_1", "258_1", "1247_3", "4451_5", "486_1", "4423_1", "347_1", "2483_1", "4092_3", "140_3", "3259_1", "3378_1", "598_1", "4739_1", "2679_5", "1110_1", "1821_1", "2511_1", "1208_1", "2533_5", "711_3", "2609_3", "2386_5", "2327_1", "323_1", "2937_1", "3581_5", "1040_1", "124_5", "3796_5", "1425_3", "391_3", "2575_3", "3461_3", "948_3", "871_5", "3960_1", "3278_3", "730_1", "1561_1", "572_9", "4191_3", "4224_1", "369_1", "1956_5", "1974_5", "4934_3", "292_1", "2343_1", "2675_3", "2053_1", "2566_3", "3168_3", "986_3", "1788_5", "3427_3", "3605_1", "5049_3", "3198_3", "3228_5", "779_9", "291_5", "3482_1", "2066_5", "503_1", "2257_1", "3724_3", "1357_3", "3596_3", "4403_9", "3018_1", "3248_1", "951_5", "2411_5", "3509_1", "3039_1", "522_3", "2520_7", "4543_3", "243_5", "4184_3", "647_5", "1257_1", "3887_3", "603_1", "1983_1", "2659_1", "5149_1", "2601_3", "240_5", "357_5", "1463_3", "51_3", "1773_3", "4274_1", "1813_7", "437_5", "2302_3", "1607_5", "3655_5", "1816_3", "562_3", "3763_1", "958_1", "250_1", "622_1", "2232_1", "4836_7", "3357_1", "802_1", "1153_1", "2750_3", "960_5", "4661_1", "4092_5", "3600_3", "1644_3", "3055_1", "2090_5", "741_3", "5010_3", "2409_3", "2183_1", "4046_5", "1006_3", "4639_3", "3888_1", "1497_1", "1925_1", "974_1", "4434_3", "4087_1", "1038_3", "1243_1", "1629_1", "84_1", "1403_1", "319_1", "3287_5", "93_1", "1798_1", "3880_1", "1038_1", "1288_3", "4401_3", "30_3", "224_1", "738_9", "3088_1", "413_1", "4411_3", "834_1", "2884_5", "334_1", "816_1", "2641_6", "1726_1", "2671_7", "4166_1", "3309_3", "2972_1", "3073_1", "1333_3", "5154_5", "2488_3", "4247_1", "4180_3", "85_5", "887_1", "4174_1", "3957_3", "3863_1", "1500_1", "370_7", "4349_3", "681_1", "1658_1", "683_1", "1552_1", "4205_5", "4409_1", "39_5", "2928_3", "3134_1", "4132_5", "2714_1", "5082_1", "1795_5", "1615_1", "4931_5", "4589_3", "1357_1", "3341_1", "2903_1", "1164_3", "4173_1", "4745_5", "2519_1", "4227_5", "1747_3"]
|
data/opendialkg_eval/process.py
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
from copy import copy
|
3 |
+
|
4 |
+
with open("../opendialkg/train_data_id.json", "r", encoding="utf-8") as f:
|
5 |
+
train_data_id = json.load(f)
|
6 |
+
train_data_id_set = set(train_data_id)
|
7 |
+
print(len(train_data_id_set))
|
8 |
+
|
9 |
+
with open("../opendialkg/valid_data_id.json", "r", encoding="utf-8") as f:
|
10 |
+
valid_data_id = json.load(f)
|
11 |
+
valid_data_id_set = set(valid_data_id)
|
12 |
+
print(len(valid_data_id_set))
|
13 |
+
|
14 |
+
with open("../opendialkg/test_data_id.json", "r", encoding="utf-8") as f:
|
15 |
+
test_data_id = json.load(f)
|
16 |
+
test_data_id_set = set(test_data_id)
|
17 |
+
print(len(test_data_id_set))
|
18 |
+
|
19 |
+
with open("../opendialkg/data.jsonl", "r", encoding="utf-8") as f, open(
|
20 |
+
"train_data_processed.jsonl", "w", encoding="utf-8"
|
21 |
+
) as train_w, open(
|
22 |
+
"valid_data_processed.jsonl", "w", encoding="utf-8"
|
23 |
+
) as valid_w, open(
|
24 |
+
"test_data_processed.jsonl", "w", encoding="utf-8"
|
25 |
+
) as test_w:
|
26 |
+
lines = f.readlines()
|
27 |
+
for line in lines:
|
28 |
+
dialog = json.loads(line)
|
29 |
+
context_list = []
|
30 |
+
entity_list = []
|
31 |
+
for message in dialog["dialog"]:
|
32 |
+
role = message["role"]
|
33 |
+
text = message["text"]
|
34 |
+
# mask_text = message['text_template']
|
35 |
+
entity_turn = message["entity"]
|
36 |
+
item_turn = message["item"]
|
37 |
+
dialog_turn_id = (
|
38 |
+
str(dialog["dialog_id"]) + "_" + str(message["turn_id"])
|
39 |
+
)
|
40 |
+
|
41 |
+
if dialog_turn_id in train_data_id_set:
|
42 |
+
data = {
|
43 |
+
"dialog_id": dialog["dialog_id"],
|
44 |
+
"turn_id": message["turn_id"],
|
45 |
+
"context": copy(context_list),
|
46 |
+
"entity": copy(entity_list),
|
47 |
+
"rec": copy(item_turn),
|
48 |
+
"resp": text,
|
49 |
+
}
|
50 |
+
train_w.write(json.dumps(data, ensure_ascii=False) + "\n")
|
51 |
+
|
52 |
+
elif dialog_turn_id in valid_data_id_set:
|
53 |
+
data = {
|
54 |
+
"dialog_id": dialog["dialog_id"],
|
55 |
+
"turn_id": message["turn_id"],
|
56 |
+
"context": copy(context_list),
|
57 |
+
"entity": copy(entity_list),
|
58 |
+
"rec": copy(item_turn),
|
59 |
+
"resp": text,
|
60 |
+
}
|
61 |
+
valid_w.write(json.dumps(data, ensure_ascii=False) + "\n")
|
62 |
+
|
63 |
+
elif dialog_turn_id in test_data_id_set:
|
64 |
+
data = {
|
65 |
+
"dialog_id": dialog["dialog_id"],
|
66 |
+
"turn_id": message["turn_id"],
|
67 |
+
"context": copy(context_list),
|
68 |
+
"entity": copy(entity_list),
|
69 |
+
"rec": copy(item_turn),
|
70 |
+
"resp": text,
|
71 |
+
}
|
72 |
+
test_w.write(json.dumps(data, ensure_ascii=False) + "\n")
|
73 |
+
|
74 |
+
context_list.append(text)
|
75 |
+
entity_list.extend(entity_turn)
|
76 |
+
|
77 |
+
with open("train_data_processed.jsonl", "r", encoding="utf-8") as f:
|
78 |
+
lines = f.readlines()
|
79 |
+
print("train:", len(lines))
|
80 |
+
|
81 |
+
with open("valid_data_processed.jsonl", "r", encoding="utf-8") as f:
|
82 |
+
lines = f.readlines()
|
83 |
+
print("valid:", len(lines))
|
84 |
+
|
85 |
+
with open("test_data_processed.jsonl", "r", encoding="utf-8") as f:
|
86 |
+
lines = f.readlines()
|
87 |
+
print("test:", len(lines))
|
data/opendialkg_eval/test_data_processed.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg_eval/train_data_processed.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/opendialkg_eval/valid_data_processed.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/GT_corpus_tokens.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/corpus/original_corpus.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/corpus/preprocessed_corpus.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/corpus/preprocessed_corpus_no_stopwords.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/entity2id.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/entity2type.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/id2info.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/item_ids.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[0, 8, 16, 24, 34, 45, 53, 59, 68, 76, 82, 87, 95, 100, 106, 115, 125, 132, 137, 143, 149, 154, 160, 167, 174, 182, 189, 197, 205, 213, 218, 226, 233, 241, 251, 258, 267, 272, 279, 282, 289, 295, 300, 307, 315, 321, 328, 335, 342, 348, 356, 362, 369, 374, 382, 390, 396, 402, 407, 415, 424, 430, 438, 444, 450, 456, 460, 467, 474, 482, 490, 498, 500, 507, 512, 519, 528, 534, 541, 549, 555, 558, 565, 572, 580, 586, 591, 599, 606, 612, 617, 622, 628, 636, 641, 647, 654, 660, 666, 673, 678, 684, 691, 696, 701, 706, 711, 717, 724, 730, 738, 743, 751, 758, 762, 767, 772, 777, 782, 788, 794, 796, 804, 809, 816, 823, 829, 834, 840, 847, 852, 858, 865, 870, 875, 881, 889, 895, 903, 910, 916, 920, 926, 932, 937, 943, 950, 955, 961, 969, 976, 982, 987, 994, 1000, 1009, 1017, 1021, 1026, 1034, 1040, 1045, 1053, 1061, 1067, 1074, 1079, 1084, 1090, 1099, 1104, 1111, 1116, 1121, 1127, 1133, 1138, 1141, 1148, 1153, 1161, 1165, 1170, 1177, 1182, 1188, 1193, 1200, 1205, 1211, 1217, 1225, 1229, 1234, 1241, 1245, 1250, 1256, 1262, 1266, 1272, 1278, 1283, 1290, 1294, 1300, 1305, 1312, 1319, 1324, 1331, 1337, 1342, 1349, 1357, 1365, 1371, 1379, 1384, 1391, 1397, 1400, 1407, 1413, 1419, 1424, 1429, 1435, 1442, 1447, 1451, 1458, 1463, 1469, 1475, 1481, 1486, 1490, 1497, 1503, 1510, 1516, 1521, 1526, 1533, 1539, 1544, 1547, 1554, 1559, 1567, 1572, 1575, 1579, 1584, 1591, 1598, 1602, 1610, 1615, 1619, 1625, 1633, 1639, 1644, 1648, 1654, 1662, 1670, 1675, 1679, 1685, 1692, 1697, 1701, 1705, 1711, 1716, 1724, 1729, 1734, 1739, 1745, 1750, 1757, 1763, 1765, 1770, 1776, 1782, 1786, 1792, 1796, 1803, 1809, 1812, 1818, 1823, 1824, 1830, 1834, 1836, 1841, 1847, 1853, 1860, 1868, 1872, 1879, 1886, 1893, 1897, 1903, 1909, 1916, 1919, 1926, 1931, 1933, 1938, 1945, 1951, 1956, 1962, 1967, 1971, 1978, 1984, 1991, 1996, 1999, 2000, 2006, 2012, 2019, 2024, 2032, 2036, 2042, 2048, 2049, 2056, 2063, 2068, 2069, 2077, 2081, 2087, 2092, 2096, 2102, 2109, 2116, 2121, 2126, 2132, 2135, 2142, 2147, 2152, 2159, 2164, 2169, 2175, 2183, 2189, 2194, 2200, 2206, 2213, 2219, 2223, 2228, 2232, 2239, 2245, 2253, 2258, 2264, 2271, 2277, 2282, 2287, 2295, 2301, 2306, 2310, 2314, 2321, 2326, 2330, 2334, 2342, 2346, 2352, 2358, 2360, 2365, 2370, 2377, 2379, 2386, 2391, 2399, 2405, 2408, 2413, 2420, 2425, 2430, 2438, 2442, 2447, 2453, 2458, 2463, 2471, 2476, 2483, 2489, 2493, 2495, 2503, 2507, 2513, 2518, 2525, 2530, 2535, 2542, 2546, 2554, 2561, 2566, 2574, 2580, 2586, 2589, 2594, 2602, 2606, 2611, 2616, 2623, 2627, 2630, 2636, 2642, 2649, 2655, 2660, 2666, 2671, 2675, 2681, 2683, 2688, 2693, 2694, 2700, 2705, 2712, 2713, 2723, 2729, 2735, 2740, 2742, 2749, 2752, 2755, 2762, 2768, 2773, 2778, 2785, 2791, 2794, 2799, 2804, 2807, 2812, 2817, 2823, 2828, 2833, 2836, 2840, 2844, 2850, 2855, 2861, 2866, 2870, 2877, 2882, 2887, 2891, 2897, 2903, 2908, 2913, 2919, 2924, 2931, 2936, 2943, 2950, 2956, 2957, 2963, 2970, 2975, 2978, 2984, 2988, 2993, 3000, 3006, 3012, 3014, 3020, 3026, 3031, 3035, 3042, 3045, 3048, 3049, 3053, 3058, 3063, 3070, 3071, 3072, 3078, 3084, 3090, 3092, 3100, 3104, 3112, 3117, 3118, 3123, 3128, 3133, 3138, 3145, 3151, 3157, 3164, 3172, 3178, 3183, 3191, 3197, 3201, 3207, 3215, 3218, 3220, 3226, 3230, 3234, 3242, 3248, 3254, 3258, 3262, 3269, 3274, 3280, 3285, 3289, 3295, 3298, 3301, 3309, 3313, 3317, 3323, 3328, 3332, 3339, 3344, 3347, 3353, 3360, 3365, 3372, 3376, 3382, 3387, 3395, 3400, 3404, 3409, 3413, 3416, 3423, 3428, 3432, 3433, 3440, 3442, 3448, 3450, 3454, 3460, 3464, 3469, 3472, 3478, 3483, 3489, 3492, 3498, 3502, 3504, 3511, 3515, 3519, 3523, 3529, 3534, 3540, 3548, 3556, 3561, 3566, 3570, 3572, 3578, 3579, 3582, 3590, 3596, 3602, 3608, 3614, 3622, 3626, 3632, 3633, 3640, 3643, 3649, 3654, 3656, 3661, 3664, 3668, 3670, 3677, 3682, 3689, 3696, 3700, 3704, 3709, 3712, 3717, 3721, 3728, 3732, 3738, 3742, 3751, 3756, 3760, 3763, 3770, 3777, 3782, 3787, 3792, 3798, 3804, 3806, 3808, 3812, 3819, 3824, 3827, 3833, 3837, 3839, 3843, 3845, 3851, 3857, 3865, 3871, 3878, 3884, 3888, 3896, 3900, 3907, 3913, 3917, 3921, 3924, 3927, 3932, 3939, 3945, 3949, 3950, 3955, 3960, 3963, 3967, 3973, 3977, 3981, 3983, 3987, 3992, 3997, 3999, 4001, 4007, 4014, 4019, 4028, 4033, 4039, 4042, 4047, 4052, 4057, 4060, 4066, 4070, 4076, 4078, 4083, 4085, 4092, 4099, 4107, 4114, 4119, 4122, 4128, 4130, 4131, 4137, 4143, 4147, 4153, 4159, 4167, 4170, 4175, 4180, 4187, 4191, 4197, 4202, 4211, 4218, 4224, 4230, 4237, 4241, 4246, 4252, 4258, 4263, 4269, 4272, 4276, 4282, 4285, 4289, 4294, 4298, 4301, 4304, 4311, 4314, 4319, 4321, 4325, 4330, 4334, 4339, 4342, 4348, 4350, 4355, 4359, 4363, 4366, 4370, 4376, 4378, 4382, 4387, 4393, 4401, 4407, 4414, 4419, 4424, 4431, 4438, 4443, 4448, 4454, 4458, 4464, 4469, 4473, 4477, 4483, 4488, 4489, 4494, 4500, 4507, 4512, 4519, 4524, 4528, 4533, 4535, 4540, 4544, 4549, 4554, 4557, 4561, 4567, 4572, 4574, 4577, 4583, 4587, 4593, 4596, 4602, 4606, 4612, 4615, 4620, 4623, 4627, 4633, 4637, 4642, 4647, 4654, 4659, 4667, 4672, 4679, 4684, 4689, 4694, 4697, 4702, 4705, 4708, 4715, 4720, 4724, 4727, 4733, 4739, 4745, 4748, 4750, 4753, 4760, 4765, 4772, 4777, 4785, 4790, 4796, 4799, 4801, 4804, 4807, 4811, 4816, 4824, 4827, 4831, 4837, 4842, 4847, 4853, 4859, 4865, 4871, 4873, 4877, 4882, 4888, 4894, 4902, 4908, 4912, 4919, 4920, 4926, 4932, 4936, 4942, 4947, 4951, 4956, 4960, 4966, 4972, 4978, 4983, 4988, 4994, 4999, 5005, 5012, 5020, 5027, 5033, 5038, 5044, 5047, 5053, 5059, 5064, 5070, 5073, 5078, 5083, 5089, 5091, 5098, 5105, 5107, 5113, 5120, 5124, 5128, 5134, 5137, 5140, 5143, 5148, 5153, 5159, 5165, 5169, 5173, 5176, 5179, 5183, 5186, 5187, 5193, 5199, 5202, 5206, 5210, 5213, 5219, 5223, 5225, 5231, 5235, 5241, 5242, 5246, 5249, 5255, 5260, 5262, 5267, 5272, 5277, 5279, 5284, 5291, 5295, 5301, 5306, 5311, 5317, 5322, 5326, 5333, 5336, 5341, 5343, 5349, 5351, 5355, 5360, 5365, 5370, 5376, 5379, 5385, 5386, 5394, 5397, 5404, 5407, 5411, 5412, 5413, 5420, 5422, 5424, 5429, 5435, 5436, 5441, 5448, 5456, 5461, 5468, 5475, 5479, 5482, 5485, 5488, 5495, 5500, 5506, 5511, 5514, 5518, 5521, 5524, 5528, 5531, 5533, 5536, 5543, 5548, 5552, 5553, 5559, 5563, 5569, 5577, 5583, 5588, 5595, 5596, 5601, 5606, 5609, 5612, 5617, 5618, 5620, 5624, 5631, 5635, 5641, 5646, 5650, 5652, 5658, 5662, 5670, 5675, 5682, 5689, 5692, 5695, 5700, 5707, 5714, 5718, 5723, 5728, 5733, 5738, 5746, 5752, 5754, 5759, 5762, 5768, 5774, 5780, 5786, 5787, 5793, 5799, 5801, 5806, 5813, 5818, 5821, 5828, 5835, 5841, 5848, 5853, 5856, 5862, 5866, 5872, 5875, 5878, 5880, 5881, 5885, 5889, 5892, 5899, 5905, 5907, 5914, 5919, 5921, 5924, 5928, 5933, 5937, 5942, 5947, 5949, 5952, 5953, 5958, 5962, 5968, 5970, 5978, 5985, 5989, 5990, 5997, 6004, 6005, 6011, 6016, 6020, 6027, 6032, 6037, 6043, 6047, 6048, 6053, 6057, 6062, 6068, 6074, 6082, 6085, 6090, 6093, 6098, 6105, 6108, 6113, 6119, 6126, 6131, 6132, 6135, 6139, 6144, 6146, 6150, 6157, 6162, 6165, 6170, 6177, 6182, 6185, 6189, 6197, 6201, 6206, 6210, 6214, 6219, 6224, 6231, 6238, 6242, 6250, 6253, 6260, 6266, 6271, 6276, 6277, 6281, 6284, 6291, 6297, 6302, 6304, 6308, 6309, 6312, 6314, 6316, 6323, 6325, 6329, 6334, 6339, 6345, 6350, 6354, 6358, 6364, 6370, 6373, 6378, 6383, 6387, 6392, 6396, 6403, 6408, 6412, 6415, 6417, 6418, 6422, 6424, 6430, 6432, 6440, 6447, 6452, 6458, 6464, 6468, 6471, 6473, 6478, 6482, 6485, 6492, 6497, 6501, 6503, 6508, 6514, 6518, 6523, 6524, 6531, 6536, 6541, 6544, 6547, 6553, 6555, 6560, 6564, 6566, 6571, 6573, 6578, 6585, 6588, 6591, 6593, 6595, 6599, 6602, 6608, 6615, 6618, 6623, 6627, 6631, 6634, 6638, 6646, 6649, 6652, 6656, 6659, 6666, 6669, 6671, 6674, 6680, 6683, 6690, 6695, 6699, 6703, 6706, 6712, 6720, 6725, 6730, 6737, 6743, 6750, 6757, 6763, 6766, 6769, 6773, 6777, 6779, 6782, 6789, 6797, 6799, 6805, 6808, 6813, 6818, 6825, 6829, 6832, 6838, 6842, 6848, 6852, 6856, 6861, 6864, 6867, 6869, 6875, 6879, 6884, 6887, 6892, 6895, 6899, 6901, 6906, 6910, 6915, 6920, 6925, 6931, 6934, 6942, 6947, 6953, 6959, 6963, 6966, 6969, 6975, 6980, 6981, 6985, 6993, 6996, 7001, 7009, 7013, 7014, 7021, 7027, 7033, 7036, 7040, 7047, 7053, 7057, 7064, 7069, 7074, 7082, 7085, 7091, 7095, 7099, 7103, 7109, 7114, 7116, 7121, 7126, 7128, 7130, 7131, 7133, 7140, 7144, 7149, 7154, 7159, 7160, 7165, 7170, 7174, 7180, 7182, 7186, 7188, 7192, 7195, 7201, 7205, 7208, 7213, 7218, 7225, 7227, 7230, 7233, 7238, 7241, 7249, 7253, 7255, 7262, 7264, 7268, 7273, 7280, 7286, 7289, 7291, 7293, 7295, 7301, 7304, 7309, 7315, 7320, 7322, 7327, 7330, 7334, 7339, 7345, 7352, 7357, 7362, 7366, 7369, 7373, 7380, 7387, 7389, 7392, 7397, 7402, 7405, 7406, 7408, 7411, 7419, 7425, 7429, 7432, 7434, 7435, 7439, 7442, 7444, 7449, 7452, 7459, 7463, 7470, 7473, 7477, 7484, 7489, 7494, 7497, 7502, 7503, 7506, 7513, 7517, 7522, 7523, 7526, 7527, 7532, 7536, 7541, 7545, 7551, 7556, 7558, 7562, 7564, 7570, 7575, 7580, 7586, 7590, 7593, 7599, 7603, 7607, 7614, 7615, 7616, 7623, 7628, 7632, 7633, 7638, 7644, 7650, 7655, 7658, 7662, 7666, 7671, 7676, 7680, 7682, 7685, 7687, 7693, 7696, 7698, 7704, 7710, 7716, 7719, 7724, 7729, 7732, 7734, 7739, 7745, 7750, 7754, 7755, 7758, 7761, 7766, 7769, 7775, 7776, 7782, 7787, 7792, 7793, 7796, 7803, 7809, 7815, 7819, 7821, 7827, 7829, 7835, 7841, 7846, 7851, 7854, 7857, 7860, 7864, 7868, 7875, 7877, 7882, 7888, 7890, 7895, 7904, 7907, 7911, 7919, 7925, 7930, 7934, 7935, 7939, 7941, 7944, 7946, 7948, 7951, 7952, 7956, 7962, 7966, 7971, 7976, 7982, 7985, 7986, 7992, 7998, 8004, 8006, 8010, 8016, 8021, 8028, 8031, 8038, 8042, 8047, 8053, 8058, 8059, 8062, 8069, 8078, 8079, 8081, 8086, 8088, 8090, 8097, 8104, 8110, 8113, 8120, 8123, 8128, 8131, 8134, 8138, 8141, 8146, 8149, 8157, 8161, 8166, 8168, 8174, 8180, 8183, 8184, 8190, 8196, 8199, 8206, 8207, 8213, 8216, 8218, 8219, 8220, 8221, 8225, 8227, 8231, 8234, 8239, 8242, 8243, 8245, 8249, 8253, 8255, 8261, 8265, 8272, 8277, 8279, 8282, 8287, 8291, 8293, 8296, 8301, 8302, 8307, 8311, 8316, 8318, 8324, 8331, 8335, 8341, 8343, 8347, 8349, 8353, 8360, 8365, 8368, 8369, 8373, 8376, 8380, 8383, 8389, 8394, 8395, 8396, 8402, 8406, 8411, 8417, 8422, 8425, 8433, 8439, 8440, 8443, 8447, 8449, 8450, 8456, 8464, 8469, 8471, 8475, 8481, 8487, 8491, 8496, 8498, 8506, 8514, 8520, 8522, 8523, 8528, 8529, 8536, 8541, 8547, 8549, 8557, 8561, 8563, 8566, 8570, 8577, 8580, 8585, 8587, 8592, 8597, 8603, 8604, 8606, 8611, 8618, 8622, 8627, 8631, 8635, 8638, 8644, 8645, 8652, 8660, 8664, 8667, 8671, 8674, 8679, 8681, 8684, 8686, 8691, 8693, 8699, 8702, 8708, 8711, 8716, 8721, 8723, 8727, 8734, 8735, 8737, 8743, 8750, 8755, 8759, 8764, 8766, 8768, 8775, 8781, 8788, 8793, 8794, 8798, 8801, 8808, 8809, 8814, 8820, 8825, 8828, 8832, 8834, 8840, 8843, 8849, 8855, 8862, 8864, 8870, 8873, 8878, 8881, 8886, 8890, 8896, 8900, 8903, 8909, 8914, 8917, 8922, 8923, 8929, 8932, 8936, 8943, 8944, 8948, 8953, 8959, 8967, 8969, 8973, 8978, 8984, 8988, 8993, 8996, 9003, 9004, 9008, 9015, 9018, 9019, 9022, 9027, 9033, 9035, 9039, 9043, 9049, 9054, 9056, 9058, 9060, 9065, 9068, 9073, 9080, 9086, 9090, 9091, 9098, 9101, 9108, 9111, 9115, 9120, 9125, 9130, 9134, 9140, 9143, 9145, 9151, 9156, 9158, 9160, 9162, 9166, 9169, 9174, 9179, 9182, 9185, 9191, 9197, 9204, 9208, 9211, 9214, 9221, 9226, 9232, 9238, 9241, 9244, 9249, 9254, 9256, 9260, 9265, 9269, 9271, 9272, 9275, 9279, 9284, 9290, 9297, 9300, 9301, 9305, 9313, 9315, 9316, 9321, 9323, 9329, 9330, 9334, 9338, 9343, 9348, 9353, 9357, 9361, 9365, 9368, 9372, 9376, 9383, 9387, 9392, 9397, 9399, 9404, 9406, 9410, 9415, 9418, 9423, 9426, 9430, 9435, 9438, 9440, 9444, 9450, 9456, 9461, 9468, 9470, 9473, 9475, 9482, 9488, 9493, 9496, 9501, 9508, 9510, 9513, 9514, 9518, 9522, 9524, 9526, 9530, 9533, 9535, 9538, 9539, 9541, 9544, 9550, 9554, 9558, 9561, 9565, 9568, 9573, 9576, 9580, 9586, 9587, 9588, 9590, 9594, 9601, 9609, 9613, 9617, 9624, 9628, 9633, 9635, 9640, 9645, 9648, 9654, 9656, 9663, 9668, 9672, 9673, 9678, 9681, 9683, 9689, 9690, 9695, 9698, 9703, 9706, 9709, 9715, 9720, 9724, 9726, 9731, 9732, 9739, 9743, 9748, 9751, 9756, 9757, 9763, 9771, 9779, 9780, 9781, 9787, 9790, 9791, 9796, 9798, 9801, 9803, 9807, 9808, 9812, 9814, 9817, 9822, 9827, 9829, 9835, 9837, 9844, 9850, 9852, 9855, 9861, 9864, 9867, 9872, 9876, 9880, 9884, 9885, 9889, 9891, 9898, 9905, 9908, 9910, 9915, 9919, 9923, 9924, 9930, 9932, 9935, 9939, 9942, 9949, 9950, 9954, 9958, 9967, 9973, 9979, 9982, 9984, 9986, 9987, 9993, 9996, 10003, 10009, 10010, 10013, 10015, 10020, 10025, 10027, 10031, 10035, 10038, 10041, 10046, 10053, 10060, 10064, 10066, 10069, 10073, 10078, 10083, 10088, 10091, 10093, 10098, 10102, 10106, 10110, 10111, 10116, 10121, 10123, 10127, 10130, 10133, 10138, 10141, 10146, 10151, 10152, 10157, 10158, 10163, 10170, 10173, 10176, 10182, 10183, 10185, 10189, 10194, 10198, 10200, 10204, 10209, 10215, 10218, 10219, 10223, 10227, 10229, 10235, 10240, 10246, 10250, 10253, 10254, 10258, 10259, 10264, 10267, 10271, 10272, 10277, 10281, 10286, 10290, 10293, 10299, 10304, 10308, 10312, 10314, 10321, 10325, 10328, 10333, 10336, 10340, 10343, 10346, 10351, 10353, 10359, 10362, 10366, 10369, 10374, 10377, 10379, 10380, 10385, 10391, 10393, 10394, 10398, 10404, 10408, 10411, 10413, 10415, 10419, 10425, 10427, 10433, 10441, 10445, 10448, 10450, 10452, 10453, 10460, 10466, 10470, 10473, 10478, 10482, 10486, 10491, 10498, 10501, 10504, 10507, 10514, 10517, 10518, 10523, 10531, 10536, 10538, 10544, 10545, 10547, 10551, 10553, 10556, 10559, 10563, 10571, 10576, 10578, 10581, 10586, 10590, 10593, 10596, 10599, 10601, 10603, 10605, 10611, 10616, 10619, 10623, 10625, 10627, 10629, 10632, 10636, 10642, 10647, 10654, 10658, 10665, 10668, 10669, 10674, 10680, 10685, 10687, 10691, 10693, 10700, 10703, 10708, 10713, 10719, 10724, 10730, 10737, 10742, 10747, 10749, 10752, 10753, 10755, 10756, 10761, 10765, 10768, 10772, 10775, 10778, 10779, 10781, 10782, 10789, 10790, 10796, 10804, 10810, 10813, 10815, 10818, 10819, 10823, 10826, 10827, 10832, 10835, 10837, 10838, 10845, 10848, 10854, 10856, 10862, 10864, 10870, 10873, 10875, 10881, 10882, 10885, 10892, 10896, 10899, 10901, 10906, 10911, 10914, 10916, 10921, 10922, 10927, 10929, 10933, 10936, 10937, 10939, 10940, 10944, 10950, 10955, 10957, 10960, 10961, 10963, 10968, 10974, 10978, 10985, 10987, 10990, 10995, 10997, 11001, 11007, 11014, 11021, 11024, 11027, 11031, 11036, 11041, 11046, 11052, 11054, 11059, 11064, 11066, 11071, 11076, 11078, 11082, 11088, 11094, 11097, 11099, 11105, 11109, 11114, 11117, 11122, 11128, 11133, 11136, 11138, 11141, 11146, 11150, 11152, 11160, 11161, 11167, 11173, 11175, 11176, 11180, 11184, 11189, 11191, 11193, 11200, 11206, 11208, 11209, 11211, 11218, 11220, 11225, 11231, 11234, 11238, 11244, 11247, 11249, 11251, 11253, 11255, 11258, 11259, 11260, 11268, 11269, 11276, 11277, 11278, 11282, 11285, 11293, 11296, 11300, 11305, 11306, 11307, 11310, 11314, 11319, 11324, 11331, 11335, 11337, 11338, 11341, 11347, 11349, 11353, 11358, 11359, 11365, 11372, 11376, 11381, 11387, 11392, 11397, 11400, 11405, 11411, 11417, 11422, 11429, 11434, 11437, 11441, 11446, 11452, 11455, 11461, 11467, 11470, 11472, 11479, 11484, 11485, 11490, 11493, 11494, 11495, 11498, 11500, 11504, 11506, 11511, 11515, 11517, 11522, 11529, 11533, 11539, 11541, 11546, 11551, 11557, 11558, 11562, 11566, 11570, 11575, 11577, 11581, 11585, 11593, 11597, 11599, 11600, 11602, 11608, 11610, 11612, 11617, 11619, 11624, 11629, 11631, 11634, 11639, 11640, 11641, 11642, 11645, 11649, 11653, 11659, 11661, 11662, 11664, 11671, 11677, 11680, 11686, 11687, 11690, 11694, 11696, 11701, 11704, 11708, 11713, 11718, 11724, 11730, 11735, 11736, 11738, 11740, 11742, 11744, 11749, 11751, 11755, 11757, 11759, 11766, 11769, 11770, 11774, 11776, 11777, 11782, 11786, 11789, 11794, 11797, 11799, 11803, 11806, 11812, 11817, 11820, 11824, 11829, 11836, 11841, 11845, 11847, 11851, 11853, 11856, 11859, 11862, 11866, 11867, 11874, 11875, 11878, 11884, 11886, 11889, 11892, 11896, 11903, 11904, 11907, 11909, 11914, 11919, 11927, 11931, 11935, 11939, 11943, 11947, 11950, 11955, 11958, 11961, 11965, 11970, 11975, 11980, 11983, 11988, 11992, 11993, 11995, 11999, 12001, 12007, 12010, 12014, 12022, 12027, 12029, 12035, 12040, 12047, 12049, 12055, 12057, 12061, 12062, 12064, 12068, 12070, 12073, 12077, 12083, 12090, 12093, 12095, 12096, 12099, 12105, 12107, 12109, 12114, 12116, 12121, 12123, 12129, 12133, 12137, 12138, 12139, 12141, 12145, 12147, 12150, 12152, 12158, 12162, 12165, 12171, 12178, 12186, 12190, 12192, 12193, 12195, 12199, 12209, 12210, 12217, 12220, 12221, 12228, 12232, 12238, 12242, 12247, 12254, 12259, 12264, 12266, 12269, 12271, 12278, 12280, 12283, 12288, 12293, 12298, 12300, 12303, 12307, 12312, 12314, 12316, 12320, 12324, 12327, 12332, 12333, 12335, 12339, 12341, 12347, 12350, 12351, 12357, 12360, 12363, 12370, 12374, 12378, 12381, 12384, 12387, 12390, 12392, 12396, 12399, 12402, 12404, 12407, 12411, 12414, 12417, 12419, 12425, 12429, 12435, 12440, 12445, 12447, 12453, 12456, 12463, 12464, 12466, 12470, 12472, 12474, 12476, 12482, 12487, 12491, 12492, 12493, 12496, 12498, 12504, 12508, 12513, 12515, 12517, 12521, 12523, 12527, 12531, 12532, 12539, 12542, 12545, 12549, 12552, 12553, 12559, 12566, 12571, 12576, 12582, 12584, 12590, 12594, 12597, 12604, 12607, 12609, 12612, 12619, 12621, 12623, 12626, 12627, 12628, 12631, 12633, 12637, 12642, 12645, 12652, 12655, 12660, 12662, 12669, 12673, 12674, 12677, 12682, 12685, 12686, 12690, 12692, 12693, 12698, 12704, 12706, 12709, 12714, 12719, 12723, 12724, 12727, 12735, 12738, 12741, 12746, 12747, 12751, 12755, 12758, 12760, 12762, 12767, 12770, 12774, 12776, 12779, 12781, 12787, 12789, 12792, 12796, 12800, 12801, 12807, 12808, 12813, 12818, 12820, 12822, 12825, 12832, 12835, 12837, 12842, 12847, 12848, 12853, 12860, 12865, 12869, 12873, 12877, 12883, 12888, 12892, 12894, 12900, 12902, 12906, 12913, 12915, 12920, 12922, 12923, 12926, 12928, 12930, 12931, 12937, 12944, 12948, 12949, 12953, 12955, 12959, 12962, 12965, 12966, 12972, 12973, 12977, 12979, 12984, 12990, 12991, 12998, 13001, 13002, 13003, 13005, 13010, 13013, 13014, 13016, 13018, 13021, 13026, 13029, 13035, 13038, 13043, 13047, 13050, 13054, 13055, 13061, 13062, 13064, 13069, 13074, 13078, 13081, 13084, 13087, 13092, 13096, 13098, 13102, 13104, 13108, 13113, 13117, 13123, 13128, 13134, 13135, 13138, 13144, 13147, 13148, 13153, 13157, 13160, 13162, 13166, 13169, 13171, 13172, 13175, 13178, 13181, 13184, 13187, 13188, 13192, 13196, 13199, 13203, 13205, 13208, 13209, 13211, 13213, 13218, 13221, 13223, 13228, 13230, 13234, 13238, 13239, 13243, 13249, 13250, 13253, 13257, 13259, 13263, 13266, 13267, 13270, 13274, 13276, 13278, 13284, 13286, 13290, 13292, 13294, 13299, 13300, 13307, 13313, 13317, 13320, 13324, 13328, 13333, 13337, 13340, 13346, 13348, 13354, 13356, 13360, 13362, 13365, 13368, 13372, 13377, 13378, 13381, 13382, 13383, 13387, 13390, 13393, 13396, 13397, 13402, 13403, 13407, 13410, 13411, 13417, 13418, 13425, 13430, 13436, 13440, 13444, 13447, 13453, 13458, 13460, 13465, 13472, 13475, 13477, 13479, 13485, 13487, 13491, 13495, 13502, 13507, 13511, 13516, 13522, 13524, 13529, 13535, 13536, 13541, 13548, 13550, 13555, 13561, 13566, 13570, 13577, 13583, 13584, 13588, 13589, 13590, 13592, 13598, 13600, 13603, 13604, 13609, 13612, 13618, 13622, 13624, 13627, 13628, 13634, 13636, 13637, 13638, 13642, 13643, 13645, 13648, 13650, 13657, 13660, 13665, 13670, 13671, 13673, 13680, 13681, 13684, 13686, 13693, 13695, 13701, 13704, 13708, 13709, 13713, 13714, 13717, 13719, 13726, 13728, 13733, 13737, 13740, 13741, 13747, 13749, 13750, 13752, 13756, 13759, 13763, 13766, 13768, 13769, 13770, 13772, 13775, 13776, 13777, 13779, 13782, 13790, 13792, 13794, 13800, 13801, 13806, 13812, 13816, 13821, 13828, 13833, 13834, 13836, 13837, 13842, 13846, 13847, 13850, 13851, 13856, 13859, 13861, 13863, 13866, 13869, 13874, 13876, 13882, 13887, 13890, 13891, 13892, 13897, 13904, 13906, 13908, 13912, 13916, 13919, 13922, 13924, 13926, 13928, 13933, 13937, 13942, 13947, 13952, 13956, 13959, 13962, 13965, 13966, 13967, 13973, 13977, 13978, 13981, 13983, 13988, 13991, 13996, 13999, 14005, 14007, 14010, 14012, 14018, 14019, 14024, 14029, 14035, 14037, 14040, 14042, 14046, 14047, 14054, 14060, 14064, 14069, 14070, 14073, 14076, 14077, 14081, 14088, 14092, 14094, 14097, 14101, 14107, 14112, 14114, 14117, 14120, 14123, 14129, 14133, 14136, 14138, 14145, 14147, 14148, 14153, 14156, 14161, 14165, 14170, 14173, 14179, 14181, 14184, 14186, 14189, 14192, 14197, 14201, 14208, 14213, 14218, 14220, 14224, 14228, 14234, 14236, 14240, 14245, 14246, 14251, 14258, 14264, 14268, 14269, 14273, 14276, 14277, 14280, 14281, 14283, 14284, 14285, 14288, 14292, 14293, 14297, 14302, 14308, 14311, 14314, 14316, 14323, 14328, 14335, 14337, 14342, 14350, 14351, 14352, 14358, 14363, 14364, 14367, 14368, 14373, 14377, 14380, 14386, 14388, 14392, 14397, 14399, 14403, 14406, 14411, 14417, 14421, 14422, 14423, 14426, 14427, 14432, 14435, 14440, 14441, 14447, 14450, 14453, 14455, 14459, 14461, 14464, 14466, 14470, 14471, 14478, 14481, 14484, 14486, 14490, 14493, 14498, 14501, 14503, 14506, 14512, 14516, 14519, 14523, 14526, 14530, 14532, 14537, 14538, 14543, 14544, 14548, 14554, 14558, 14559, 14562, 14568, 14573, 14578, 14581, 14586, 14590, 14593, 14597, 14600, 14601, 14602, 14605, 14607, 14612, 14615, 14618, 14621, 14623, 14626, 14627, 14630, 14633, 14636, 14638, 14643, 14645, 14650, 14652, 14654, 14659, 14662, 14665, 14668, 14669, 14675, 14680, 14683, 14689, 14692, 14693, 14698, 14704, 14706, 14711, 14717, 14722, 14723, 14728, 14731, 14733, 14735, 14736, 14739, 14742, 14748, 14753, 14758, 14762, 14768, 14772, 14775, 14779, 14785, 14790, 14792, 14794, 14797, 14798, 14799, 14801, 14803, 14806, 14813, 14816, 14819, 14821, 14824, 14828, 14832, 14837, 14842, 14847, 14850, 14852, 14856, 14861, 14863, 14865, 14866, 14870, 14871, 14875, 14878, 14879, 14885, 14886, 14889, 14891, 14893, 14894, 14897, 14901, 14903, 14904, 14905, 14912, 14917, 14919, 14922, 14924, 14928, 14929, 14936, 14942, 14947, 14949, 14953, 14958, 14960, 14963, 14970, 14974, 14977, 14982, 14986, 14990, 14993, 14999, 15002, 15006, 15007, 15009, 15016, 15017, 15023, 15029, 15034, 15038, 15039, 15042, 15045, 15051, 15052, 15058, 15060, 15067, 15070, 15075, 15078, 15083, 15088, 15091, 15095, 15098, 15102, 15107, 15111, 15113, 15118, 15123, 15125, 15127, 15133, 15137, 15139, 15145, 15149, 15153, 15160, 15163, 15165, 15167, 15168, 15171, 15173, 15175, 15177, 15180, 15184, 15185, 15189, 15194, 15199, 15201, 15203, 15205, 15207, 15212, 15215, 15219, 15220, 15221, 15222, 15226, 15230, 15232, 15236, 15243, 15248, 15253, 15257, 15258, 15263, 15265, 15269, 15271, 15274, 15276, 15281, 15287, 15293, 15294, 15300, 15303, 15307, 15308, 15310, 15312, 15318, 15319, 15323, 15328, 15330, 15334, 15336, 15339, 15343, 15344, 15346, 15348, 15352, 15356, 15358, 15360, 15362, 15363, 15367, 15369, 15371, 15372, 15376, 15378, 15379, 15382, 15383, 15385, 15390, 15391, 15394, 15399, 15401, 15408, 15414, 15418, 15419, 15424, 15429, 15430, 15433, 15437, 15438, 15445, 15447, 15450, 15456, 15460, 15465, 15471, 15473, 15474, 15475, 15483, 15487, 15493, 15497, 15498, 15501, 15502, 15505, 15506, 15512, 15514, 15516, 15518, 15520, 15524, 15526, 15530, 15531, 15534, 15538, 15540, 15547, 15551, 15553, 15554, 15557, 15562, 15569, 15571, 15572, 15578, 15579, 15581, 15589, 15597, 15601, 15606, 15612, 15614, 15615, 15617, 15619, 15626, 15627, 15629, 15632, 15634, 15637, 15638, 15642, 15643, 15648, 15649, 15652, 15655, 15656, 15664, 15665, 15670, 15671, 15674, 15681, 15685, 15689, 15692, 15699, 15704, 15708, 15711, 15714, 15715, 15717, 15722, 15724, 15728, 15731, 15734, 15741, 15745, 15750, 15754, 15756, 15759, 15761, 15764, 15766, 15769, 15771, 15775, 15779, 15780, 15782, 15787, 15793, 15795, 15802, 15805, 15809, 15810, 15815, 15822, 15824, 15829, 15831, 15833, 15835, 15840, 15841, 15842, 15846, 15852, 15855, 15861, 15864, 15867, 15871, 15873, 15874, 15879, 15881, 15887, 15893, 15894, 15895, 15899, 15906, 15909, 15910, 15913, 15914, 15919, 15920, 15921, 15924, 15929, 15930, 15932, 15933, 15936, 15940, 15942, 15943, 15947, 15949, 15955, 15956, 15958, 15960, 15961, 15963, 15966, 15968, 15969, 15973, 15979, 15980, 15983, 15984, 15989, 15991, 15994, 15999, 16001, 16003, 16004, 16005, 16010, 16014, 16015, 16018, 16020, 16024, 16025, 16029, 16032, 16034, 16039, 16040, 16041, 16043, 16046, 16048, 16050, 16053, 16058, 16063, 16065, 16068, 16073, 16075, 16076, 16078, 16084, 16086, 16089, 16091, 16097, 16098, 16101, 16105, 16109, 16114, 16118, 16123, 16125, 16127, 16134, 16136, 16137, 16140, 16141, 16143, 16146, 16149, 16152, 16156, 16161, 16167, 16168, 16169, 16174, 16175, 16180, 16183, 16184, 16187, 16191, 16194, 16197, 16202, 16203, 16209, 16210, 16213, 16218, 16220, 16223, 16224, 16227, 16231, 16236, 16239, 16241, 16243, 16246, 16248, 16251, 16252, 16255, 16258, 16262, 16268, 16274, 16276, 16277, 16279, 16285, 16287, 16288, 16291, 16294, 16300, 16302, 16308, 16314, 16315, 16316, 16322, 16323, 16324, 16327, 16330, 16335, 16339, 16343, 16345, 16348, 16353, 16358, 16361, 16364, 16366, 16372, 16377, 16382, 16383, 16387, 16392, 16394, 16397, 16399, 16404, 16406, 16407, 16412, 16415, 16417, 16423, 16424, 16425, 16428, 16431, 16434, 16437, 16439, 16443, 16444, 16448, 16452, 16455, 16459, 16460, 16462, 16467, 16472, 16474, 16476, 16478, 16480, 16481, 16483, 16485, 16488, 16495, 16501, 16505, 16507, 16509, 16511, 16516, 16518, 16521, 16522, 16523, 16530, 16531, 16533, 16535, 16537, 16541, 16543, 16544, 16546, 16549, 16556, 16561, 16564, 16566, 16567, 16573, 16577, 16582, 16584, 16591, 16593, 16598, 16603, 16606, 16607, 16613, 16614, 16619, 16620, 16621, 16622, 16628, 16630, 16631, 16632, 16633, 16634, 16635, 16642, 16643, 16645, 16649, 16652, 16658, 16662, 16663, 16666, 16667, 16668, 16670, 16673, 16674, 16680, 16684, 16686, 16689, 16694, 16700, 16707, 16711, 16713, 16715, 16717, 16718, 16720, 16722, 16726, 16730, 16731, 16736, 16740, 16742, 16744, 16745, 16746, 16749, 16751, 16755, 16756, 16765, 16766, 16767, 16770, 16772, 16775, 16777, 16781, 16786, 16788, 16790, 16796, 16798, 16801, 16803, 16809, 16810, 16812, 16816, 16817, 16822, 16831, 16832, 16835, 16837, 16841, 16845, 16846, 16854, 16861, 16862, 16867, 16868, 16872, 16876, 16882, 16887, 16888, 16892, 16894, 16901, 16905, 16908, 16911, 16915, 16918, 16919, 16925, 16929, 16932, 16933, 16934, 16937, 16943, 16945, 16946, 16953, 16954, 16957, 16959, 16960, 16961, 16964, 16969, 16971, 16972, 16973, 16978, 16980, 16982, 16986, 16989, 16992, 16995, 16999, 17004, 17006, 17012, 17013, 17014, 17019, 17020, 17027, 17028, 17032, 17034, 17035, 17041, 17043, 17048, 17052, 17054, 17056, 17058, 17062, 17066, 17072, 17077, 17080, 17081, 17084, 17089, 17090, 17094, 17097, 17103, 17104, 17107, 17108, 17110, 17114, 17115, 17116, 17119, 17124, 17129, 17130, 17135, 17137, 17143, 17145, 17149, 17150, 17155, 17162, 17165, 17166, 17170, 17173, 17175, 17178, 17179, 17183, 17184, 17186, 17188, 17193, 17199, 17200, 17202, 17203, 17206, 17210, 17214, 17215, 17219, 17222, 17227, 17230, 17234, 17237, 17240, 17243, 17246, 17249, 17254, 17257, 17259, 17265, 17271, 17275, 17279, 17285, 17289, 17293, 17295, 17297, 17300, 17302, 17309, 17310, 17311, 17316, 17317, 17319, 17320, 17323, 17327, 17331, 17336, 17342, 17343, 17350, 17352, 17355, 17358, 17364, 17367, 17370, 17374, 17375, 17378, 17382, 17386, 17387, 17389, 17391, 17394, 17400, 17401, 17406, 17408, 17413, 17414, 17421, 17425, 17426, 17428, 17433, 17435, 17437, 17438, 17440, 17444, 17448, 17451, 17457, 17462, 17465, 17470, 17476, 17483, 17489, 17495, 17496, 17499, 17504, 17506, 17508, 17511, 17513, 17514, 17515, 17518, 17522, 17523, 17525, 17530, 17532, 17535, 17539, 17545, 17549, 17553, 17555, 17557, 17561, 17567, 17571, 17573, 17576, 17580, 17581, 17583, 17589, 17593, 17594, 17599, 17600, 17602, 17606, 17610, 17611, 17613, 17617, 17623, 17627, 17630, 17634, 17637, 17639, 17642, 17644, 17647, 17650, 17652, 17655, 17657, 17663, 17667, 17668, 17673, 17676, 17677, 17679, 17685, 17686, 17687, 17693, 17697, 17701, 17703, 17706, 17710, 17715, 17717, 17723, 17728, 17733, 17736, 17738, 17741, 17746, 17749, 17751, 17753, 17755, 17757, 17760, 17764, 17765, 17771, 17776, 17780, 17781, 17784, 17786, 17794, 17799, 17805, 17807, 17810, 17812, 17813, 17821, 17827, 17829, 17832, 17836, 17839, 17841, 17843, 17846, 17848, 17850, 17851, 17855, 17857, 17858, 17860, 17864, 17865, 17868, 17871, 17877, 17878, 17879, 17881, 17885, 17888, 17891, 17892, 17896, 17898, 17900, 17902, 17904, 17908, 17910, 17913, 17914, 17918, 17925, 17927, 17932, 17937, 17939, 17944, 17946, 17952, 17954, 17957, 17962, 17964, 17965, 17968, 17970, 17973, 17978, 17982, 17983, 17984, 17989, 17991, 17997, 17999, 18000, 18001, 18006, 18010, 18011, 18014, 18015, 18018, 18020, 18025, 18028, 18029, 18031, 18034, 18035, 18041, 18046, 18051, 18053, 18057, 18059, 18064, 18066, 18069, 18074, 18075, 18080, 18082, 18087, 18091, 18092, 18097, 18100, 18101, 18106, 18108, 18114, 18117, 18118, 18124, 18126, 18131, 18137, 18142, 18147, 18151, 18152, 18153, 18159, 18160, 18163, 18167, 18172, 18175, 18179, 18183, 18189, 18193, 18194, 18200, 18204, 18207, 18210, 18216, 18221, 18225, 18231, 18236, 18240, 18242, 18244, 18245, 18251, 18256, 18259, 18261, 18263, 18265, 18269, 18274, 18281, 18282, 18283, 18290, 18294, 18300, 18302, 18307, 18312, 18317, 18320, 18323, 18325, 18327, 18330, 18333, 18338, 18343, 18345, 18346, 18347, 18349, 18353, 18355, 18356, 18359, 18363, 18366, 18367, 18373, 18375, 18377, 18381, 18383, 18386, 18389, 18396, 18398, 18402, 18403, 18408, 18413, 18417, 18420, 18423, 18430, 18433, 18434, 18439, 18441, 18442, 18443, 18446, 18450, 18452, 18454, 18457, 18463, 18464, 18466, 18467, 18468, 18469, 18474, 18481, 18482, 18483, 18485, 18487, 18490, 18491, 18494, 18499, 18500, 18505, 18510, 18511, 18513, 18516, 18519, 18521, 18525, 18528, 18532, 18536, 18537, 18539, 18545, 18546, 18551, 18553, 18554, 18555, 18556, 18558, 18559, 18560, 18566, 18568, 18574, 18576, 18580, 18582, 18583, 18584, 18585, 18590, 18596, 18599, 18606, 18608, 18609, 18615, 18618, 18622, 18626, 18630, 18632, 18635, 18640, 18642, 18643, 18649, 18651, 18652, 18656, 18659, 18663, 18668, 18672, 18673, 18675, 18676, 18678, 18682, 18683, 18687, 18689, 18691, 18693, 18694, 18698, 18700, 18705, 18709, 18710, 18714, 18718, 18720, 18725, 18727, 18729, 18732, 18733, 18736, 18740, 18742, 18745, 18746, 18747, 18748, 18752, 18754, 18755, 18756, 18757, 18758, 18764, 18770, 18771, 18775, 18779, 18782, 18785, 18786, 18788, 18793, 18796, 18798, 18801, 18803, 18808, 18813, 18816, 18817, 18820, 18824, 18831, 18833, 18834, 18839, 18842, 18845, 18853, 18857, 18859, 18862, 18863, 18865, 18866, 18869, 18870, 18871, 18872, 18873, 18879, 18881, 18887, 18891, 18893, 18900, 18902, 18903, 18906, 18908, 18909, 18916, 18917, 18920, 18924, 18930, 18931, 18933, 18936, 18937, 18942, 18945, 18949, 18956, 18959, 18962, 18964, 18965, 18969, 18971, 18975, 18977, 18985, 18990, 18992, 18996, 18999, 19001, 19002, 19004, 19010, 19013, 19016, 19020, 19026, 19029, 19034, 19040, 19042, 19046, 19052, 19057, 19058, 19059, 19064, 19065, 19071, 19074, 19080, 19083, 19089, 19093, 19095, 19096, 19098, 19104, 19106, 19109, 19111, 19114, 19117, 19118, 19120, 19121, 19124, 19127, 19131, 19136, 19140, 19146, 19148, 19155, 19161, 19162, 19166, 19168, 19170, 19174, 19181, 19183, 19186, 19189, 19194, 19196, 19200, 19204, 19206, 19210, 19212, 19213, 19216, 19217, 19223, 19225, 19226, 19227, 19230, 19233, 19236, 19238, 19241, 19247, 19249, 19251, 19253, 19255, 19261, 19267, 19269, 19271, 19276, 19277, 19279, 19281, 19286, 19290, 19291, 19296, 19298, 19302, 19304, 19306, 19309, 19310, 19313, 19316, 19320, 19326, 19328, 19331, 19332, 19334, 19336, 19339, 19344, 19347, 19349, 19355, 19360, 19361, 19366, 19370, 19374, 19379, 19383, 19384, 19386, 19387, 19390, 19396, 19400, 19403, 19406, 19409, 19414, 19418, 19420, 19427, 19428, 19433, 19434, 19436, 19440, 19445, 19447, 19449, 19452, 19455, 19456, 19457, 19460, 19462, 19463, 19468, 19473, 19478, 19482, 19485, 19487, 19491, 19494, 19501, 19503, 19505, 19506, 19508, 19512, 19513, 19517, 19518, 19520, 19523, 19529, 19535, 19537, 19538, 19539, 19540, 19543, 19549, 19550, 19554, 19556, 19558, 19559, 19563, 19564, 19566, 19569, 19573, 19581, 19584, 19586, 19588, 19593, 19596, 19600, 19601, 19605, 19606, 19610, 19615, 19617, 19618, 19621, 19626, 19632, 19636, 19637, 19645, 19646, 19648, 19651, 19653, 19655, 19662, 19665, 19668, 19669, 19675, 19682, 19685, 19689, 19691, 19692, 19697, 19700, 19703, 19705, 19709, 19710, 19714, 19717, 19722, 19729, 19736, 19740, 19743, 19749, 19750, 19751, 19755, 19759, 19760, 19761, 19763, 19770, 19771, 19774, 19776, 19781, 19785, 19788, 19793, 19796, 19801, 19802, 19804, 19805, 19811, 19814, 19819, 19821, 19823, 19824, 19827, 19833, 19836, 19839, 19844, 19848, 19849, 19850, 19851, 19852, 19857, 19858, 19864, 19866, 19874, 19880, 19882, 19883, 19885, 19891, 19893, 19895, 19896, 19898, 19899, 19901, 19905, 19906, 19909, 19910, 19911, 19914, 19915, 19922, 19927, 19933, 19934, 19935, 19942, 19944, 19946, 19950, 19952, 19953, 19959, 19961, 19967, 19970, 19971, 19974, 19977, 19980, 19986, 19991, 19992, 19995, 19996, 19998, 20001, 20003, 20004, 20010, 20013, 20014, 20015, 20021, 20024, 20026, 20028, 20031, 20036, 20040, 20041, 20048, 20049, 20054, 20056, 20062, 20066, 20067, 20071, 20073, 20075, 20081, 20083, 20087, 20090, 20094, 20099, 20100, 20107, 20109, 20113, 20116, 20117, 20119, 20122, 20124, 20129, 20132, 20137, 20142, 20143, 20148, 20151, 20153, 20155, 20157, 20158, 20162, 20167, 20172, 20173, 20175, 20176, 20177, 20178, 20179, 20182, 20189, 20194, 20197, 20202, 20204, 20208, 20210, 20214, 20216, 20217, 20219, 20225, 20226, 20234, 20236, 20237, 20238, 20240, 20241, 20245, 20246, 20249, 20252, 20255, 20261, 20264, 20267, 20270, 20273, 20278, 20282, 20287, 20288, 20289, 20290, 20294, 20295, 20296, 20301, 20302, 20305, 20311, 20312, 20314, 20317, 20321, 20322, 20324, 20327, 20330, 20334, 20338, 20340, 20346, 20351, 20354, 20355, 20356, 20357, 20359, 20362, 20364, 20365, 20370, 20376, 20378, 20379, 20385, 20389, 20392, 20395, 20396, 20398, 20400, 20405, 20407, 20409, 20411, 20414, 20416, 20420, 20425, 20426, 20431, 20432, 20437, 20439, 20442, 20447, 20450, 20451, 20459, 20462, 20464, 20465, 20468, 20469, 20473, 20475, 20479, 20485, 20488, 20489, 20491, 20493, 20499, 20505, 20507, 20513, 20515, 20517, 20521, 20525, 20534, 20538, 20539, 20542, 20545, 20550, 20552, 20556, 20558, 20559, 20561, 20563, 20568, 20576, 20581, 20583, 20586, 20592, 20595, 20597, 20602, 20603, 20606, 20607, 20611, 20617, 20620, 20623, 20630, 20634, 20638, 20643, 20645, 20647, 20650, 20654, 20655, 20657, 20662, 20667, 20671, 20676, 20677, 20679, 20682, 20686, 20691, 20696, 20701, 20708, 20711, 20714, 20717, 20721, 20724, 20729, 20731, 20735, 20737, 20741, 20746, 20751, 20755, 20760, 20767, 20771, 20777, 20784, 20789, 20791, 20792, 20795, 20799, 20804, 20808, 20809, 20816, 20819, 20824, 20826, 20830, 20831, 20835, 20841, 20844, 20846, 20847, 20853, 20857, 20859, 20862, 20868, 20869, 20872, 20875, 20877, 20879, 20881, 20886, 20889, 20894, 20899, 20901, 20905, 20907, 20913, 20918, 20920, 20922, 20926, 20929, 20932, 20935, 20937, 20938, 20942, 20944, 20950, 20955, 20963, 20966, 20967, 20970, 20978, 20980, 20984, 20990, 20994, 20997, 20999, 21004, 21009, 21012, 21018, 21020, 21022, 21023, 21024, 21025, 21030, 21034, 21035, 21038, 21041, 21044, 21045, 21047, 21051, 21059, 21060, 21061, 21065, 21067, 21072, 21074, 21076, 21077, 21079, 21082, 21084, 21088, 21092, 21093, 21094, 21100, 21106, 21111, 21112, 21113, 21118, 21120, 21125, 21127, 21132, 21136, 21142, 21144, 21145, 21149, 21154, 21156, 21158, 21159, 21161, 21163, 21164, 21165, 21166, 21167, 21168, 21172, 21174, 21179, 21185, 21188, 21190, 21195, 21198, 21201, 21204, 21207, 21210, 21215, 21218, 21221, 21224, 21230, 21233, 21236, 21241, 21243, 21244, 21245, 21246, 21247, 21249, 21254, 21256, 21257, 21258, 21260, 21263, 21267, 21268, 21269, 21274, 21275, 21279, 21281, 21284, 21285, 21287, 21292, 21293, 21294, 21299, 21301, 21302, 21306, 21311, 21316, 21317, 21320, 21324, 21327, 21330, 21334, 21337, 21340, 21342, 21349, 21353, 21354, 21358, 21362, 21363, 21364, 21369, 21370, 21372, 21373, 21376, 21378, 21379, 21380, 21381, 21385, 21390, 21391, 21396, 21397, 21398, 21402, 21405, 21411, 21412, 21413, 21414, 21417, 21418, 21419, 21422, 21423, 21424, 21431, 21434, 21436, 21438, 21443, 21449, 21451, 21453, 21456, 21460, 21465, 21467, 21469, 21471, 21474, 21476, 21478, 21479, 21481, 21484, 21490, 21491, 21493, 21497, 21502, 21504, 21505, 21507, 21513, 21514, 21515, 21519, 21520, 21523, 21525, 21526, 21530, 21532, 21534, 21536, 21538, 21542, 21544, 21545, 21551, 21554, 21555, 21556, 21557, 21559, 21562, 21567, 21569, 21571, 21574, 21579, 21580, 21582, 21588, 21589, 21591, 21593, 21595, 21596, 21598, 21599, 21603, 21605, 21608, 21613, 21616, 21621, 21622, 21623, 21629, 21631, 21635, 21642, 21648, 21650, 21653, 21654, 21658, 21664, 21666, 21667, 21668, 21674, 21678, 21679, 21685, 21687, 21692, 21693, 21698, 21700, 21703, 21705, 21708, 21709, 21711, 21717, 21719, 21724, 21731, 21732, 21734, 21739, 21746, 21749, 21752, 21754, 21762, 21765, 21769, 21775, 21782, 21784, 21785, 21786, 21791, 21792, 21795, 21796, 21800, 21803, 21806, 21810, 21812, 21818, 21819, 21820, 21824, 21825, 21832, 21834, 21840, 21845, 21848, 21849, 21852, 21860, 21862, 21866, 21867, 21873, 21877, 21884, 21888, 21892, 21893, 21894, 21896, 21899, 21904, 21908, 21914, 21917, 21922, 21926, 21927, 21928, 21929, 21933, 21934, 21939, 21941, 21948, 21954, 21955, 21962, 21964, 21966, 21972, 21978, 21979, 21981, 21984, 21985, 21986, 21990, 21991, 21993, 21996, 22003, 22005, 22009, 22014, 22016, 22018, 22020, 22023, 22028, 22030, 22032, 22033, 22034, 22036, 22041, 22044, 22045, 22051, 22053, 22054, 22056, 22059, 22061, 22063, 22065, 22066, 22068, 22073, 22074, 22076, 22077, 22081, 22082, 22083, 22085, 22091, 22092, 22093, 22100, 22101, 22102, 22105, 22109, 22110, 22116, 22117, 22120, 22123, 22125, 22128, 22132, 22135, 22138, 22145, 22147, 22148, 22151, 22155, 22161, 22162, 22165, 22168, 22170, 22173, 22175, 22176, 22177, 22181, 22182, 22185, 22186, 22190, 22192, 22193, 22197, 22199, 22201, 22204, 22209, 22211, 22215, 22216, 22217, 22224, 22230, 22235, 22238, 22239, 22241, 22242, 22244, 22247, 22249, 22250, 22253, 22258, 22259, 22261, 22262, 22263, 22267, 22270, 22274, 22275, 22281, 22286, 22291, 22295, 22301, 22305, 22306, 22311, 22316, 22319, 22325, 22329, 22332, 22338, 22339, 22344, 22345, 22351, 22357, 22360, 22361, 22364, 22365, 22368, 22373, 22374, 22376, 22377, 22382, 22384, 22389, 22393, 22394, 22395, 22397, 22401, 22404, 22410, 22418, 22421, 22422, 22428, 22431, 22432, 22436, 22437, 22438, 22443, 22444, 22449, 22450, 22454, 22460, 22466, 22470, 22475, 22479, 22482, 22484, 22490, 22492, 22496, 22498, 22499, 22503, 22505, 22510, 22514, 22516, 22518, 22520, 22522, 22524, 22527, 22532, 22535, 22541, 22547, 22548, 22551, 22554, 22558, 22559, 22565, 22569, 22575, 22576, 22578, 22579, 22580, 22581, 22582, 22585, 22588, 22596, 22598, 22601, 22602, 22607, 22608, 22610, 22615, 22620, 22623, 22628, 22629, 22630, 22636, 22639, 22640, 22641, 22643, 22645, 22649, 22653, 22654, 22657, 22660, 22661, 22665, 22666, 22669, 22672, 22673, 22675, 22679, 22683, 22686, 22687, 22693, 22694, 22697, 22701, 22703, 22704, 22706, 22709, 22712, 22717, 22721, 22723, 22725, 22727, 22730, 22735, 22737, 22741, 22746, 22748, 22749, 22753, 22754, 22758, 22760, 22762, 22765, 22770, 22775, 22781, 22783, 22786, 22788, 22791, 22796, 22801, 22805, 22806, 22813, 22814, 22815, 22818, 22819, 22822, 22827, 22832, 22835, 22837, 22843, 22848, 22850, 22857, 22860, 22862, 22863, 22866, 22867, 22874, 22875, 22877, 22880, 22883, 22884, 22888, 22890, 22895, 22898, 22899, 22902, 22905, 22911, 22914, 22920, 22924, 22931, 22932, 22933, 22934, 22938, 22942, 22946, 22947, 22948, 22953, 22956, 22957, 22958, 22962, 22965, 22970, 22974, 22977, 22980, 22987, 22990, 22991, 22992, 22996, 22999, 23006, 23009, 23014, 23015, 23016, 23017, 23019, 23023, 23025, 23030, 23035, 23036, 23037, 23041, 23042, 23045, 23049, 23050, 23052, 23053, 23057, 23062, 23063, 23068, 23070, 23076, 23080, 23081, 23086, 23089, 23094, 23095, 23096, 23097, 23098, 23103, 23108, 23110, 23116, 23122, 23123, 23126, 23133, 23134, 23136, 23139, 23140, 23141, 23143, 23144, 23147, 23149, 23152, 23154, 23155, 23158, 23163, 23166, 23172, 23177, 23181, 23183, 23187, 23188, 23192, 23196, 23197, 23198, 23201, 23207, 23211, 23213, 23218, 23219, 23220, 23221, 23223, 23224, 23228, 23232, 23234, 23237, 23240, 23246, 23247, 23250, 23252, 23255, 23261, 23262, 23266, 23270, 23272, 23273, 23277, 23279, 23280, 23282, 23284, 23290, 23291, 23294, 23295, 23296, 23297, 23298, 23302, 23308, 23315, 23316, 23319, 23325, 23332, 23335, 23337, 23341, 23345, 23350, 23351, 23357, 23360, 23362, 23367, 23368, 23372, 23374, 23375, 23376, 23380, 23383, 23388, 23389, 23395, 23398, 23399, 23400, 23405, 23407, 23413, 23418, 23419, 23421, 23426, 23430, 23433, 23435, 23437, 23440, 23441, 23445, 23448, 23450, 23451, 23454, 23455, 23456, 23459, 23461, 23462, 23466, 23474, 23478, 23483, 23486, 23487, 23493, 23494, 23499, 23504, 23506, 23507, 23508, 23512, 23517, 23519, 23521, 23528, 23532, 23534, 23537, 23542, 23544, 23547, 23548, 23553, 23554, 23559, 23563, 23565, 23567, 23569, 23576, 23581, 23584, 23585, 23591, 23595, 23596, 23602, 23605, 23612, 23618, 23619, 23622, 23623, 23626, 23633, 23634, 23635, 23640, 23642, 23647, 23648, 23650, 23656, 23660, 23664, 23667, 23668, 23671, 23672, 23673, 23674, 23680, 23683, 23685, 23686, 23687, 23692, 23693, 23697, 23698, 23702, 23703, 23707, 23712, 23716, 23717, 23719, 23723, 23729, 23734, 23737, 23739, 23741, 23742, 23744, 23749, 23755, 23756, 23758, 23760, 23761, 23764, 23765, 23768, 23769, 23772, 23776, 23781, 23785, 23786, 23788, 23789, 23792, 23793, 23796, 23797, 23798, 23804, 23805, 23806, 23808, 23810, 23813, 23820, 23822, 23827, 23829, 23831, 23833, 23835, 23837, 23843, 23849, 23854, 23856, 23858, 23863, 23865, 23868, 23872, 23874, 23876, 23882, 23885, 23889, 23890, 23891, 23897, 23902, 23903, 23908, 23912, 23913, 23917, 23919, 23922, 23923, 23928, 23930, 23934, 23935, 23937, 23940, 23944, 23948, 23950, 23953, 23959, 23963, 23964, 23968, 23972, 23977, 23978, 23982, 23984, 23987, 23991, 23995, 23996, 23997, 24004, 24005, 24006, 24007, 24010, 24015, 24019, 24023, 24024, 24030, 24033, 24036, 24038, 24039, 24040, 24042, 24047, 24050, 24053, 24056, 24060, 24064, 24068, 24070, 24071, 24073, 24074, 24079, 24080, 24083, 24086, 24087, 24088, 24091, 24092, 24098, 24105, 24107, 24108, 24110, 24115, 24116, 24119, 24120, 24122, 24125, 24128, 24131, 24136, 24139, 24142, 24147, 24149, 24150, 24153, 24157, 24161, 24165, 24169, 24172, 24173, 24177, 24179, 24183, 24185, 24187, 24193, 24195, 24200, 24201, 24205, 24210, 24213, 24214, 24215, 24216, 24218, 24222, 24228, 24232, 24237, 24242, 24245, 24250, 24257, 24260, 24266, 24267, 24272, 24274, 24279, 24280, 24282, 24284, 24291, 24294, 24297, 24299, 24300, 24302, 24303, 24304, 24308, 24309, 24311, 24312, 24313, 24316, 24320, 24321, 24325, 24326, 24328, 24334, 24339, 24341, 24344, 24346, 24348, 24351, 24354, 24360, 24361, 24367, 24370, 24374, 24378, 24379, 24384, 24389, 24393, 24398, 24402, 24407, 24408, 24414, 24415, 24419, 24421, 24424, 24425, 24426, 24431, 24432, 24433, 24435, 24438, 24442, 24443, 24446, 24449, 24450, 24452, 24457, 24460, 24463, 24465, 24467, 24468, 24469, 24473, 24475, 24476, 24478, 24479, 24481, 24483, 24487, 24488, 24490, 24496, 24501, 24507, 24510, 24512, 24518, 24519, 24520, 24522, 24526, 24528, 24530, 24534, 24537, 24542, 24543, 24544, 24549, 24550, 24554, 24555, 24559, 24560, 24565, 24568, 24569, 24571, 24572, 24574, 24579, 24584, 24590, 24591, 24596, 24598, 24602, 24608, 24614, 24615, 24618, 24621, 24623, 24628]
|
data/redial/kg.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/redial/relation2id.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"genre": 0, "star": 1, "director": 2, "writer": 3}
|
data/redial/sample.json
ADDED
@@ -0,0 +1,394 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"movieMentions": {
|
3 |
+
"204334": "Happy Death Day (2017)",
|
4 |
+
"125431": "Annabelle (2014)",
|
5 |
+
"118338": "The Forest (2016)",
|
6 |
+
"205430": "A Quiet Place (2018)",
|
7 |
+
"132562": "The Last House on the Left (1972)",
|
8 |
+
"157765": "The Heat (2013)",
|
9 |
+
"111776": "Super Troopers (2001)",
|
10 |
+
"187061": "Identity Thief (2013)",
|
11 |
+
"175203": "Hot Tub Time Machine",
|
12 |
+
"77161": "A Nightmare on Elm Street (1984)"
|
13 |
+
},
|
14 |
+
"respondentQuestions": {
|
15 |
+
"204334": {
|
16 |
+
"suggested": 1,
|
17 |
+
"seen": 2,
|
18 |
+
"liked": 2
|
19 |
+
},
|
20 |
+
"125431": {
|
21 |
+
"suggested": 0,
|
22 |
+
"seen": 1,
|
23 |
+
"liked": 1
|
24 |
+
},
|
25 |
+
"118338": {
|
26 |
+
"suggested": 0,
|
27 |
+
"seen": 1,
|
28 |
+
"liked": 1
|
29 |
+
},
|
30 |
+
"205430": {
|
31 |
+
"suggested": 1,
|
32 |
+
"seen": 2,
|
33 |
+
"liked": 2
|
34 |
+
},
|
35 |
+
"132562": {
|
36 |
+
"suggested": 0,
|
37 |
+
"seen": 1,
|
38 |
+
"liked": 1
|
39 |
+
},
|
40 |
+
"187061": {
|
41 |
+
"suggested": 1,
|
42 |
+
"seen": 2,
|
43 |
+
"liked": 2
|
44 |
+
},
|
45 |
+
"111776": {
|
46 |
+
"suggested": 1,
|
47 |
+
"seen": 2,
|
48 |
+
"liked": 2
|
49 |
+
},
|
50 |
+
"157765": {
|
51 |
+
"suggested": 1,
|
52 |
+
"seen": 2,
|
53 |
+
"liked": 2
|
54 |
+
},
|
55 |
+
"175203": {
|
56 |
+
"suggested": 1,
|
57 |
+
"seen": 2,
|
58 |
+
"liked": 2
|
59 |
+
},
|
60 |
+
"77161": {
|
61 |
+
"suggested": 0,
|
62 |
+
"seen": 1,
|
63 |
+
"liked": 1
|
64 |
+
}
|
65 |
+
},
|
66 |
+
"messages": [
|
67 |
+
{
|
68 |
+
"senderWorkerId": 958,
|
69 |
+
"text": "Hello!",
|
70 |
+
"turn_id": 0,
|
71 |
+
"entity": [],
|
72 |
+
"item": [],
|
73 |
+
"thread": [],
|
74 |
+
"masked_text": "Hello!",
|
75 |
+
"word": []
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"senderWorkerId": 959,
|
79 |
+
"text": "Hello!",
|
80 |
+
"turn_id": 1,
|
81 |
+
"entity": [],
|
82 |
+
"item": [],
|
83 |
+
"thread": [],
|
84 |
+
"masked_text": "Hello!",
|
85 |
+
"word": []
|
86 |
+
},
|
87 |
+
{
|
88 |
+
"senderWorkerId": 958,
|
89 |
+
"text": "What kind of movies do you like?",
|
90 |
+
"turn_id": 2,
|
91 |
+
"entity": [],
|
92 |
+
"item": [],
|
93 |
+
"thread": [],
|
94 |
+
"masked_text": "What kind of movies do you like?",
|
95 |
+
"word": [
|
96 |
+
"movies"
|
97 |
+
]
|
98 |
+
},
|
99 |
+
{
|
100 |
+
"senderWorkerId": 959,
|
101 |
+
"text": "I am looking for a movie recommendation. When I was younger I really enjoyed the @77161",
|
102 |
+
"turn_id": 3,
|
103 |
+
"entity": [],
|
104 |
+
"item": [
|
105 |
+
"A Nightmare on Elm Street (1984)"
|
106 |
+
],
|
107 |
+
"thread": [
|
108 |
+
"A Nightmare on Elm Street (1984)"
|
109 |
+
],
|
110 |
+
"masked_text": "I am looking for a movie recommendation. When I was younger I really enjoyed the <item>",
|
111 |
+
"word": [
|
112 |
+
"movie",
|
113 |
+
"recommendation",
|
114 |
+
"enjoyed"
|
115 |
+
]
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"senderWorkerId": 958,
|
119 |
+
"text": "Oh, you like scary movies? I recently watched @204334",
|
120 |
+
"turn_id": 4,
|
121 |
+
"entity": [
|
122 |
+
"scary"
|
123 |
+
],
|
124 |
+
"item": [
|
125 |
+
"Happy Death Day (2017)"
|
126 |
+
],
|
127 |
+
"thread": [
|
128 |
+
"scary",
|
129 |
+
"Happy Death Day (2017)"
|
130 |
+
],
|
131 |
+
"masked_text": "Oh, you like <genre> movies? I recently watched <item>",
|
132 |
+
"word": [
|
133 |
+
"scary",
|
134 |
+
"movies",
|
135 |
+
"watched"
|
136 |
+
]
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"senderWorkerId": 959,
|
140 |
+
"text": "I also enjoyed watching @132562",
|
141 |
+
"turn_id": 5,
|
142 |
+
"entity": [],
|
143 |
+
"item": [
|
144 |
+
"The Last House on the Left (1972)"
|
145 |
+
],
|
146 |
+
"thread": [
|
147 |
+
"The Last House on the Left (1972)"
|
148 |
+
],
|
149 |
+
"masked_text": "I also enjoyed watching <item>",
|
150 |
+
"word": [
|
151 |
+
"enjoyed",
|
152 |
+
"watching"
|
153 |
+
]
|
154 |
+
},
|
155 |
+
{
|
156 |
+
"senderWorkerId": 958,
|
157 |
+
"text": "It was really good for a new \"scary movie\"",
|
158 |
+
"turn_id": 6,
|
159 |
+
"entity": [
|
160 |
+
"scary"
|
161 |
+
],
|
162 |
+
"item": [],
|
163 |
+
"thread": [
|
164 |
+
"scary"
|
165 |
+
],
|
166 |
+
"masked_text": "It was really good for a new \"<genre> movie\"",
|
167 |
+
"word": [
|
168 |
+
"scary",
|
169 |
+
"movie"
|
170 |
+
]
|
171 |
+
},
|
172 |
+
{
|
173 |
+
"senderWorkerId": 959,
|
174 |
+
"text": "I do enjoy some of the newer horror movies that I have seen as well.",
|
175 |
+
"turn_id": 7,
|
176 |
+
"entity": [
|
177 |
+
"horror"
|
178 |
+
],
|
179 |
+
"item": [],
|
180 |
+
"thread": [
|
181 |
+
"horror"
|
182 |
+
],
|
183 |
+
"masked_text": "I do enjoy some of the newer <genre> movies that I have seen as well.",
|
184 |
+
"word": [
|
185 |
+
"enjoy",
|
186 |
+
"horror",
|
187 |
+
"movies"
|
188 |
+
]
|
189 |
+
},
|
190 |
+
{
|
191 |
+
"senderWorkerId": 958,
|
192 |
+
"text": "I heard that @205430 is good. It is still in theaters though.",
|
193 |
+
"turn_id": 8,
|
194 |
+
"entity": [],
|
195 |
+
"item": [
|
196 |
+
"A Quiet Place (2018)"
|
197 |
+
],
|
198 |
+
"thread": [
|
199 |
+
"A Quiet Place (2018)"
|
200 |
+
],
|
201 |
+
"masked_text": "I heard that <item> is good. It is still in theaters though.",
|
202 |
+
"word": [
|
203 |
+
"heard",
|
204 |
+
"theaters"
|
205 |
+
]
|
206 |
+
},
|
207 |
+
{
|
208 |
+
"senderWorkerId": 959,
|
209 |
+
"text": "I really liked the movie @125431",
|
210 |
+
"turn_id": 9,
|
211 |
+
"entity": [],
|
212 |
+
"item": [
|
213 |
+
"Annabelle (2014)"
|
214 |
+
],
|
215 |
+
"thread": [
|
216 |
+
"Annabelle (2014)"
|
217 |
+
],
|
218 |
+
"masked_text": "I really liked the movie <item>",
|
219 |
+
"word": [
|
220 |
+
"movie"
|
221 |
+
]
|
222 |
+
},
|
223 |
+
{
|
224 |
+
"senderWorkerId": 958,
|
225 |
+
"text": "Me, too! It was really creepy, but I thought it was good!",
|
226 |
+
"turn_id": 10,
|
227 |
+
"entity": [],
|
228 |
+
"item": [],
|
229 |
+
"thread": [],
|
230 |
+
"masked_text": "Me, too! It was really creepy, but I thought it was good!",
|
231 |
+
"word": [
|
232 |
+
"creepy"
|
233 |
+
]
|
234 |
+
},
|
235 |
+
{
|
236 |
+
"senderWorkerId": 959,
|
237 |
+
"text": "Or @118338 I saw while in theaters, this was a very good movie. It had me on the edge of my seat for the whole show.",
|
238 |
+
"turn_id": 11,
|
239 |
+
"entity": [
|
240 |
+
"The Who"
|
241 |
+
],
|
242 |
+
"item": [
|
243 |
+
"The Forest (2016)"
|
244 |
+
],
|
245 |
+
"thread": [
|
246 |
+
"The Forest (2016)",
|
247 |
+
"The Who"
|
248 |
+
],
|
249 |
+
"masked_text": "Or <item> I saw while in theaters, this was a very good movie. It had me on the edge of my seat for <person>le show.",
|
250 |
+
"word": [
|
251 |
+
"theaters",
|
252 |
+
"movie",
|
253 |
+
"edge",
|
254 |
+
"seat"
|
255 |
+
]
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"senderWorkerId": 958,
|
259 |
+
"text": "I'm not sure if I saw that one, I'll have to check into it. Sounds familiar, but not sure. Thank you for your suggestions!",
|
260 |
+
"turn_id": 12,
|
261 |
+
"entity": [],
|
262 |
+
"item": [],
|
263 |
+
"thread": [],
|
264 |
+
"masked_text": "I'm not sure if I saw that one, I'll have to check into it. Sounds familiar, but not sure. Thank you for your suggestions!",
|
265 |
+
"word": [
|
266 |
+
"check",
|
267 |
+
"familiar",
|
268 |
+
"suggestions"
|
269 |
+
]
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"senderWorkerId": 959,
|
273 |
+
"text": "Are there any comedies that you would suggest?",
|
274 |
+
"turn_id": 13,
|
275 |
+
"entity": [
|
276 |
+
"comedy"
|
277 |
+
],
|
278 |
+
"item": [],
|
279 |
+
"thread": [
|
280 |
+
"comedy"
|
281 |
+
],
|
282 |
+
"masked_text": "Are there any <genre> that you would suggest?",
|
283 |
+
"word": [
|
284 |
+
"comedies"
|
285 |
+
]
|
286 |
+
},
|
287 |
+
{
|
288 |
+
"senderWorkerId": 958,
|
289 |
+
"text": "Sure! I like comedies a lot. I like movies like @175203 and @111776 , but I also like @187061 and @157765 .",
|
290 |
+
"turn_id": 14,
|
291 |
+
"entity": [
|
292 |
+
"comedy"
|
293 |
+
],
|
294 |
+
"item": [
|
295 |
+
"Hot Tub Time Machine",
|
296 |
+
"Super Troopers (2001)",
|
297 |
+
"Identity Thief (2013)",
|
298 |
+
"The Heat (2013)"
|
299 |
+
],
|
300 |
+
"thread": [
|
301 |
+
"comedy",
|
302 |
+
"Hot Tub Time Machine",
|
303 |
+
"Super Troopers (2001)",
|
304 |
+
"Identity Thief (2013)",
|
305 |
+
"The Heat (2013)"
|
306 |
+
],
|
307 |
+
"masked_text": "Sure! I like <genre> a lot. I like movies like <item> and <item> , but I also like <item> and <item> .",
|
308 |
+
"word": [
|
309 |
+
"comedies",
|
310 |
+
"lot",
|
311 |
+
"movies"
|
312 |
+
]
|
313 |
+
},
|
314 |
+
{
|
315 |
+
"senderWorkerId": 959,
|
316 |
+
"text": "Wonderful! Thank you so much I think I am ready for movie night now.",
|
317 |
+
"turn_id": 15,
|
318 |
+
"entity": [],
|
319 |
+
"item": [],
|
320 |
+
"thread": [],
|
321 |
+
"masked_text": "Wonderful! Thank you so much I think I am ready for movie night now.",
|
322 |
+
"word": [
|
323 |
+
"ready",
|
324 |
+
"movie",
|
325 |
+
"night"
|
326 |
+
]
|
327 |
+
},
|
328 |
+
{
|
329 |
+
"senderWorkerId": 958,
|
330 |
+
"text": "No problem! Thank you, too! :)",
|
331 |
+
"turn_id": 16,
|
332 |
+
"entity": [],
|
333 |
+
"item": [],
|
334 |
+
"thread": [],
|
335 |
+
"masked_text": "No problem! Thank you, too! :)",
|
336 |
+
"word": []
|
337 |
+
}
|
338 |
+
],
|
339 |
+
"conversationId": "20041",
|
340 |
+
"respondentWorkerId": 958,
|
341 |
+
"initiatorWorkerId": 959,
|
342 |
+
"initiatorQuestions": {
|
343 |
+
"204334": {
|
344 |
+
"suggested": 1,
|
345 |
+
"seen": 2,
|
346 |
+
"liked": 2
|
347 |
+
},
|
348 |
+
"125431": {
|
349 |
+
"suggested": 0,
|
350 |
+
"seen": 1,
|
351 |
+
"liked": 1
|
352 |
+
},
|
353 |
+
"118338": {
|
354 |
+
"suggested": 0,
|
355 |
+
"seen": 1,
|
356 |
+
"liked": 1
|
357 |
+
},
|
358 |
+
"205430": {
|
359 |
+
"suggested": 1,
|
360 |
+
"seen": 2,
|
361 |
+
"liked": 2
|
362 |
+
},
|
363 |
+
"132562": {
|
364 |
+
"suggested": 0,
|
365 |
+
"seen": 1,
|
366 |
+
"liked": 1
|
367 |
+
},
|
368 |
+
"187061": {
|
369 |
+
"suggested": 1,
|
370 |
+
"seen": 2,
|
371 |
+
"liked": 2
|
372 |
+
},
|
373 |
+
"111776": {
|
374 |
+
"suggested": 1,
|
375 |
+
"seen": 2,
|
376 |
+
"liked": 2
|
377 |
+
},
|
378 |
+
"157765": {
|
379 |
+
"suggested": 1,
|
380 |
+
"seen": 2,
|
381 |
+
"liked": 2
|
382 |
+
},
|
383 |
+
"175203": {
|
384 |
+
"suggested": 1,
|
385 |
+
"seen": 2,
|
386 |
+
"liked": 2
|
387 |
+
},
|
388 |
+
"77161": {
|
389 |
+
"suggested": 0,
|
390 |
+
"seen": 1,
|
391 |
+
"liked": 1
|
392 |
+
}
|
393 |
+
}
|
394 |
+
}
|