alistairmcleay commited on
Commit
2936a70
1 Parent(s): fc551fa

Put models on model hub

Browse files
Files changed (44) hide show
  1. app.py +138 -158
  2. data/preprocessed/.gitignore +4 -0
  3. data/raw/UBAR/db/attraction-dbase.db +0 -0
  4. data/raw/UBAR/db/attraction_db.json +1266 -0
  5. data/raw/UBAR/db/attraction_db_processed.json +1266 -0
  6. data/raw/UBAR/db/bus-dbase.db +0 -0
  7. data/raw/UBAR/db/bus_db.json +0 -0
  8. data/raw/UBAR/db/hospital-dbase.db +0 -0
  9. data/raw/UBAR/db/hospital_db.json +332 -0
  10. data/raw/UBAR/db/hospital_db_processed.json +332 -0
  11. data/raw/UBAR/db/hotel-dbase.db +0 -0
  12. data/raw/UBAR/db/hotel_db.json +749 -0
  13. data/raw/UBAR/db/hotel_db_processed.json +749 -0
  14. data/raw/UBAR/db/ontology.json +1930 -0
  15. data/raw/UBAR/db/police_db.json +8 -0
  16. data/raw/UBAR/db/police_db_processed.json +8 -0
  17. data/raw/UBAR/db/restaurant-dbase.db +0 -0
  18. data/raw/UBAR/db/restaurant_db.json +1761 -0
  19. data/raw/UBAR/db/restaurant_db_processed.json +1761 -0
  20. data/raw/UBAR/db/taxi-dbase.db +0 -0
  21. data/raw/UBAR/db/taxi_db.json +7 -0
  22. data/raw/UBAR/db/taxi_db_processed.json +27 -0
  23. data/raw/UBAR/db/train-dbase.db +0 -0
  24. data/raw/UBAR/db/train_db.json +0 -0
  25. data/raw/UBAR/db/train_db_processed.json +0 -0
  26. data/raw/UBAR/db/value_set.json +0 -0
  27. data/raw/UBAR/db/value_set_processed.json +2505 -0
  28. data/raw/UBAR/multi-woz/README.md +29 -0
  29. data/raw/UBAR/multi-woz/mapping.pair +83 -0
  30. data/raw/UBAR/multi-woz/testListFile.json +1000 -0
  31. data/raw/UBAR/multi-woz/valListFile.json +1000 -0
  32. pytorch_model.bin +0 -3
  33. scripts/UBAR_code/interaction/UBAR_interact.py +5 -5
  34. scripts/UBAR_code/interaction/config.yaml +9 -9
  35. scripts/simulate_interaction.py +16 -20
  36. scripts/user_model_code/interaction/config.yaml +2 -2
  37. scripts/user_model_code/interaction/multiwoz_interact.py +4 -4
  38. src/crazyneuraluser/UBAR_code/clean_dataset.py +3 -7
  39. src/crazyneuraluser/UBAR_code/config.py +19 -15
  40. src/crazyneuraluser/UBAR_code/db_ops.py +1 -1
  41. src/crazyneuraluser/UBAR_code/eval.py +3 -3
  42. src/crazyneuraluser/UBAR_code/reader.py +4 -3
  43. src/crazyneuraluser/UBAR_code/utils.py +1 -1
  44. us_pytorch_model.bin +0 -3
app.py CHANGED
@@ -1,8 +1,12 @@
 
1
  import gradio as gr
2
- import scripts.simulate_interaction as si
3
  import sys
4
  import traceback
5
  import pandas as pd
 
 
 
 
6
 
7
  # from tqdm import tqdm
8
  from scripts.UBAR_code.interaction import UBAR_interact
@@ -10,161 +14,137 @@ from scripts.user_model_code.interaction import multiwoz_interact
10
  from scripts.UBAR_code.interaction.UBAR_interact import bcolors
11
 
12
 
13
- def instantiate_agents():
14
-
15
- UBAR_checkpoint_path = "models/UBAR/experiments/distilgpt-2_sd11_lr0.0001_bs16_ga2/epoch50_trloss0.59_gpt2"
16
- user_model_checkpoint_path = "models/user_model/MultiWOZ-full_checkpoint_step340k"
17
-
18
- sys_model = UBAR_interact.UbarSystemModel(
19
- "UBAR_sys_model", UBAR_checkpoint_path, "scripts/UBAR_code/interaction/config.yaml"
20
- )
21
-
22
- user_model = multiwoz_interact.NeuralAgent(
23
- "user", user_model_checkpoint_path, "scripts/user_model_code/interaction/config.yaml"
24
- )
25
-
26
- return sys_model, user_model
27
-
28
 
29
- def read_multiwoz_data():
30
- """
31
- Read the multiwoz 2.0 raw data from the .json file
32
- """
33
- raw_mwoz_20_path = "data/raw/UBAR/multi-woz/data.json"
34
- df_raw_mwoz = pd.read_json(raw_mwoz_20_path)
35
- return df_raw_mwoz
36
-
37
-
38
- def load_test_val_lists():
39
- val_list_file = "data/raw/UBAR/multi-woz/valListFile.json"
40
- test_list_file = "data/raw/UBAR/multi-woz/testListFile.json"
41
-
42
- with open(val_list_file, "r") as f:
43
- val_list = f.readlines()
44
- val_list = [x.strip() for x in val_list]
45
-
46
- with open(test_list_file, "r") as f:
47
- test_list = f.readlines()
48
- test_list = [x.strip() for x in test_list]
49
-
50
- return val_list, test_list
51
-
52
-
53
- def main(
54
- write_to_file=False, ground_truth_system_responses=False, train_only=True, n_dialogues="all", log_successes=False
55
- ):
56
- sys_model, user_model = instantiate_agents()
57
-
58
- # TODO: move hardcoded vars into config file
59
- raw_mwoz_20_path = "data/raw/UBAR/multi-woz/data.json"
60
- user_utterances_out_path = "data/preprocessed/UBAR/user_utterances_from_simulator.txt"
61
- logging_successes_path = "data/preprocessed/UBAR/logging_successes"
62
- sys_model.print_intermediary_info = False
63
- user_model.print_intermediary_info = False
64
-
65
- df_raw_mwoz = pd.read_json(raw_mwoz_20_path)
66
- if n_dialogues == "all":
67
- n_dialogues = len(df_raw_mwoz.columns)
68
-
69
- curr_dialogue_user_utterances_formatted = []
70
-
71
- print("Loading goals...")
72
- goals = multiwoz_interact.read_multiWOZ_20_goals(raw_mwoz_20_path, n_dialogues)
73
-
74
- # Write column headers
75
- if write_to_file:
76
- with open(user_utterances_out_path, "w") as f:
77
- f.write("Dialogue #\tDialogue ID\tTurn #\tSystem Response\n")
78
-
79
- print("Loading data...")
80
- df_mwoz_data = read_multiwoz_data()
81
- val_list, test_list = load_test_val_lists()
82
-
83
- successful_dialogues = 0
84
- total_dialogues_generated = 0 # train dialogues only
85
- for dialogue_idx, (goal, dialogue_filename) in enumerate(zip(goals, df_mwoz_data.columns)):
86
- if log_successes:
87
- # log successful_dialogues to logging_successes_path every 100 dialogues
88
- if dialogue_idx % 100 == 0:
89
- with open(logging_successes_path, "w") as f:
90
- f.write(str(successful_dialogues) + " / " + str(total_dialogues_generated))
91
-
92
- curr_dialogue_user_utterances_formatted = []
93
- if train_only:
94
- if dialogue_filename in val_list or dialogue_filename in test_list:
95
- continue
96
-
97
- total_dialogues_generated += 1
98
- print("Dialogue: {}".format(dialogue_filename))
99
-
100
- # There are occasionally exceptions thrown from one of the agents, usually the user
101
- # In this case we simply continue to the next dialogue
102
- try:
103
- # Reset state after each dialogue
104
- sys_model.init_session()
105
- user_model.init_session(ini_goal=goal)
106
- sys_response = ""
107
-
108
- for turn_idx in range(50):
109
- # Turn idx in this case represents the turn as one user utterance AND one system response
110
- usr_response_raw_data_idx = turn_idx * 2
111
- sys_response_raw_data_idx = turn_idx * 2 + 1
112
-
113
- user_utterance = user_model.response(sys_response)
114
- print(bcolors.OKBLUE + "User: " + bcolors.ENDC + user_utterance)
115
-
116
- if write_to_file:
117
- user_utterance = user_utterance.replace("\n", " ")
118
- curr_dialogue_user_utterances_formatted.append(
119
- str(dialogue_idx)
120
- + "\t"
121
- + dialogue_filename
122
- + "\t"
123
- + str(usr_response_raw_data_idx)
124
- + "\t"
125
- + user_utterance
126
- + "\n"
127
- )
128
-
129
- if user_model.is_terminated():
130
- successful_dialogues += 1
131
- print(bcolors.OKCYAN + "Dialogue terminated successfully!" + bcolors.ENDC)
132
- print(bcolors.OKCYAN + "---" * 30 + bcolors.ENDC + "\n")
133
- if write_to_file:
134
- # Write whole dialogue to file
135
- with open(user_utterances_out_path, "a") as f:
136
- for line in curr_dialogue_user_utterances_formatted:
137
- f.write(line)
138
- break
139
-
140
- # Next turn materials
141
- if ground_truth_system_responses:
142
- # If we are at the end of the ground truth dialogues
143
- if len(df_mwoz_data.iloc[:, dialogue_idx].log) <= sys_response_raw_data_idx:
144
- print(bcolors.RED + "Dialogue terminated unsuccessfully!" + bcolors.ENDC)
145
- print(bcolors.RED + "---" * 30 + bcolors.ENDC + "\n")
146
- break
147
- sys_response = df_mwoz_data.iloc[:, dialogue_idx].log[sys_response_raw_data_idx]["text"]
148
- else:
149
- sys_response = sys_model.response(user_utterance, turn_idx)
150
- capitalised_sys_response = sys_response[0].upper() + sys_response[1:]
151
- print(bcolors.GREEN + "System: " + bcolors.ENDC + capitalised_sys_response)
152
-
153
- except Exception:
154
- print(bcolors.RED + "*" * 30 + bcolors.ENDC)
155
- print(bcolors.RED + "Error in dialogue {}".format(dialogue_filename) + bcolors.ENDC)
156
- print(bcolors.RED + "*" * 30 + bcolors.ENDC)
157
- traceback.print_exc()
158
- continue
159
-
160
- print("Successful dialogues: {}".format(successful_dialogues))
161
- print("Total dialogues: {}".format(n_dialogues))
162
- print("% Successful Dialopues: {}".format(successful_dialogues / n_dialogues))
163
-
164
-
165
- def test():
166
- return "SUCCESS"
167
-
168
-
169
- iface = gr.Interface(fn=test, outputs="text")
170
- iface.launch()
 
1
+ import random
2
  import gradio as gr
 
3
  import sys
4
  import traceback
5
  import pandas as pd
6
+ import gradio as gr
7
+ import json
8
+
9
+ import yaml
10
 
11
  # from tqdm import tqdm
12
  from scripts.UBAR_code.interaction import UBAR_interact
 
14
  from scripts.UBAR_code.interaction.UBAR_interact import bcolors
15
 
16
 
17
+ # Initialise agents
18
+ UBAR_checkpoint_path = "cambridge-masters-project/epoch50_trloss0.59_gpt2"
19
+ user_model_checkpoint_path = "cambridge-masters-project/MultiWOZ-full_checkpoint_step340k"
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ sys_model = self_play_sys_model = UBAR_interact.UbarSystemModel(
22
+ "UBAR_sys_model", UBAR_checkpoint_path, "cambridge-masters-project/scripts/UBAR_code/interaction/config.yaml"
23
+ )
24
+ user_model = self_play_user_model = multiwoz_interact.NeuralAgent(
25
+ "user", user_model_checkpoint_path, "cambridge-masters-project/scripts/user_model_code/interaction/config.yaml"
26
+ )
27
+
28
+
29
+ # Get goals
30
+ n_goals = 100
31
+ goals_path = "cambridge-masters-project/data/raw/UBAR/multi-woz/data.json"
32
+ print("Loading goals...")
33
+ goals = multiwoz_interact.read_multiWOZ_20_goals(goals_path, n_goals)
34
+
35
+ # Initialise agent with first goal (can be incrememnted by user) for user simulator tab
36
+ curr_goal_idx = random.randint(0, n_goals - 1)
37
+ current_goal = goals[curr_goal_idx]
38
+ user_model.init_session(ini_goal=current_goal)
39
+
40
+ # Do the same initialisation but for the self-play tab
41
+ curr_sp_goal_idx = random.randint(0, n_goals - 1)
42
+ current_sp_goal = goals[curr_sp_goal_idx]
43
+ self_play_user_model.init_session(ini_goal=current_sp_goal)
44
+
45
+ # Get the responses for each agent and track conversation history
46
+ ds_history = []
47
+ us_history = []
48
+ self_play_history = []
49
+
50
+
51
+ def change_goal():
52
+ global curr_goal_idx
53
+ curr_goal_idx = random.randint(0, n_goals - 1)
54
+ current_goal = goals[curr_goal_idx]
55
+ user_model.init_session(ini_goal=current_goal)
56
+ current_goal_yaml = yaml.dump(current_goal, default_flow_style=False)
57
+ return current_goal_yaml
58
+
59
+
60
+ def change_sp_goal():
61
+ global curr_sp_goal_idx
62
+ curr_sp_goal_idx = random.randint(0, n_goals - 1)
63
+ current_sp_goal = goals[curr_sp_goal_idx]
64
+ self_play_user_model.init_session(ini_goal=current_sp_goal)
65
+ current_sp_goal_yaml = yaml.dump(current_sp_goal, default_flow_style=False)
66
+ return current_sp_goal_yaml
67
+
68
+
69
+ def ds_chatbot(user_utt):
70
+ turn_id = len(ds_history)
71
+ sys_response = sys_model.response(user_utt, turn_id)
72
+ ds_history.append((user_utt, sys_response))
73
+ return ds_history
74
+
75
+
76
+ def us_chatbot(sys_response):
77
+ user_utt = user_model.response(sys_response)
78
+ us_history.append((sys_response, user_utt))
79
+ if user_model.is_terminated():
80
+ change_goal()
81
+ return us_history
82
+
83
+
84
+ def self_play():
85
+ if len(self_play_history) == 0:
86
+ sys_response = ""
87
+ else:
88
+ sys_response = self_play_history[-1][1]
89
+
90
+ user_utt = user_model.response(sys_response)
91
+
92
+ turn_id = len(self_play_history)
93
+ sys_response = sys_model.response(user_utt, turn_id)
94
+
95
+ self_play_history.append((user_utt, sys_response))
96
+
97
+ if user_model.is_terminated():
98
+ change_goal()
99
+
100
+ return self_play_history
101
+
102
+
103
+ # Initialise demo render
104
+ block = gr.Blocks()
105
+
106
+ with block:
107
+ gr.Markdown("# Demo User Simulator and Task-Oriented Dialogue System")
108
+ gr.Markdown("*Created by Alistair McLeay, with help from Professor Bill Byrne, Andy Tseng, and Alex Coca*")
109
+ with gr.Tabs():
110
+ with gr.TabItem("Dialogue System"):
111
+ gr.Markdown(
112
+ "This bot is a Task-Oriented Dialogue Systen. You are the user. Go ahead and try to book a train, or a hotel etc."
113
+ )
114
+ with gr.Row():
115
+ ds_input_text = gr.inputs.Textbox(
116
+ label="User Message", placeholder="I'd like to book a train from Cambridge to London"
117
+ )
118
+ ds_response = gr.outputs.Chatbot(label="Dialogue System Response")
119
+ ds_button = gr.Button("Submit Message")
120
+
121
+ with gr.TabItem("User Simulator"):
122
+ gr.Markdown(
123
+ "This bot is a User Simulator. You are the Task-Oriented Dialogue System. Your job is to help the user with their requests."
124
+ )
125
+ new_goal_button = gr.Button("Generate Goal")
126
+ with gr.Row():
127
+ us_input_text = gr.inputs.Textbox(
128
+ label="Dialogue System Message", placeholder="How can I help you today?"
129
+ )
130
+ us_response = gr.outputs.Chatbot(label="User Simulator Response")
131
+ current_goal_yaml = gr.outputs.Textbox(label="Current Goal (YAML)")
132
+ us_button = gr.Button("Submit Message")
133
+
134
+ with gr.TabItem("Self-Play"):
135
+ gr.Markdown(
136
+ "In this scenario you define a goal and you then watch both agents interact where the User Simulator is trying to achieve the goal, and the Task-Oriented Dialogue System is trying to help the User Simulator do so."
137
+ )
138
+ new_sp_goal_button = gr.Button("Generate Goal")
139
+ with gr.Row():
140
+ self_play_response = gr.outputs.Chatbot(label="Self-Play Output")
141
+ current_sp_goal_yaml = gr.outputs.Textbox(label="Current Goal (YAML)")
142
+ self_play_button = gr.Button("Run Next Step")
143
+
144
+ ds_button.click(ds_chatbot, ds_input_text, ds_response)
145
+ us_button.click(us_chatbot, us_input_text, us_response)
146
+ self_play_button.click(self_play, None, self_play_response)
147
+ new_goal_button.click(change_goal, None, current_goal_yaml)
148
+ new_sp_goal_button.click(change_sp_goal, None, current_sp_goal_yaml)
149
+
150
+ block.launch(share=True)
 
 
 
 
 
 
 
 
 
 
 
 
data/preprocessed/.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ # Ignore everything in this directory
2
+ *
3
+ # Except this file
4
+ !.gitignore
data/raw/UBAR/db/attraction-dbase.db ADDED
Binary file (24.6 kB). View file
 
data/raw/UBAR/db/attraction_db.json ADDED
@@ -0,0 +1,1266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "address": "pool way, whitehill road, off newmarket road",
4
+ "area": "east",
5
+ "entrance fee": "?",
6
+ "id": "1",
7
+ "location": [
8
+ 52.208789,
9
+ 0.154883
10
+ ],
11
+ "name": "abbey pool and astroturf pitch",
12
+ "openhours": "?",
13
+ "phone": "01223902088",
14
+ "postcode": "cb58nt",
15
+ "pricerange": "?",
16
+ "type": "swimmingpool"
17
+ },
18
+ {
19
+ "address": "park street",
20
+ "area": "centre",
21
+ "entrance fee": "?",
22
+ "id": "2",
23
+ "location": [
24
+ 52.208699,
25
+ 0.12006
26
+ ],
27
+ "name": "adc theatre",
28
+ "openhours": "?",
29
+ "phone": "01223300085",
30
+ "postcode": "cb58as",
31
+ "pricerange": "?",
32
+ "type": "theatre"
33
+ },
34
+ {
35
+ "address": "jesus lane",
36
+ "area": "centre",
37
+ "entrance fee": "free",
38
+ "id": "3",
39
+ "location": [
40
+ 52.2078083333333,
41
+ 0.125616666666667
42
+ ],
43
+ "name": "all saints church",
44
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m., at other times the key can be borrowed from a nearby key holder.",
45
+ "phone": "01223452587",
46
+ "postcode": "cb58bs",
47
+ "pricerange": "free",
48
+ "type": "architecture"
49
+ },
50
+ {
51
+ "address": "heidelberg gardens, lion yard",
52
+ "area": "centre",
53
+ "entrance fee": "5 pounds",
54
+ "id": "4",
55
+ "location": [
56
+ 52.20478,
57
+ 0.11975
58
+ ],
59
+ "name": "ballare",
60
+ "openhours": "it opens from 10:30 p.m. to 03:30 a.m on thursday, from 11:00 p.m. to 04:00 a.m. on friday, from 10:00 p.m. to 03:30 a.m. on saturday, and from 10:00 p.m. to 02:30 a.m. on monday",
61
+ "phone": "01223364222",
62
+ "postcode": "cb23na",
63
+ "pricerange": "moderate",
64
+ "type": "nightclub"
65
+ },
66
+ {
67
+ "address": "98 king street",
68
+ "area": "centre",
69
+ "entrance fee": "free",
70
+ "id": "5",
71
+ "location": [
72
+ 52.207409,
73
+ 0.126738
74
+ ],
75
+ "name": "broughton house gallery",
76
+ "openhours": "?",
77
+ "phone": "01223314960",
78
+ "postcode": "cb11ln",
79
+ "pricerange": "free",
80
+ "type": "museum"
81
+ },
82
+ {
83
+ "address": "14 king's parade",
84
+ "area": "south",
85
+ "entrance fee": "free",
86
+ "id": "6",
87
+ "location": [
88
+ 52.1725982,
89
+ 0.1112224
90
+ ],
91
+ "name": "byard art",
92
+ "openhours": "it opens from 09:30 a.m. to 5:30 p.m. from monday to saturday, and from 11:00 a.m. to 4:00 p.m. on sunday",
93
+ "phone": "01223464646",
94
+ "postcode": "cb21sj",
95
+ "pricerange": "free",
96
+ "type": "museum"
97
+ },
98
+ {
99
+ "address": "cafe jello gallery, 13 magdalene street",
100
+ "area": "west",
101
+ "entrance fee": "free",
102
+ "id": "7",
103
+ "location": [
104
+ 52.221949,
105
+ 0.094948
106
+ ],
107
+ "name": "cafe jello gallery",
108
+ "openhours": "it opens from 10:30 a.m. to 5:30 p.m. thursday to saturday",
109
+ "phone": "01223312112",
110
+ "postcode": "cb30af",
111
+ "pricerange": "free",
112
+ "type": "museum"
113
+ },
114
+ {
115
+ "address": "the plough, green end, fen ditton,",
116
+ "area": "east",
117
+ "entrance fee": "?",
118
+ "id": "8",
119
+ "location": [
120
+ 52.21247,
121
+ 0.15619
122
+ ],
123
+ "name": "camboats",
124
+ "openhours": "?",
125
+ "phone": "01223902112",
126
+ "postcode": "cb58sx",
127
+ "pricerange": "?",
128
+ "type": "boat"
129
+ },
130
+ {
131
+ "address": "2-3 castle street",
132
+ "area": "west",
133
+ "entrance fee": "3.50 pounds",
134
+ "id": "9",
135
+ "location": [
136
+ 52.210766,
137
+ 0.114795
138
+ ],
139
+ "name": "cambridge and county folk museum",
140
+ "openhours": "it opens from monday to saturday, 10 a.m. to 5 p.m. while on sunday it opens from 2 p.m. to 5 p.m.",
141
+ "phone": "01223355159",
142
+ "postcode": "cb30aq",
143
+ "pricerange": "moderate",
144
+ "type": "museum"
145
+ },
146
+ {
147
+ "address": "6 saint edward's passage",
148
+ "area": "centre",
149
+ "entrance fee": "?",
150
+ "id": "10",
151
+ "location": [
152
+ 52.2034781571435,
153
+ 0.119176917855308
154
+ ],
155
+ "name": "cambridge arts theatre",
156
+ "openhours": "?",
157
+ "phone": "01223503333",
158
+ "postcode": "cb23pj",
159
+ "pricerange": "?",
160
+ "type": "theatre"
161
+ },
162
+ {
163
+ "address": "5 greens road",
164
+ "area": "east",
165
+ "entrance fee": "free",
166
+ "id": "11",
167
+ "location": [
168
+ 52.202271,
169
+ 0.14702
170
+ ],
171
+ "name": "cambridge artworks",
172
+ "openhours": "?",
173
+ "phone": "01223902168",
174
+ "postcode": "cb13ef",
175
+ "pricerange": "free",
176
+ "type": "museum"
177
+ },
178
+ {
179
+ "address": "49 newnham road",
180
+ "area": "west",
181
+ "entrance fee": "free",
182
+ "id": "12",
183
+ "location": [
184
+ 52.198744,
185
+ 0.113364
186
+ ],
187
+ "name": "cambridge book and print gallery",
188
+ "openhours": "it opens from 10:00 a.m. to 5:00 p.m. from tuesday to saturday",
189
+ "phone": "01223694264",
190
+ "postcode": "cb39ey",
191
+ "pricerange": "free",
192
+ "type": "museum"
193
+ },
194
+ {
195
+ "address": "6 trinity street",
196
+ "area": "centre",
197
+ "entrance fee": "free",
198
+ "id": "13",
199
+ "location": [
200
+ 52.206084,
201
+ 0.118268
202
+ ],
203
+ "name": "cambridge contemporary art",
204
+ "openhours": "it opens from 11:00 a.m. to 4:00 p.m. on sunday, and from 09:00 a.m. to 5:30 p.m. from monday to saturday",
205
+ "phone": "01223324222",
206
+ "postcode": "cb21su",
207
+ "pricerange": "free",
208
+ "type": "museum"
209
+ },
210
+ {
211
+ "address": "the old pumping station, cheddars lane",
212
+ "area": "east",
213
+ "entrance fee": "5 pounds",
214
+ "id": "14",
215
+ "location": [
216
+ 52.21247,
217
+ 0.15619
218
+ ],
219
+ "name": "cambridge museum of technology",
220
+ "openhours": "it opens on sunday from 2:00 p.m. to 5:00 p.m.",
221
+ "phone": "01223368650",
222
+ "postcode": "cb58ld",
223
+ "pricerange": "expensive",
224
+ "type": "museum"
225
+ },
226
+ {
227
+ "address": "bateman street",
228
+ "area": "centre",
229
+ "entrance fee": "4 pounds",
230
+ "id": "15",
231
+ "location": [
232
+ 52.19525,
233
+ 0.126
234
+ ],
235
+ "name": "cambridge university botanic gardens",
236
+ "openhours": "it opens from 10:00 a.m. to 6:00 p.m. from april to september, from 10:00 a.m. to 5:00 p.m. in february march and october, and from 10:00 a.m. to 4:00 p.m. from november to january",
237
+ "phone": "01223336265",
238
+ "postcode": "cb21jf",
239
+ "pricerange": "moderate",
240
+ "type": "park"
241
+ },
242
+ {
243
+ "address": "unit su43, grande arcade, saint andrews street",
244
+ "area": "centre",
245
+ "entrance fee": "free",
246
+ "id": "16",
247
+ "location": [
248
+ 52.204788,
249
+ 0.1214
250
+ ],
251
+ "name": "castle galleries",
252
+ "openhours": "it opens from 09:00 a.m. to 6:00 p.m. every day except wednesday when it opens from 09:00 a.m. to 8:00 p.m., and sunday when it opens from 11:00 a.m. to 5:00 p.m.",
253
+ "phone": "01223307402",
254
+ "postcode": "cb23bj",
255
+ "pricerange": "free",
256
+ "type": "museum"
257
+ },
258
+ {
259
+ "address": "cherry hinton road",
260
+ "area": "east",
261
+ "entrance fee": "?",
262
+ "id": "17",
263
+ "location": [
264
+ 52.186045,
265
+ 0.157515
266
+ ],
267
+ "name": "cherry hinton hall and grounds",
268
+ "openhours": "?",
269
+ "phone": "01223446104",
270
+ "postcode": "cb18dw",
271
+ "pricerange": "?",
272
+ "type": "entertainment"
273
+ },
274
+ {
275
+ "address": "cherry hinton hall, cherry hinton road",
276
+ "area": "east",
277
+ "entrance fee": "free",
278
+ "id": "18",
279
+ "location": [
280
+ 52.186045,
281
+ 0.157515
282
+ ],
283
+ "name": "cherry hinton water play",
284
+ "openhours": "it opens from may to september",
285
+ "phone": "01223446100",
286
+ "postcode": "cb18dw",
287
+ "pricerange": "free",
288
+ "type": "park"
289
+ },
290
+ {
291
+ "address": "saint andrew's street",
292
+ "area": "centre",
293
+ "entrance fee": "free",
294
+ "id": "19",
295
+ "location": [
296
+ 52.20635,
297
+ 0.121727777777778
298
+ ],
299
+ "name": "christ's college",
300
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
301
+ "phone": "01223334900",
302
+ "postcode": "cb23bu",
303
+ "pricerange": "free",
304
+ "type": "college"
305
+ },
306
+ {
307
+ "address": "storey's way",
308
+ "area": "west",
309
+ "entrance fee": "free",
310
+ "id": "20",
311
+ "location": [
312
+ 52.2128888888889,
313
+ 0.103127777777778
314
+ ],
315
+ "name": "churchill college",
316
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
317
+ "phone": "01223336233",
318
+ "postcode": "cb30ds",
319
+ "pricerange": "free",
320
+ "type": "college"
321
+ },
322
+ {
323
+ "address": "cambridge leisure park, clifton way",
324
+ "area": "south",
325
+ "entrance fee": "?",
326
+ "id": "21",
327
+ "location": [
328
+ 52.1901222222222,
329
+ 0.136991666666667
330
+ ],
331
+ "name": "cineworld cinema",
332
+ "openhours": "?",
333
+ "phone": "00872208000",
334
+ "postcode": "cb17dy",
335
+ "pricerange": "?",
336
+ "type": "cinema"
337
+ },
338
+ {
339
+ "address": "trinity lane",
340
+ "area": "west",
341
+ "entrance fee": "2.50 pounds",
342
+ "id": "22",
343
+ "location": [
344
+ 52.2048527777778,
345
+ 0.115422222222222
346
+ ],
347
+ "name": "clare college",
348
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
349
+ "phone": "01223333200",
350
+ "postcode": "cb21tl",
351
+ "pricerange": "moderate",
352
+ "type": "college"
353
+ },
354
+ {
355
+ "address": "herschel road",
356
+ "area": "west",
357
+ "entrance fee": "free",
358
+ "id": "23",
359
+ "location": [
360
+ 52.2040527777778,
361
+ 0.104480555555556
362
+ ],
363
+ "name": "clare hall",
364
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
365
+ "phone": "01223332360",
366
+ "postcode": "cb39al",
367
+ "pricerange": "free",
368
+ "type": "college"
369
+ },
370
+ {
371
+ "address": "1 station road",
372
+ "area": "centre",
373
+ "entrance fee": "5 pounds",
374
+ "id": "24",
375
+ "location": [
376
+ 52.195173,
377
+ 0.131644
378
+ ],
379
+ "name": "club salsa",
380
+ "openhours": "it opens at the university social club from 9:30 p.m. to 11:30 p.m. on wednesday, and from 10:00 p.m. to 01:00 a.m. on friday",
381
+ "phone": "07782218745",
382
+ "postcode": "cb12jb",
383
+ "pricerange": "moderate",
384
+ "type": "nightclub"
385
+ },
386
+ {
387
+ "address": "king's parade",
388
+ "area": "centre",
389
+ "entrance fee": "2 pounds",
390
+ "id": "25",
391
+ "location": [
392
+ 52.2028416666667,
393
+ 0.117844444444444
394
+ ],
395
+ "name": "corpus christi",
396
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
397
+ "phone": "01223338000",
398
+ "postcode": "cb21rh",
399
+ "pricerange": "cheap",
400
+ "type": "college"
401
+ },
402
+ {
403
+ "address": "regent street",
404
+ "area": "centre",
405
+ "entrance fee": "free",
406
+ "id": "26",
407
+ "location": [
408
+ 52.2013777777778,
409
+ 0.125194444444444
410
+ ],
411
+ "name": "downing college",
412
+ "openhours": "it opens daily from 9 a.m. to 5 p.m. except during easter term",
413
+ "phone": "01223334860",
414
+ "postcode": "cb21dq",
415
+ "pricerange": "free",
416
+ "type": "college"
417
+ },
418
+ {
419
+ "address": "saint andrew's street",
420
+ "area": "centre",
421
+ "entrance fee": "free",
422
+ "id": "27",
423
+ "location": [
424
+ 52.203572,
425
+ 0.123778
426
+ ],
427
+ "name": "emmanuel college",
428
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
429
+ "phone": "01223334200",
430
+ "postcode": "cb23ap",
431
+ "pricerange": "free",
432
+ "type": "college"
433
+ },
434
+ {
435
+ "address": "8 mercers row, mercers row industrial estate",
436
+ "area": "east",
437
+ "entrance fee": "?",
438
+ "id": "28",
439
+ "location": [
440
+ 52.21401,
441
+ 0.14789
442
+ ],
443
+ "name": "funky fun house",
444
+ "openhours": "?",
445
+ "phone": "01223304705",
446
+ "postcode": "cb58hy",
447
+ "pricerange": "?",
448
+ "type": "entertainment"
449
+ },
450
+ {
451
+ "address": "fulbourn",
452
+ "area": "east",
453
+ "entrance fee": "free",
454
+ "id": "29",
455
+ "location": [
456
+ 52.183498,
457
+ 0.22186
458
+ ],
459
+ "name": "gallery at twelve a high street",
460
+ "openhours": "?",
461
+ "phone": "01223295264",
462
+ "postcode": "cb15dh",
463
+ "pricerange": "free",
464
+ "type": "museum"
465
+ },
466
+ {
467
+ "address": "trinity street",
468
+ "area": "centre",
469
+ "entrance fee": "free",
470
+ "id": "30",
471
+ "location": [
472
+ 52.205861,
473
+ 0.117972
474
+ ],
475
+ "name": "gonville and caius college",
476
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
477
+ "phone": "01223332400",
478
+ "postcode": "cb21ta",
479
+ "pricerange": "free",
480
+ "type": "college"
481
+ },
482
+ {
483
+ "address": "market square",
484
+ "area": "centre",
485
+ "entrance fee": "2 pounds",
486
+ "id": "31",
487
+ "location": [
488
+ 52.2049472222222,
489
+ 0.118222222222222
490
+ ],
491
+ "name": "great saint mary's church",
492
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m.",
493
+ "phone": "01223350914",
494
+ "postcode": "cb23pq",
495
+ "pricerange": "cheap",
496
+ "type": "architecture"
497
+ },
498
+ {
499
+ "address": "market street",
500
+ "area": "centre",
501
+ "entrance fee": "free",
502
+ "id": "32",
503
+ "location": [
504
+ 52.2057694444444,
505
+ 0.120033333333333
506
+ ],
507
+ "name": "holy trinity church",
508
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m.",
509
+ "phone": "01223355397",
510
+ "postcode": "cb23nz",
511
+ "pricerange": "free",
512
+ "type": "architecture"
513
+ },
514
+ {
515
+ "address": "wollaston road",
516
+ "area": "centre",
517
+ "entrance fee": "free",
518
+ "id": "33",
519
+ "location": [
520
+ 52.200692,
521
+ 0.133253
522
+ ],
523
+ "name": "hughes hall",
524
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
525
+ "phone": "01223334898",
526
+ "postcode": "cb12ew",
527
+ "pricerange": "free",
528
+ "type": "college"
529
+ },
530
+ {
531
+ "address": "jesus lane",
532
+ "area": "centre",
533
+ "entrance fee": "free",
534
+ "id": "34",
535
+ "location": [
536
+ 52.209353,
537
+ 0.125342
538
+ ],
539
+ "name": "jesus college",
540
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
541
+ "phone": "01223339485",
542
+ "postcode": "cb58bl",
543
+ "pricerange": "free",
544
+ "type": "college"
545
+ },
546
+ {
547
+ "address": "between victoria road and the river",
548
+ "area": "north",
549
+ "entrance fee": "?",
550
+ "id": "35",
551
+ "location": [
552
+ 52.220328,
553
+ 0.115149
554
+ ],
555
+ "name": "jesus green outdoor pool",
556
+ "openhours": "?",
557
+ "phone": "01223302579",
558
+ "postcode": "cb43px",
559
+ "pricerange": "?",
560
+ "type": "swimmingpool"
561
+ },
562
+ {
563
+ "address": "1 wheeler street",
564
+ "area": "centre",
565
+ "entrance fee": "5 pounds",
566
+ "id": "36",
567
+ "location": [
568
+ 52.204192,
569
+ 0.119187
570
+ ],
571
+ "name": "kambar",
572
+ "openhours": "it opens from 10:00 p.m. to 4:00 a.m. depending on whether there is an event on or not",
573
+ "phone": "01223842725",
574
+ "postcode": "cb23qb",
575
+ "pricerange": "moderate",
576
+ "type": "nightclub"
577
+ },
578
+ {
579
+ "address": "castle street",
580
+ "area": "west",
581
+ "entrance fee": "free",
582
+ "id": "37",
583
+ "location": [
584
+ 52.212405,
585
+ 0.113075
586
+ ],
587
+ "name": "kettle's yard",
588
+ "openhours": "it opens from 11:30 a.m. to 5:00 p.m. tuesday to sunday",
589
+ "phone": "01223748100",
590
+ "postcode": "cb30aq",
591
+ "pricerange": "free",
592
+ "type": "museum"
593
+ },
594
+ {
595
+ "address": "king's parade",
596
+ "area": "centre",
597
+ "entrance fee": "free",
598
+ "id": "38",
599
+ "location": [
600
+ 52.204289,
601
+ 0.117269
602
+ ],
603
+ "name": "king's college",
604
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
605
+ "phone": "01223331100",
606
+ "postcode": "cb21st",
607
+ "pricerange": "free",
608
+ "type": "college"
609
+ },
610
+ {
611
+ "address": "jedburgh court, kings hedges",
612
+ "area": "north",
613
+ "entrance fee": "?",
614
+ "id": "39",
615
+ "location": [
616
+ 52.23171,
617
+ 0.122415
618
+ ],
619
+ "name": "kings hedges learner pool",
620
+ "openhours": "?",
621
+ "phone": "01223353248",
622
+ "postcode": "cb42xh",
623
+ "pricerange": "?",
624
+ "type": "swimmingpool"
625
+ },
626
+ {
627
+ "address": "little saint mary's lane",
628
+ "area": "centre",
629
+ "entrance fee": "free",
630
+ "id": "40",
631
+ "location": [
632
+ 52.2005111111111,
633
+ 0.119883333333333
634
+ ],
635
+ "name": "little saint mary's church",
636
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m.",
637
+ "phone": "01223366202",
638
+ "postcode": "cb21qy",
639
+ "pricerange": "free",
640
+ "type": "architecture"
641
+ },
642
+ {
643
+ "address": "23 high street, fen ditton",
644
+ "area": "west",
645
+ "entrance fee": "free",
646
+ "id": "41",
647
+ "location": [
648
+ 52.222053,
649
+ 0.095086
650
+ ],
651
+ "name": "lynne strover gallery",
652
+ "openhours": "it opens from 10:00 a.m. to 5:00 p.m. thursday to saturday",
653
+ "phone": "01223295264",
654
+ "postcode": "cb30aq",
655
+ "pricerange": "free",
656
+ "type": "museum"
657
+ },
658
+ {
659
+ "address": "magdalene street",
660
+ "area": "west",
661
+ "entrance fee": "free",
662
+ "id": "42",
663
+ "location": [
664
+ 52.210403,
665
+ 0.115803
666
+ ],
667
+ "name": "magdalene college",
668
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
669
+ "phone": "01223332138",
670
+ "postcode": "cb30ag",
671
+ "pricerange": "free",
672
+ "type": "college"
673
+ },
674
+ {
675
+ "address": "milton country park, milton",
676
+ "area": "north",
677
+ "entrance fee": "free",
678
+ "id": "43",
679
+ "location": [
680
+ 52.247361,
681
+ 0.156627
682
+ ],
683
+ "name": "milton country park",
684
+ "openhours": "always",
685
+ "phone": "01223420060",
686
+ "postcode": "cb46az",
687
+ "pricerange": "free",
688
+ "type": "park"
689
+ },
690
+ {
691
+ "address": "anglia ruskin enterprise, east road",
692
+ "area": "centre",
693
+ "entrance fee": "?",
694
+ "id": "44",
695
+ "location": [
696
+ 52.20571,
697
+ 0.131061
698
+ ],
699
+ "name": "mumford theatre",
700
+ "openhours": "?",
701
+ "phone": "08451962320",
702
+ "postcode": "cb11pt",
703
+ "pricerange": "?",
704
+ "type": "theatre"
705
+ },
706
+ {
707
+ "address": "university of cambridge, downing street",
708
+ "area": "centre",
709
+ "entrance fee": "free",
710
+ "id": "45",
711
+ "location": [
712
+ 52.205261,
713
+ 0.11664
714
+ ],
715
+ "name": "museum of archaelogy and anthropology",
716
+ "openhours": "it opens from 10:30 a.m. to 4:30 p.m. tuesday to saturday",
717
+ "phone": "01223333516",
718
+ "postcode": "cb23dz",
719
+ "pricerange": "free",
720
+ "type": "museum"
721
+ },
722
+ {
723
+ "address": "sidgwick avenue",
724
+ "area": "west",
725
+ "entrance fee": "free",
726
+ "id": "46",
727
+ "location": [
728
+ 52.20987,
729
+ 0.111565
730
+ ],
731
+ "name": "museum of classical archaeology",
732
+ "openhours": "it opens from 10:00 a.m. to 5:00 p.m. monday to friday",
733
+ "phone": "01223335153",
734
+ "postcode": "cb39da",
735
+ "pricerange": "free",
736
+ "type": "museum"
737
+ },
738
+ {
739
+ "address": "unit g6, cambridge leisure park, clifton road",
740
+ "area": "south",
741
+ "entrance fee": "?",
742
+ "id": "47",
743
+ "location": [
744
+ 52.1896573155949,
745
+ 0.137541476208324
746
+ ],
747
+ "name": "nusha",
748
+ "openhours": "it opens from 5:00 p.m. to 01:30 a.m. on tuesday, friday and saturday, and from 5:00 p.m. to midnight on monday, wednesday, thursday and sunday.",
749
+ "phone": "01223902158",
750
+ "postcode": "cb17dy",
751
+ "pricerange": "?",
752
+ "type": "entertainment"
753
+ },
754
+ {
755
+ "address": "trinity lane",
756
+ "area": "centre",
757
+ "entrance fee": "free",
758
+ "id": "48",
759
+ "location": [
760
+ 52.2052638888889,
761
+ 0.116641666666667
762
+ ],
763
+ "name": "old schools",
764
+ "openhours": "it opens normally daily from 08:00 a.m. to 5:45 p.m.",
765
+ "phone": "01223332320",
766
+ "postcode": "cb21tt",
767
+ "pricerange": "free",
768
+ "type": "architecture"
769
+ },
770
+ {
771
+ "address": "gonville place",
772
+ "area": "centre",
773
+ "entrance fee": "?",
774
+ "id": "49",
775
+ "location": [
776
+ 52.201275,
777
+ 0.129935
778
+ ],
779
+ "name": "parkside pools",
780
+ "openhours": "?",
781
+ "phone": "01223446100",
782
+ "postcode": "cb11ly",
783
+ "pricerange": "?",
784
+ "type": "swimmingpool"
785
+ },
786
+ {
787
+ "address": "trumpington street",
788
+ "area": "centre",
789
+ "entrance fee": "free",
790
+ "id": "50",
791
+ "location": [
792
+ 52.202611,
793
+ 0.120658
794
+ ],
795
+ "name": "pembroke college",
796
+ "openhours": "any time except may and june",
797
+ "phone": "01223338100",
798
+ "postcode": "cb21rf",
799
+ "pricerange": "free",
800
+ "type": "college"
801
+ },
802
+ {
803
+ "address": "girton college, huntingdon road",
804
+ "area": "west",
805
+ "entrance fee": "free",
806
+ "id": "51",
807
+ "location": [
808
+ 52.228375,
809
+ 0.0837527777777778
810
+ ],
811
+ "name": "people's portraits exhibition at girton college",
812
+ "openhours": "it opens from 2:00 p.m. to 4:00 p.m. daily from february to july",
813
+ "phone": "01223338901",
814
+ "postcode": "cb3ojg",
815
+ "pricerange": "free",
816
+ "type": "museum"
817
+ },
818
+ {
819
+ "address": "10 king s parade",
820
+ "area": "centre",
821
+ "entrance fee": "free",
822
+ "id": "52",
823
+ "location": [
824
+ 52.2034781571435,
825
+ 0.119176917855308
826
+ ],
827
+ "name": "primavera",
828
+ "openhours": "it opens from 11:00 a.m. to 4:30 p.m. on sunday, from 10:00 a.m. to 5:00 p.m. from monday to friday, and from 10:00 a.m. to 5:30 p.m. on saturday",
829
+ "phone": "01223357708",
830
+ "postcode": "cb21sj",
831
+ "pricerange": "free",
832
+ "type": "museum"
833
+ },
834
+ {
835
+ "address": "silver street",
836
+ "area": "west",
837
+ "entrance fee": "2.50 pounds",
838
+ "id": "53",
839
+ "location": [
840
+ 52.2018,
841
+ 0.114239
842
+ ],
843
+ "name": "queens' college",
844
+ "openhours": "monday to sunday 10 a.m. to 4:30 p.m.",
845
+ "phone": "01223335511",
846
+ "postcode": "cb39et",
847
+ "pricerange": "moderate",
848
+ "type": "college"
849
+ },
850
+ {
851
+ "address": "39 fitzroy street",
852
+ "area": "centre",
853
+ "entrance fee": "free",
854
+ "id": "54",
855
+ "location": [
856
+ 52.206823,
857
+ 0.131361
858
+ ],
859
+ "name": "regency gallery",
860
+ "openhours": "?",
861
+ "phone": "01223365454",
862
+ "postcode": "cb11er",
863
+ "pricerange": "free",
864
+ "type": "museum"
865
+ },
866
+ {
867
+ "address": "cambridge passenger cruisers, jubilee house",
868
+ "area": "north",
869
+ "entrance fee": "?",
870
+ "id": "55",
871
+ "location": [
872
+ 52.229515,
873
+ 0.111645
874
+ ],
875
+ "name": "riverboat georgina",
876
+ "openhours": "?",
877
+ "phone": "01223902091",
878
+ "postcode": "cb43ax",
879
+ "pricerange": "?",
880
+ "type": "boat"
881
+ },
882
+ {
883
+ "address": "anglia ruskin university, east road",
884
+ "area": "centre",
885
+ "entrance fee": "free",
886
+ "id": "56",
887
+ "location": [
888
+ 52.20571,
889
+ 0.131061
890
+ ],
891
+ "name": "ruskin gallery",
892
+ "openhours": "?",
893
+ "phone": "01245493131",
894
+ "postcode": "cb11pt",
895
+ "pricerange": "free",
896
+ "type": "museum"
897
+ },
898
+ {
899
+ "address": "the belfast yard, coldham's road",
900
+ "area": "east",
901
+ "entrance fee": "free",
902
+ "id": "57",
903
+ "location": [
904
+ 52.20858,
905
+ 0.148702
906
+ ],
907
+ "name": "saint barnabas press gallery",
908
+ "openhours": "?",
909
+ "phone": "01223902116",
910
+ "postcode": "cb13ew",
911
+ "pricerange": "free",
912
+ "type": "museum"
913
+ },
914
+ {
915
+ "address": "king's parade",
916
+ "area": "centre",
917
+ "entrance fee": "free",
918
+ "id": "58",
919
+ "location": [
920
+ 52.202839,
921
+ 0.116394
922
+ ],
923
+ "name": "saint catharine's college",
924
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
925
+ "phone": "01223338300",
926
+ "postcode": "cb21rl",
927
+ "pricerange": "free",
928
+ "type": "college"
929
+ },
930
+ {
931
+ "address": "saint john's street",
932
+ "area": "centre",
933
+ "entrance fee": "2.50 pounds",
934
+ "id": "59",
935
+ "location": [
936
+ 52.208803,
937
+ 0.117411
938
+ ],
939
+ "name": "saint john's college",
940
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
941
+ "phone": "01223338600",
942
+ "postcode": "cb21tp",
943
+ "pricerange": "moderate",
944
+ "type": "college"
945
+ },
946
+ {
947
+ "address": "lensfield road",
948
+ "area": "centre",
949
+ "entrance fee": "free",
950
+ "id": "60",
951
+ "location": [
952
+ 52.19806,
953
+ 0.123185
954
+ ],
955
+ "name": "scott polar museum",
956
+ "openhours": "it opens from 10:00 a.m. to 4:00 p.m. from tuesday to saturday",
957
+ "phone": "01223336540",
958
+ "postcode": "cb21er",
959
+ "pricerange": "free",
960
+ "type": "museum"
961
+ },
962
+ {
963
+ "address": "granta place, mill lane",
964
+ "area": "centre",
965
+ "entrance fee": "?",
966
+ "id": "61",
967
+ "location": [
968
+ 52.200975,
969
+ 0.116298
970
+ ],
971
+ "name": "scudamores punting co",
972
+ "openhours": "?",
973
+ "phone": "01223359750",
974
+ "postcode": "cb21rs",
975
+ "pricerange": "?",
976
+ "type": "boat"
977
+ },
978
+ {
979
+ "address": "fen causeway, newnham road,",
980
+ "area": "south",
981
+ "entrance fee": "free",
982
+ "id": "62",
983
+ "location": [
984
+ 52.17674,
985
+ 0.14559
986
+ ],
987
+ "name": "sheep's green and lammas land park fen causeway",
988
+ "openhours": "it is open from may to sept",
989
+ "phone": "01223302580",
990
+ "postcode": "cb22ad",
991
+ "pricerange": "free",
992
+ "type": "park"
993
+ },
994
+ {
995
+ "address": "sidney street",
996
+ "area": "centre",
997
+ "entrance fee": "free",
998
+ "id": "63",
999
+ "location": [
1000
+ 52.207464,
1001
+ 0.121342
1002
+ ],
1003
+ "name": "sidney sussex college",
1004
+ "openhours": "it opens daily from 9 a.m. to 5 p.m. except during easter term",
1005
+ "phone": "01223338800",
1006
+ "postcode": "cb23hu",
1007
+ "pricerange": "free",
1008
+ "type": "college"
1009
+ },
1010
+ {
1011
+ "address": "1-6 corn exchange street",
1012
+ "area": "centre",
1013
+ "entrance fee": "4 pounds",
1014
+ "id": "64",
1015
+ "location": [
1016
+ 52.203878,
1017
+ 0.12044
1018
+ ],
1019
+ "name": "soul tree nightclub",
1020
+ "openhours": "it opens from 9:30 p.m. to 02:00 a.m. from sunday to tuesday, from 9:00 p.m. to 02:00 a.m. on wednesday, and from 9:00 p.m. to 02:30 a.m. from thursday to saturday",
1021
+ "phone": "01223477900",
1022
+ "postcode": "cb23qf",
1023
+ "pricerange": "cheap",
1024
+ "type": "nightclub"
1025
+ },
1026
+ {
1027
+ "address": "cambridge leisure park, clifton way",
1028
+ "area": "south",
1029
+ "entrance fee": "?",
1030
+ "id": "65",
1031
+ "location": [
1032
+ 52.18568,
1033
+ 0.144638
1034
+ ],
1035
+ "name": "tenpin",
1036
+ "openhours": "?",
1037
+ "phone": "08715501010",
1038
+ "postcode": "cb17dy",
1039
+ "pricerange": "?",
1040
+ "type": "entertainment"
1041
+ },
1042
+ {
1043
+ "address": "wheeler street",
1044
+ "area": "centre",
1045
+ "entrance fee": "?",
1046
+ "id": "66",
1047
+ "location": [
1048
+ 52.20431,
1049
+ 0.119215
1050
+ ],
1051
+ "name": "the cambridge corn exchange",
1052
+ "openhours": "?",
1053
+ "phone": "01223357851",
1054
+ "postcode": "cb23qe",
1055
+ "pricerange": "?",
1056
+ "type": "theatre"
1057
+ },
1058
+ {
1059
+ "address": "251a chesterton road",
1060
+ "area": "centre",
1061
+ "entrance fee": "?",
1062
+ "id": "67",
1063
+ "location": [
1064
+ 52.211939,
1065
+ 0.118661
1066
+ ],
1067
+ "name": "the cambridge punter",
1068
+ "openhours": "?",
1069
+ "phone": "07807718591",
1070
+ "postcode": "cb41as",
1071
+ "pricerange": "?",
1072
+ "type": "boat"
1073
+ },
1074
+ {
1075
+ "address": "colville road, cherry hinton",
1076
+ "area": "east",
1077
+ "entrance fee": "?",
1078
+ "id": "68",
1079
+ "location": [
1080
+ 52.186715,
1081
+ 0.17882
1082
+ ],
1083
+ "name": "the cherry hinton village centre",
1084
+ "openhours": "it opens from 09:00 a.m. to 8:00 p.m. on sunday, and from 09:00 a.m. to 10:00 p.m. from monday to saturday",
1085
+ "phone": "01223576412",
1086
+ "postcode": "cb19ej",
1087
+ "pricerange": "?",
1088
+ "type": "mutliple sports"
1089
+ },
1090
+ {
1091
+ "address": "8 market passage",
1092
+ "area": "centre",
1093
+ "entrance fee": "5 pounds",
1094
+ "id": "69",
1095
+ "location": [
1096
+ 52.206144,
1097
+ 0.120283
1098
+ ],
1099
+ "name": "the fez club",
1100
+ "openhours": "it opens on monday from 9 p.m. to 2 a.m.. it is closed on tuesday. from wednesday to saturday it opens from 9 p.m. to 2 a.m. and it is closed on sunday",
1101
+ "phone": "01223519224",
1102
+ "postcode": "cb23hx",
1103
+ "pricerange": "moderate",
1104
+ "type": "nightclub"
1105
+ },
1106
+ {
1107
+ "address": "trumpington street",
1108
+ "area": "centre",
1109
+ "entrance fee": "free",
1110
+ "id": "70",
1111
+ "location": [
1112
+ 52.19855,
1113
+ 0.121785
1114
+ ],
1115
+ "name": "the fitzwilliam museum",
1116
+ "openhours": "from tuesday to saturday it opens from 10 a.m. to 5 p.m. while on sunday, monday and bank holidays it opens from 12 to 5 p.m.",
1117
+ "phone": "01223332900",
1118
+ "postcode": "cb21rb",
1119
+ "pricerange": "free",
1120
+ "type": "museum"
1121
+ },
1122
+ {
1123
+ "address": "clifton way",
1124
+ "area": "south",
1125
+ "entrance fee": "?",
1126
+ "id": "71",
1127
+ "location": [
1128
+ 52.190325,
1129
+ 0.135755
1130
+ ],
1131
+ "name": "the junction",
1132
+ "openhours": "?",
1133
+ "phone": "01223511511",
1134
+ "postcode": "cb17gx",
1135
+ "pricerange": "?",
1136
+ "type": "theatre"
1137
+ },
1138
+ {
1139
+ "address": "2 norfolk street",
1140
+ "area": "centre",
1141
+ "entrance fee": "?",
1142
+ "id": "72",
1143
+ "location": [
1144
+ 52.204746,
1145
+ 0.136515
1146
+ ],
1147
+ "name": "the man on the moon",
1148
+ "openhours": "?",
1149
+ "phone": "01223474144",
1150
+ "postcode": "cb12lf",
1151
+ "pricerange": "?",
1152
+ "type": "concerthall"
1153
+ },
1154
+ {
1155
+ "address": "22 sidney street",
1156
+ "area": "south",
1157
+ "entrance fee": "?",
1158
+ "id": "73",
1159
+ "location": [
1160
+ 52.1725982,
1161
+ 0.1112224
1162
+ ],
1163
+ "name": "the place",
1164
+ "openhours": "it opens from 10:30 p.m. to 03:30 a.m. on tuesday, from 10:00 p.m. to 02:30 a.m. on thursday, from 10:00 p.m. to 04:00 a.m. on friday and saturday, and from 10:00 p.m. to 02:00 a.m. on sunday",
1165
+ "phone": "01223324600",
1166
+ "postcode": "cb23hg",
1167
+ "pricerange": "moderate",
1168
+ "type": "nightclub"
1169
+ },
1170
+ {
1171
+ "address": "trinity street",
1172
+ "area": "centre",
1173
+ "entrance fee": "1 pound",
1174
+ "id": "74",
1175
+ "location": [
1176
+ 52.207081,
1177
+ 0.117622
1178
+ ],
1179
+ "name": "trinity college",
1180
+ "openhours": "it opens normally daily from 9 a.m. to 5 p.m. except easter term",
1181
+ "phone": "01223338400",
1182
+ "postcode": "cb21tq",
1183
+ "pricerange": "cheap",
1184
+ "type": "college"
1185
+ },
1186
+ {
1187
+ "address": "the grafton centre, east road",
1188
+ "area": "centre",
1189
+ "entrance fee": "?",
1190
+ "id": "75",
1191
+ "location": [
1192
+ 52.20571,
1193
+ 0.131061
1194
+ ],
1195
+ "name": "vue cinema",
1196
+ "openhours": "?",
1197
+ "phone": "08712240240",
1198
+ "postcode": "cb11ps",
1199
+ "pricerange": "?",
1200
+ "type": "cinema"
1201
+ },
1202
+ {
1203
+ "address": "wandlebury ring, gog magog hills, babraham",
1204
+ "area": "south",
1205
+ "entrance fee": "free",
1206
+ "id": "76",
1207
+ "location": [
1208
+ 52.119551,
1209
+ 0.181018
1210
+ ],
1211
+ "name": "wandlebury country park",
1212
+ "openhours": "always",
1213
+ "phone": "01223243830",
1214
+ "postcode": "cb223ae",
1215
+ "pricerange": "free",
1216
+ "type": "park"
1217
+ },
1218
+ {
1219
+ "address": "unit 8, viking way, bar hill",
1220
+ "area": "west",
1221
+ "entrance fee": "?",
1222
+ "id": "77",
1223
+ "location": [
1224
+ 52.254,
1225
+ 0.016478
1226
+ ],
1227
+ "name": "whale of a time",
1228
+ "openhours": "it opens from 09:30 a.m. to 6:00 p.m. daily",
1229
+ "phone": "01954781018",
1230
+ "postcode": "cb238el",
1231
+ "pricerange": "?",
1232
+ "type": "entertainment"
1233
+ },
1234
+ {
1235
+ "address": "free school lane",
1236
+ "area": "centre",
1237
+ "entrance fee": "free",
1238
+ "id": "78",
1239
+ "location": [
1240
+ 52.203117,
1241
+ 0.118928
1242
+ ],
1243
+ "name": "whipple museum of the history of science",
1244
+ "openhours": "it opens from 12:30 p.m. to 4:30 p.m. from monday to friday",
1245
+ "phone": "01223330906",
1246
+ "postcode": "cb23rh",
1247
+ "pricerange": "free",
1248
+ "type": "museum"
1249
+ },
1250
+ {
1251
+ "address": "gwydir street, no. 5 dale's brewery",
1252
+ "area": "centre",
1253
+ "entrance fee": "free",
1254
+ "id": "79",
1255
+ "location": [
1256
+ 52.2002,
1257
+ 0.1385
1258
+ ],
1259
+ "name": "williams art and antiques",
1260
+ "openhours": "it opens from 11:00 a.m. to 6:00 p.m. from tuesday to friday, from 11:00 a.m. to 5:00 p.m. on saturday and sunday, and it is closed on monday",
1261
+ "phone": "01223311687",
1262
+ "postcode": "cb12lj",
1263
+ "pricerange": "free",
1264
+ "type": "museum"
1265
+ }
1266
+ ]
data/raw/UBAR/db/attraction_db_processed.json ADDED
@@ -0,0 +1,1266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "location": [
4
+ 52.208789,
5
+ 0.154883
6
+ ],
7
+ "address": "pool way , whitehill road , off newmarket road",
8
+ "area": "east",
9
+ "price": "?",
10
+ "id": "1",
11
+ "name": "abbey pool and astroturf pitch",
12
+ "openhours": "?",
13
+ "phone": "01223902088",
14
+ "postcode": "cb58nt",
15
+ "pricerange": "?",
16
+ "type": "swimming pool"
17
+ },
18
+ {
19
+ "location": [
20
+ 52.208699,
21
+ 0.12006
22
+ ],
23
+ "address": "park street",
24
+ "area": "centre",
25
+ "price": "?",
26
+ "id": "2",
27
+ "name": "adc theatre",
28
+ "openhours": "?",
29
+ "phone": "01223300085",
30
+ "postcode": "cb58as",
31
+ "pricerange": "?",
32
+ "type": "theatre"
33
+ },
34
+ {
35
+ "location": [
36
+ 52.2078083333333,
37
+ 0.125616666666667
38
+ ],
39
+ "address": "jesus lane",
40
+ "area": "centre",
41
+ "price": "free",
42
+ "id": "3",
43
+ "name": "all saints church",
44
+ "openhours": "it opens normally daily from 9 . to 5p . m. , at other times the key can be borrowed from a nearby key holder .",
45
+ "phone": "01223452587",
46
+ "postcode": "cb58bs",
47
+ "pricerange": "free",
48
+ "type": "architecture"
49
+ },
50
+ {
51
+ "location": [
52
+ 52.20478,
53
+ 0.11975
54
+ ],
55
+ "address": "heidelberg gardens , lion yard",
56
+ "area": "centre",
57
+ "price": "5 pounds",
58
+ "id": "4",
59
+ "name": "ballare",
60
+ "openhours": "it opens from 10:30p . m . to 03:30 on thursday , from 11:00p . m . to 04:00 . on friday , from 10:00p . m . to 03:30 . on saturday , and from 10:00p . m . to 02:30 . on monday",
61
+ "phone": "01223364222",
62
+ "postcode": "cb23na",
63
+ "pricerange": "moderate",
64
+ "type": "nightclub"
65
+ },
66
+ {
67
+ "location": [
68
+ 52.207409,
69
+ 0.126738
70
+ ],
71
+ "address": "98 king street",
72
+ "area": "centre",
73
+ "price": "free",
74
+ "id": "5",
75
+ "name": "broughton house gallery",
76
+ "openhours": "?",
77
+ "phone": "01223314960",
78
+ "postcode": "cb11ln",
79
+ "pricerange": "free",
80
+ "type": "museum"
81
+ },
82
+ {
83
+ "location": [
84
+ 52.1725982,
85
+ 0.1112224
86
+ ],
87
+ "address": "14 king 's parade",
88
+ "area": "south",
89
+ "price": "free",
90
+ "id": "6",
91
+ "name": "byard art",
92
+ "openhours": "it opens from 09:30 . to 05:30p . m . from monday to saturday , and from 11:00 . to 04:00p . m . on sunday",
93
+ "phone": "01223464646",
94
+ "postcode": "cb21sj",
95
+ "pricerange": "free",
96
+ "type": "museum"
97
+ },
98
+ {
99
+ "location": [
100
+ 52.221949,
101
+ 0.094948
102
+ ],
103
+ "address": "cafe jello gallery , 13 magdalene street",
104
+ "area": "west",
105
+ "price": "free",
106
+ "id": "7",
107
+ "name": "cafe jello gallery",
108
+ "openhours": "it opens from 10:30 . to 05:30p . m . thursday to saturday",
109
+ "phone": "01223312112",
110
+ "postcode": "cb30af",
111
+ "pricerange": "free",
112
+ "type": "museum"
113
+ },
114
+ {
115
+ "location": [
116
+ 52.21247,
117
+ 0.15619
118
+ ],
119
+ "address": "the plough , green end , fen ditton ,",
120
+ "area": "east",
121
+ "price": "?",
122
+ "id": "8",
123
+ "name": "camboats",
124
+ "openhours": "?",
125
+ "phone": "01223902112",
126
+ "postcode": "cb58sx",
127
+ "pricerange": "?",
128
+ "type": "boat"
129
+ },
130
+ {
131
+ "location": [
132
+ 52.210766,
133
+ 0.114795
134
+ ],
135
+ "address": "2 - 3 castle street",
136
+ "area": "west",
137
+ "price": "3.50 pounds",
138
+ "id": "9",
139
+ "name": "cambridge and county folk museum",
140
+ "openhours": "it opens from monday to saturday , 10 . to 5p . m . while on sunday it opens from 2p . m . to 5p . m.",
141
+ "phone": "01223355159",
142
+ "postcode": "cb30aq",
143
+ "pricerange": "moderate",
144
+ "type": "museum"
145
+ },
146
+ {
147
+ "location": [
148
+ 52.2034781571435,
149
+ 0.119176917855308
150
+ ],
151
+ "address": "6 saint edward 's passage",
152
+ "area": "centre",
153
+ "price": "?",
154
+ "id": "10",
155
+ "name": "cambridge arts theatre",
156
+ "openhours": "?",
157
+ "phone": "01223503333",
158
+ "postcode": "cb23pj",
159
+ "pricerange": "?",
160
+ "type": "theatre"
161
+ },
162
+ {
163
+ "location": [
164
+ 52.202271,
165
+ 0.14702
166
+ ],
167
+ "address": "5 greens road",
168
+ "area": "east",
169
+ "price": "free",
170
+ "id": "11",
171
+ "name": "cambridge artworks",
172
+ "openhours": "?",
173
+ "phone": "01223902168",
174
+ "postcode": "cb13ef",
175
+ "pricerange": "free",
176
+ "type": "museum"
177
+ },
178
+ {
179
+ "location": [
180
+ 52.198744,
181
+ 0.113364
182
+ ],
183
+ "address": "49 newnham road",
184
+ "area": "west",
185
+ "price": "free",
186
+ "id": "12",
187
+ "name": "cambridge book and print gallery",
188
+ "openhours": "it opens from 10:00 . to 05:00p . m . from tuesday to saturday",
189
+ "phone": "01223694264",
190
+ "postcode": "cb39ey",
191
+ "pricerange": "free",
192
+ "type": "museum"
193
+ },
194
+ {
195
+ "location": [
196
+ 52.206084,
197
+ 0.118268
198
+ ],
199
+ "address": "6 trinity street",
200
+ "area": "centre",
201
+ "price": "free",
202
+ "id": "13",
203
+ "name": "cambridge contemporary art",
204
+ "openhours": "it opens from 11:00 . to 04:00p . m . on sunday , and from 09:00 . to 05:30p . m . from monday to saturday",
205
+ "phone": "01223324222",
206
+ "postcode": "cb21su",
207
+ "pricerange": "free",
208
+ "type": "museum"
209
+ },
210
+ {
211
+ "location": [
212
+ 52.21247,
213
+ 0.15619
214
+ ],
215
+ "address": "the old pumping station , cheddars lane",
216
+ "area": "east",
217
+ "price": "5 pounds",
218
+ "id": "14",
219
+ "name": "cambridge museum of technology",
220
+ "openhours": "it opens on sunday from 02:00p . m . to 05:00p . m.",
221
+ "phone": "01223368650",
222
+ "postcode": "cb58ld",
223
+ "pricerange": "expensive",
224
+ "type": "museum"
225
+ },
226
+ {
227
+ "location": [
228
+ 52.19525,
229
+ 0.126
230
+ ],
231
+ "address": "bateman street",
232
+ "area": "centre",
233
+ "price": "4 pounds",
234
+ "id": "15",
235
+ "name": "cambridge university botanic gardens",
236
+ "openhours": "it opens from 10:00 . to 06:00p . m . from april to september , from 10:00 . to 05:00p . m . in february march and october , and from 10:00 . to 04:00p . m . from november to january",
237
+ "phone": "01223336265",
238
+ "postcode": "cb21jf",
239
+ "pricerange": "moderate",
240
+ "type": "park"
241
+ },
242
+ {
243
+ "location": [
244
+ 52.204788,
245
+ 0.1214
246
+ ],
247
+ "address": "unit su43 , grande arcade , saint andrews street",
248
+ "area": "centre",
249
+ "price": "free",
250
+ "id": "16",
251
+ "name": "castle galleries",
252
+ "openhours": "it opens from 09:00 . to 06:00p . m . every day except wednesday when it opens from 09:00 . to 08:00p . m. , and sunday when it opens from 11:00 . to 05:00p . m.",
253
+ "phone": "01223307402",
254
+ "postcode": "cb23bj",
255
+ "pricerange": "free",
256
+ "type": "museum"
257
+ },
258
+ {
259
+ "location": [
260
+ 52.186045,
261
+ 0.157515
262
+ ],
263
+ "address": "cherry hinton road",
264
+ "area": "east",
265
+ "price": "?",
266
+ "id": "17",
267
+ "name": "cherry hinton hall and grounds",
268
+ "openhours": "?",
269
+ "phone": "01223446104",
270
+ "postcode": "cb18dw",
271
+ "pricerange": "?",
272
+ "type": "entertainment"
273
+ },
274
+ {
275
+ "location": [
276
+ 52.186045,
277
+ 0.157515
278
+ ],
279
+ "address": "cherry hinton hall , cherry hinton road",
280
+ "area": "east",
281
+ "price": "free",
282
+ "id": "18",
283
+ "name": "cherry hinton water play",
284
+ "openhours": "it opens from may to september",
285
+ "phone": "01223446100",
286
+ "postcode": "cb18dw",
287
+ "pricerange": "free",
288
+ "type": "park"
289
+ },
290
+ {
291
+ "location": [
292
+ 52.20635,
293
+ 0.121727777777778
294
+ ],
295
+ "address": "saint andrew 's street",
296
+ "area": "centre",
297
+ "price": "free",
298
+ "id": "19",
299
+ "name": "christ 's college",
300
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
301
+ "phone": "01223334900",
302
+ "postcode": "cb23bu",
303
+ "pricerange": "free",
304
+ "type": "college"
305
+ },
306
+ {
307
+ "location": [
308
+ 52.2128888888889,
309
+ 0.103127777777778
310
+ ],
311
+ "address": "storey 's way",
312
+ "area": "west",
313
+ "price": "free",
314
+ "id": "20",
315
+ "name": "churchill college",
316
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
317
+ "phone": "01223336233",
318
+ "postcode": "cb30ds",
319
+ "pricerange": "free",
320
+ "type": "college"
321
+ },
322
+ {
323
+ "location": [
324
+ 52.1901222222222,
325
+ 0.136991666666667
326
+ ],
327
+ "address": "cambridge leisure park , clifton way",
328
+ "area": "south",
329
+ "price": "?",
330
+ "id": "21",
331
+ "name": "cineworld cinema",
332
+ "openhours": "?",
333
+ "phone": "00872208000",
334
+ "postcode": "cb17dy",
335
+ "pricerange": "?",
336
+ "type": "cinema"
337
+ },
338
+ {
339
+ "location": [
340
+ 52.2048527777778,
341
+ 0.115422222222222
342
+ ],
343
+ "address": "trinity lane",
344
+ "area": "west",
345
+ "price": "2.50 pounds",
346
+ "id": "22",
347
+ "name": "clare college",
348
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
349
+ "phone": "01223333200",
350
+ "postcode": "cb21tl",
351
+ "pricerange": "moderate",
352
+ "type": "college"
353
+ },
354
+ {
355
+ "location": [
356
+ 52.2040527777778,
357
+ 0.104480555555556
358
+ ],
359
+ "address": "herschel road",
360
+ "area": "west",
361
+ "price": "free",
362
+ "id": "23",
363
+ "name": "clare hall",
364
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
365
+ "phone": "01223332360",
366
+ "postcode": "cb39al",
367
+ "pricerange": "free",
368
+ "type": "college"
369
+ },
370
+ {
371
+ "location": [
372
+ 52.195173,
373
+ 0.131644
374
+ ],
375
+ "address": "1 station road",
376
+ "area": "centre",
377
+ "price": "5 pounds",
378
+ "id": "24",
379
+ "name": "club salsa",
380
+ "openhours": "it opens at the university social club from 09:30p . m . to 11:30p . m . on wednesday , and from 10:00p . m . to 01:00 . on friday",
381
+ "phone": "07782218745",
382
+ "postcode": "cb12jb",
383
+ "pricerange": "moderate",
384
+ "type": "nightclub"
385
+ },
386
+ {
387
+ "location": [
388
+ 52.2028416666667,
389
+ 0.117844444444444
390
+ ],
391
+ "address": "king 's parade",
392
+ "area": "centre",
393
+ "price": "2 pounds",
394
+ "id": "25",
395
+ "name": "corpus christi",
396
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
397
+ "phone": "01223338000",
398
+ "postcode": "cb21rh",
399
+ "pricerange": "cheap",
400
+ "type": "college"
401
+ },
402
+ {
403
+ "location": [
404
+ 52.2013777777778,
405
+ 0.125194444444444
406
+ ],
407
+ "address": "regent street",
408
+ "area": "centre",
409
+ "price": "free",
410
+ "id": "26",
411
+ "name": "downing college",
412
+ "openhours": "it opens daily from 9 . to 5p . m . except during easter term",
413
+ "phone": "01223334860",
414
+ "postcode": "cb21dq",
415
+ "pricerange": "free",
416
+ "type": "college"
417
+ },
418
+ {
419
+ "location": [
420
+ 52.203572,
421
+ 0.123778
422
+ ],
423
+ "address": "saint andrew 's street",
424
+ "area": "centre",
425
+ "price": "free",
426
+ "id": "27",
427
+ "name": "emmanuel college",
428
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
429
+ "phone": "01223334200",
430
+ "postcode": "cb23ap",
431
+ "pricerange": "free",
432
+ "type": "college"
433
+ },
434
+ {
435
+ "location": [
436
+ 52.21401,
437
+ 0.14789
438
+ ],
439
+ "address": "8 mercers row , mercers row industrial estate",
440
+ "area": "east",
441
+ "price": "?",
442
+ "id": "28",
443
+ "name": "funky fun house",
444
+ "openhours": "?",
445
+ "phone": "01223304705",
446
+ "postcode": "cb58hy",
447
+ "pricerange": "?",
448
+ "type": "entertainment"
449
+ },
450
+ {
451
+ "location": [
452
+ 52.183498,
453
+ 0.22186
454
+ ],
455
+ "address": "fulbourn",
456
+ "area": "east",
457
+ "price": "free",
458
+ "id": "29",
459
+ "name": "gallery at 12 a high street",
460
+ "openhours": "?",
461
+ "phone": "01223295264",
462
+ "postcode": "cb15dh",
463
+ "pricerange": "free",
464
+ "type": "museum"
465
+ },
466
+ {
467
+ "location": [
468
+ 52.205861,
469
+ 0.117972
470
+ ],
471
+ "address": "trinity street",
472
+ "area": "centre",
473
+ "price": "free",
474
+ "id": "30",
475
+ "name": "gonville and caius college",
476
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
477
+ "phone": "01223332400",
478
+ "postcode": "cb21ta",
479
+ "pricerange": "free",
480
+ "type": "college"
481
+ },
482
+ {
483
+ "location": [
484
+ 52.2049472222222,
485
+ 0.118222222222222
486
+ ],
487
+ "address": "market square",
488
+ "area": "centre",
489
+ "price": "2 pounds",
490
+ "id": "31",
491
+ "name": "great saint mary 's church",
492
+ "openhours": "it opens normally daily from 9 . to 5p . m.",
493
+ "phone": "01223350914",
494
+ "postcode": "cb23pq",
495
+ "pricerange": "cheap",
496
+ "type": "architecture"
497
+ },
498
+ {
499
+ "location": [
500
+ 52.2057694444444,
501
+ 0.120033333333333
502
+ ],
503
+ "address": "market street",
504
+ "area": "centre",
505
+ "price": "free",
506
+ "id": "32",
507
+ "name": "holy trinity church",
508
+ "openhours": "it opens normally daily from 9 . to 5p . m.",
509
+ "phone": "01223355397",
510
+ "postcode": "cb23nz",
511
+ "pricerange": "free",
512
+ "type": "architecture"
513
+ },
514
+ {
515
+ "location": [
516
+ 52.200692,
517
+ 0.133253
518
+ ],
519
+ "address": "wollaston road",
520
+ "area": "centre",
521
+ "price": "free",
522
+ "id": "33",
523
+ "name": "hughes hall",
524
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
525
+ "phone": "01223334898",
526
+ "postcode": "cb12ew",
527
+ "pricerange": "free",
528
+ "type": "college"
529
+ },
530
+ {
531
+ "location": [
532
+ 52.209353,
533
+ 0.125342
534
+ ],
535
+ "address": "jesus lane",
536
+ "area": "centre",
537
+ "price": "free",
538
+ "id": "34",
539
+ "name": "jesus college",
540
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
541
+ "phone": "01223339485",
542
+ "postcode": "cb58bl",
543
+ "pricerange": "free",
544
+ "type": "college"
545
+ },
546
+ {
547
+ "location": [
548
+ 52.220328,
549
+ 0.115149
550
+ ],
551
+ "address": "between victoria road and the river",
552
+ "area": "north",
553
+ "price": "?",
554
+ "id": "35",
555
+ "name": "jesus green outdoor pool",
556
+ "openhours": "?",
557
+ "phone": "01223302579",
558
+ "postcode": "cb43px",
559
+ "pricerange": "?",
560
+ "type": "swimming pool"
561
+ },
562
+ {
563
+ "location": [
564
+ 52.204192,
565
+ 0.119187
566
+ ],
567
+ "address": "1 wheeler street",
568
+ "area": "centre",
569
+ "price": "5 pounds",
570
+ "id": "36",
571
+ "name": "kambar",
572
+ "openhours": "it opens from 10:00p . m . to 04:00 . depending on whether there is an event on or not",
573
+ "phone": "01223842725",
574
+ "postcode": "cb23qb",
575
+ "pricerange": "moderate",
576
+ "type": "nightclub"
577
+ },
578
+ {
579
+ "location": [
580
+ 52.212405,
581
+ 0.113075
582
+ ],
583
+ "address": "castle street",
584
+ "area": "west",
585
+ "price": "free",
586
+ "id": "37",
587
+ "name": "kettle 's yard",
588
+ "openhours": "it opens from 11:30 . to 05:00p . m . tuesday to sunday",
589
+ "phone": "01223748100",
590
+ "postcode": "cb30aq",
591
+ "pricerange": "free",
592
+ "type": "museum"
593
+ },
594
+ {
595
+ "location": [
596
+ 52.204289,
597
+ 0.117269
598
+ ],
599
+ "address": "king 's parade",
600
+ "area": "centre",
601
+ "price": "free",
602
+ "id": "38",
603
+ "name": "king 's college",
604
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
605
+ "phone": "01223331100",
606
+ "postcode": "cb21st",
607
+ "pricerange": "free",
608
+ "type": "college"
609
+ },
610
+ {
611
+ "location": [
612
+ 52.23171,
613
+ 0.122415
614
+ ],
615
+ "address": "jedburgh court , kings hedges",
616
+ "area": "north",
617
+ "price": "?",
618
+ "id": "39",
619
+ "name": "kings hedges learner pool",
620
+ "openhours": "?",
621
+ "phone": "01223353248",
622
+ "postcode": "cb42xh",
623
+ "pricerange": "?",
624
+ "type": "swimming pool"
625
+ },
626
+ {
627
+ "location": [
628
+ 52.2005111111111,
629
+ 0.119883333333333
630
+ ],
631
+ "address": "little saint mary 's lane",
632
+ "area": "centre",
633
+ "price": "free",
634
+ "id": "40",
635
+ "name": "little saint mary 's church",
636
+ "openhours": "it opens normally daily from 9 . to 5p . m.",
637
+ "phone": "01223366202",
638
+ "postcode": "cb21qy",
639
+ "pricerange": "free",
640
+ "type": "architecture"
641
+ },
642
+ {
643
+ "location": [
644
+ 52.222053,
645
+ 0.095086
646
+ ],
647
+ "address": "23 high street , fen ditton",
648
+ "area": "west",
649
+ "price": "free",
650
+ "id": "41",
651
+ "name": "lynne strover gallery",
652
+ "openhours": "it opens from 10:00 . to 05:00p . m . thursday to saturday",
653
+ "phone": "01223295264",
654
+ "postcode": "cb30aq",
655
+ "pricerange": "free",
656
+ "type": "museum"
657
+ },
658
+ {
659
+ "location": [
660
+ 52.210403,
661
+ 0.115803
662
+ ],
663
+ "address": "magdalene street",
664
+ "area": "west",
665
+ "price": "free",
666
+ "id": "42",
667
+ "name": "magdalene college",
668
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
669
+ "phone": "01223332138",
670
+ "postcode": "cb30ag",
671
+ "pricerange": "free",
672
+ "type": "college"
673
+ },
674
+ {
675
+ "location": [
676
+ 52.247361,
677
+ 0.156627
678
+ ],
679
+ "address": "milton country park , milton",
680
+ "area": "north",
681
+ "price": "free",
682
+ "id": "43",
683
+ "name": "milton country park",
684
+ "openhours": "always",
685
+ "phone": "01223420060",
686
+ "postcode": "cb46az",
687
+ "pricerange": "free",
688
+ "type": "park"
689
+ },
690
+ {
691
+ "location": [
692
+ 52.20571,
693
+ 0.131061
694
+ ],
695
+ "address": "anglia ruskin enterprise , east road",
696
+ "area": "centre",
697
+ "price": "?",
698
+ "id": "44",
699
+ "name": "mumford theatre",
700
+ "openhours": "?",
701
+ "phone": "08451962320",
702
+ "postcode": "cb11pt",
703
+ "pricerange": "?",
704
+ "type": "theatre"
705
+ },
706
+ {
707
+ "location": [
708
+ 52.205261,
709
+ 0.11664
710
+ ],
711
+ "address": "university of cambridge , downing street",
712
+ "area": "centre",
713
+ "price": "free",
714
+ "id": "45",
715
+ "name": "museum of archaelogy and anthropology",
716
+ "openhours": "it opens from 10:30 . to 04:30p . m . tuesday to saturday",
717
+ "phone": "01223333516",
718
+ "postcode": "cb23dz",
719
+ "pricerange": "free",
720
+ "type": "museum"
721
+ },
722
+ {
723
+ "location": [
724
+ 52.20987,
725
+ 0.111565
726
+ ],
727
+ "address": "sidgwick avenue",
728
+ "area": "west",
729
+ "price": "free",
730
+ "id": "46",
731
+ "name": "museum of classical archaeology",
732
+ "openhours": "it opens from 10:00 . to 05:00p . m . monday to friday",
733
+ "phone": "01223335153",
734
+ "postcode": "cb39da",
735
+ "pricerange": "free",
736
+ "type": "museum"
737
+ },
738
+ {
739
+ "location": [
740
+ 52.1896573155949,
741
+ 0.137541476208324
742
+ ],
743
+ "address": "unit g6 , cambridge leisure park , clifton road",
744
+ "area": "south",
745
+ "price": "?",
746
+ "id": "47",
747
+ "name": "nusha",
748
+ "openhours": "it opens from 05:00p . m . to 01:30 . on tuesday , friday and saturday , and from 05:00p . m . to midnight on monday , wednesday , thursday and sunday .",
749
+ "phone": "01223902158",
750
+ "postcode": "cb17dy",
751
+ "pricerange": "?",
752
+ "type": "entertainment"
753
+ },
754
+ {
755
+ "location": [
756
+ 52.2052638888889,
757
+ 0.116641666666667
758
+ ],
759
+ "address": "trinity lane",
760
+ "area": "centre",
761
+ "price": "free",
762
+ "id": "48",
763
+ "name": "old schools",
764
+ "openhours": "it opens normally daily from 08:00 . to 05:45p . m.",
765
+ "phone": "01223332320",
766
+ "postcode": "cb21tt",
767
+ "pricerange": "free",
768
+ "type": "architecture"
769
+ },
770
+ {
771
+ "location": [
772
+ 52.201275,
773
+ 0.129935
774
+ ],
775
+ "address": "gonville place",
776
+ "area": "centre",
777
+ "price": "?",
778
+ "id": "49",
779
+ "name": "parkside pools",
780
+ "openhours": "?",
781
+ "phone": "01223446100",
782
+ "postcode": "cb11ly",
783
+ "pricerange": "?",
784
+ "type": "swimming pool"
785
+ },
786
+ {
787
+ "location": [
788
+ 52.202611,
789
+ 0.120658
790
+ ],
791
+ "address": "trumpington street",
792
+ "area": "centre",
793
+ "price": "free",
794
+ "id": "50",
795
+ "name": "pembroke college",
796
+ "openhours": "any time except may and june",
797
+ "phone": "01223338100",
798
+ "postcode": "cb21rf",
799
+ "pricerange": "free",
800
+ "type": "college"
801
+ },
802
+ {
803
+ "location": [
804
+ 52.228375,
805
+ 0.0837527777777778
806
+ ],
807
+ "address": "girton college , huntingdon road",
808
+ "area": "west",
809
+ "price": "free",
810
+ "id": "51",
811
+ "name": "people 's portraits exhibition at girton college",
812
+ "openhours": "it opens from 02:00p . m . to 04:00p . m . daily from february to july",
813
+ "phone": "01223338901",
814
+ "postcode": "cb3ojg",
815
+ "pricerange": "free",
816
+ "type": "museum"
817
+ },
818
+ {
819
+ "location": [
820
+ 52.2034781571435,
821
+ 0.119176917855308
822
+ ],
823
+ "address": "10 king s parade",
824
+ "area": "centre",
825
+ "price": "free",
826
+ "id": "52",
827
+ "name": "primavera",
828
+ "openhours": "it opens from 11:00 . to 04:30p . m . on sunday , from 10:00 . to 05:00p . m . from monday to friday , and from 10:00 . to 05:30p . m . on saturday",
829
+ "phone": "01223357708",
830
+ "postcode": "cb21sj",
831
+ "pricerange": "free",
832
+ "type": "museum"
833
+ },
834
+ {
835
+ "location": [
836
+ 52.2018,
837
+ 0.114239
838
+ ],
839
+ "address": "silver street",
840
+ "area": "west",
841
+ "price": "2.50 pounds",
842
+ "id": "53",
843
+ "name": "queens ' college",
844
+ "openhours": "monday to sunday 10 . to 04:30p . m.",
845
+ "phone": "01223335511",
846
+ "postcode": "cb39et",
847
+ "pricerange": "moderate",
848
+ "type": "college"
849
+ },
850
+ {
851
+ "location": [
852
+ 52.206823,
853
+ 0.131361
854
+ ],
855
+ "address": "39 fitzroy street",
856
+ "area": "centre",
857
+ "price": "free",
858
+ "id": "54",
859
+ "name": "regency gallery",
860
+ "openhours": "?",
861
+ "phone": "01223365454",
862
+ "postcode": "cb11er",
863
+ "pricerange": "free",
864
+ "type": "museum"
865
+ },
866
+ {
867
+ "location": [
868
+ 52.229515,
869
+ 0.111645
870
+ ],
871
+ "address": "cambridge passenger cruisers , jubilee house",
872
+ "area": "north",
873
+ "price": "?",
874
+ "id": "55",
875
+ "name": "riverboat georgina",
876
+ "openhours": "?",
877
+ "phone": "01223902091",
878
+ "postcode": "cb43ax",
879
+ "pricerange": "?",
880
+ "type": "boat"
881
+ },
882
+ {
883
+ "location": [
884
+ 52.20571,
885
+ 0.131061
886
+ ],
887
+ "address": "anglia ruskin university , east road",
888
+ "area": "centre",
889
+ "price": "free",
890
+ "id": "56",
891
+ "name": "ruskin gallery",
892
+ "openhours": "?",
893
+ "phone": "01245493131",
894
+ "postcode": "cb11pt",
895
+ "pricerange": "free",
896
+ "type": "museum"
897
+ },
898
+ {
899
+ "location": [
900
+ 52.20858,
901
+ 0.148702
902
+ ],
903
+ "address": "the belfast yard , coldham 's road",
904
+ "area": "east",
905
+ "price": "free",
906
+ "id": "57",
907
+ "name": "saint barnabas press gallery",
908
+ "openhours": "?",
909
+ "phone": "01223902116",
910
+ "postcode": "cb13ew",
911
+ "pricerange": "free",
912
+ "type": "museum"
913
+ },
914
+ {
915
+ "location": [
916
+ 52.202839,
917
+ 0.116394
918
+ ],
919
+ "address": "king 's parade",
920
+ "area": "centre",
921
+ "price": "free",
922
+ "id": "58",
923
+ "name": "saint catharine 's college",
924
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
925
+ "phone": "01223338300",
926
+ "postcode": "cb21rl",
927
+ "pricerange": "free",
928
+ "type": "college"
929
+ },
930
+ {
931
+ "location": [
932
+ 52.208803,
933
+ 0.117411
934
+ ],
935
+ "address": "saint john 's street",
936
+ "area": "centre",
937
+ "price": "2.50 pounds",
938
+ "id": "59",
939
+ "name": "saint john 's college",
940
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
941
+ "phone": "01223338600",
942
+ "postcode": "cb21tp",
943
+ "pricerange": "moderate",
944
+ "type": "college"
945
+ },
946
+ {
947
+ "location": [
948
+ 52.19806,
949
+ 0.123185
950
+ ],
951
+ "address": "lensfield road",
952
+ "area": "centre",
953
+ "price": "free",
954
+ "id": "60",
955
+ "name": "scott polar museum",
956
+ "openhours": "it opens from 10:00 . to 04:00p . m . from tuesday to saturday",
957
+ "phone": "01223336540",
958
+ "postcode": "cb21er",
959
+ "pricerange": "free",
960
+ "type": "museum"
961
+ },
962
+ {
963
+ "location": [
964
+ 52.200975,
965
+ 0.116298
966
+ ],
967
+ "address": "granta place , mill lane",
968
+ "area": "centre",
969
+ "price": "?",
970
+ "id": "61",
971
+ "name": "scudamores punting co",
972
+ "openhours": "?",
973
+ "phone": "01223359750",
974
+ "postcode": "cb21rs",
975
+ "pricerange": "?",
976
+ "type": "boat"
977
+ },
978
+ {
979
+ "location": [
980
+ 52.17674,
981
+ 0.14559
982
+ ],
983
+ "address": "fen causeway , newnham road ,",
984
+ "area": "south",
985
+ "price": "free",
986
+ "id": "62",
987
+ "name": "sheep 's green and lammas land park fen causeway",
988
+ "openhours": "it is open from may to sept",
989
+ "phone": "01223302580",
990
+ "postcode": "cb22ad",
991
+ "pricerange": "free",
992
+ "type": "park"
993
+ },
994
+ {
995
+ "location": [
996
+ 52.207464,
997
+ 0.121342
998
+ ],
999
+ "address": "sidney street",
1000
+ "area": "centre",
1001
+ "price": "free",
1002
+ "id": "63",
1003
+ "name": "sidney sussex college",
1004
+ "openhours": "it opens daily from 9 . to 5p . m . except during easter term",
1005
+ "phone": "01223338800",
1006
+ "postcode": "cb23hu",
1007
+ "pricerange": "free",
1008
+ "type": "college"
1009
+ },
1010
+ {
1011
+ "location": [
1012
+ 52.203878,
1013
+ 0.12044
1014
+ ],
1015
+ "address": "1 - 6 corn exchange street",
1016
+ "area": "centre",
1017
+ "price": "4 pounds",
1018
+ "id": "64",
1019
+ "name": "soul tree nightclub",
1020
+ "openhours": "it opens from 09:30p . m . to 02:00 . from sunday to tuesday , from 09:00p . m . to 02:00 . on wednesday , and from 09:00p . m . to 02:30 . from thursday to saturday",
1021
+ "phone": "01223477900",
1022
+ "postcode": "cb23qf",
1023
+ "pricerange": "cheap",
1024
+ "type": "nightclub"
1025
+ },
1026
+ {
1027
+ "location": [
1028
+ 52.18568,
1029
+ 0.144638
1030
+ ],
1031
+ "address": "cambridge leisure park , clifton way",
1032
+ "area": "south",
1033
+ "price": "?",
1034
+ "id": "65",
1035
+ "name": "tenpin",
1036
+ "openhours": "?",
1037
+ "phone": "08715501010",
1038
+ "postcode": "cb17dy",
1039
+ "pricerange": "?",
1040
+ "type": "entertainment"
1041
+ },
1042
+ {
1043
+ "location": [
1044
+ 52.20431,
1045
+ 0.119215
1046
+ ],
1047
+ "address": "wheeler street",
1048
+ "area": "centre",
1049
+ "price": "?",
1050
+ "id": "66",
1051
+ "name": "the cambridge corn exchange",
1052
+ "openhours": "?",
1053
+ "phone": "01223357851",
1054
+ "postcode": "cb23qe",
1055
+ "pricerange": "?",
1056
+ "type": "theatre"
1057
+ },
1058
+ {
1059
+ "location": [
1060
+ 52.211939,
1061
+ 0.118661
1062
+ ],
1063
+ "address": "251a chesterton road",
1064
+ "area": "centre",
1065
+ "price": "?",
1066
+ "id": "67",
1067
+ "name": "the cambridge punter",
1068
+ "openhours": "?",
1069
+ "phone": "07807718591",
1070
+ "postcode": "cb41as",
1071
+ "pricerange": "?",
1072
+ "type": "boat"
1073
+ },
1074
+ {
1075
+ "location": [
1076
+ 52.186715,
1077
+ 0.17882
1078
+ ],
1079
+ "address": "colville road , cherry hinton",
1080
+ "area": "east",
1081
+ "price": "?",
1082
+ "id": "68",
1083
+ "name": "the cherry hinton village centre",
1084
+ "openhours": "it opens from 09:00 . to 08:00p . m . on sunday , and from 09:00 . to 10:00p . m . from monday to saturday",
1085
+ "phone": "01223576412",
1086
+ "postcode": "cb19ej",
1087
+ "pricerange": "?",
1088
+ "type": "multiple sports"
1089
+ },
1090
+ {
1091
+ "location": [
1092
+ 52.206144,
1093
+ 0.120283
1094
+ ],
1095
+ "address": "8 market passage",
1096
+ "area": "centre",
1097
+ "price": "5 pounds",
1098
+ "id": "69",
1099
+ "name": "the fez club",
1100
+ "openhours": "it opens on monday from 9p . m . to 2 . it is closed on tuesday . from wednesday to saturday it opens from 9p . m . to 2 . and it is closed on sunday",
1101
+ "phone": "01223519224",
1102
+ "postcode": "cb23hx",
1103
+ "pricerange": "moderate",
1104
+ "type": "nightclub"
1105
+ },
1106
+ {
1107
+ "location": [
1108
+ 52.19855,
1109
+ 0.121785
1110
+ ],
1111
+ "address": "trumpington street",
1112
+ "area": "centre",
1113
+ "price": "free",
1114
+ "id": "70",
1115
+ "name": "the fitzwilliam museum",
1116
+ "openhours": "from tuesday to saturday it opens from 10 . to 5p . m . while on sunday , monday and bank holidays it opens from 12 to 5p . m.",
1117
+ "phone": "01223332900",
1118
+ "postcode": "cb21rb",
1119
+ "pricerange": "free",
1120
+ "type": "museum"
1121
+ },
1122
+ {
1123
+ "location": [
1124
+ 52.190325,
1125
+ 0.135755
1126
+ ],
1127
+ "address": "clifton way",
1128
+ "area": "south",
1129
+ "price": "?",
1130
+ "id": "71",
1131
+ "name": "the junction",
1132
+ "openhours": "?",
1133
+ "phone": "01223511511",
1134
+ "postcode": "cb17gx",
1135
+ "pricerange": "?",
1136
+ "type": "theatre"
1137
+ },
1138
+ {
1139
+ "location": [
1140
+ 52.204746,
1141
+ 0.136515
1142
+ ],
1143
+ "address": "2 norfolk street",
1144
+ "area": "centre",
1145
+ "price": "?",
1146
+ "id": "72",
1147
+ "name": "the man on the moon",
1148
+ "openhours": "?",
1149
+ "phone": "01223474144",
1150
+ "postcode": "cb12lf",
1151
+ "pricerange": "?",
1152
+ "type": "concert hall"
1153
+ },
1154
+ {
1155
+ "location": [
1156
+ 52.1725982,
1157
+ 0.1112224
1158
+ ],
1159
+ "address": "22 sidney street",
1160
+ "area": "south",
1161
+ "price": "?",
1162
+ "id": "73",
1163
+ "name": "the place",
1164
+ "openhours": "it opens from 10:30p . m . to 03:30 . on tuesday , from 10:00p . m . to 02:30 . on thursday , from 10:00p . m . to 04:00 . on friday and saturday , and from 10:00p . m . to 02:00 . on sunday",
1165
+ "phone": "01223324600",
1166
+ "postcode": "cb23hg",
1167
+ "pricerange": "moderate",
1168
+ "type": "nightclub"
1169
+ },
1170
+ {
1171
+ "location": [
1172
+ 52.207081,
1173
+ 0.117622
1174
+ ],
1175
+ "address": "trinity street",
1176
+ "area": "centre",
1177
+ "price": "1 pound",
1178
+ "id": "74",
1179
+ "name": "trinity college",
1180
+ "openhours": "it opens normally daily from 9 . to 5p . m . except easter term",
1181
+ "phone": "01223338400",
1182
+ "postcode": "cb21tq",
1183
+ "pricerange": "cheap",
1184
+ "type": "college"
1185
+ },
1186
+ {
1187
+ "location": [
1188
+ 52.20571,
1189
+ 0.131061
1190
+ ],
1191
+ "address": "the grafton centre , east road",
1192
+ "area": "centre",
1193
+ "price": "?",
1194
+ "id": "75",
1195
+ "name": "vue cinema",
1196
+ "openhours": "?",
1197
+ "phone": "08712240240",
1198
+ "postcode": "cb11ps",
1199
+ "pricerange": "?",
1200
+ "type": "cinema"
1201
+ },
1202
+ {
1203
+ "location": [
1204
+ 52.119551,
1205
+ 0.181018
1206
+ ],
1207
+ "address": "wandlebury ring , gog magog hills , babraham",
1208
+ "area": "south",
1209
+ "price": "free",
1210
+ "id": "76",
1211
+ "name": "wandlebury country park",
1212
+ "openhours": "always",
1213
+ "phone": "01223243830",
1214
+ "postcode": "cb223ae",
1215
+ "pricerange": "free",
1216
+ "type": "park"
1217
+ },
1218
+ {
1219
+ "location": [
1220
+ 52.254,
1221
+ 0.016478
1222
+ ],
1223
+ "address": "unit 8 , viking way , bar hill",
1224
+ "area": "west",
1225
+ "price": "?",
1226
+ "id": "77",
1227
+ "name": "whale of a time",
1228
+ "openhours": "it opens from 09:30 . to 06:00p . m . daily",
1229
+ "phone": "01954781018",
1230
+ "postcode": "cb238el",
1231
+ "pricerange": "?",
1232
+ "type": "entertainment"
1233
+ },
1234
+ {
1235
+ "location": [
1236
+ 52.203117,
1237
+ 0.118928
1238
+ ],
1239
+ "address": "free school lane",
1240
+ "area": "centre",
1241
+ "price": "free",
1242
+ "id": "78",
1243
+ "name": "whipple museum of the history of science",
1244
+ "openhours": "it opens from 12:30p . m . to 04:30p . m . from monday to friday",
1245
+ "phone": "01223330906",
1246
+ "postcode": "cb23rh",
1247
+ "pricerange": "free",
1248
+ "type": "museum"
1249
+ },
1250
+ {
1251
+ "location": [
1252
+ 52.2002,
1253
+ 0.1385
1254
+ ],
1255
+ "address": "gwydir street , no . 5 dale 's brewery",
1256
+ "area": "centre",
1257
+ "price": "free",
1258
+ "id": "79",
1259
+ "name": "williams art and antiques",
1260
+ "openhours": "it opens from 11:00 . to 06:00p . m . from tuesday to friday , from 11:00 . to 05:00p . m . on saturday and sunday , and it is closed on monday",
1261
+ "phone": "01223311687",
1262
+ "postcode": "cb12lj",
1263
+ "pricerange": "free",
1264
+ "type": "museum"
1265
+ }
1266
+ ]
data/raw/UBAR/db/bus-dbase.db ADDED
Binary file (242 kB). View file
 
data/raw/UBAR/db/bus_db.json ADDED
The diff for this file is too large to render. See raw diff
 
data/raw/UBAR/db/hospital-dbase.db ADDED
File without changes
data/raw/UBAR/db/hospital_db.json ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "department": "neurosciences critical care unit",
4
+ "id": 0,
5
+ "phone": "01223216297"
6
+ },
7
+ {
8
+ "department": "trauma high dependency unit",
9
+ "id": 1,
10
+ "phone": "01223216305"
11
+ },
12
+ {
13
+ "department": "neurology neurosurgery",
14
+ "id": 2,
15
+ "phone": "01223217216"
16
+ },
17
+ {
18
+ "department": "oncology neurosurgery",
19
+ "id": 3,
20
+ "phone": "01223216314"
21
+ },
22
+ {
23
+ "department": "children's oncology and haematology",
24
+ "id": 4,
25
+ "phone": "01223217231"
26
+ },
27
+ {
28
+ "department": "children's surgical and medicine",
29
+ "id": 5,
30
+ "phone": "01223217450"
31
+ },
32
+ {
33
+ "department": "acute medicine for the elderly",
34
+ "id": 6,
35
+ "phone": "01223217261"
36
+ },
37
+ {
38
+ "department": "general medicine and nephrology",
39
+ "id": 7,
40
+ "phone": "01223217195"
41
+ },
42
+ {
43
+ "department": "medicine for the elderly",
44
+ "id": 8,
45
+ "phone": "01223216988"
46
+ },
47
+ {
48
+ "department": "hepatobillary and gastrointestinal surgery regional referral centre",
49
+ "id": 9,
50
+ "phone": "01223217300"
51
+ },
52
+ {
53
+ "department": "trauma and orthopaedics",
54
+ "id": 10,
55
+ "phone": "01223217279"
56
+ },
57
+ {
58
+ "department": "teenage cancer trust unit",
59
+ "id": 11,
60
+ "phone": "01223274222"
61
+ },
62
+ {
63
+ "department": "haematology and haematological oncology",
64
+ "id": 12,
65
+ "phone": "01223217312"
66
+ },
67
+ {
68
+ "department": "children's surgical and medicine",
69
+ "id": 13,
70
+ "phone": "01223217250"
71
+ },
72
+ {
73
+ "department": "intermediate dependancy area",
74
+ "id": 14,
75
+ "phone": "01223348144"
76
+ },
77
+ {
78
+ "department": "hepatology",
79
+ "id": 15,
80
+ "phone": "01223217712"
81
+ },
82
+ {
83
+ "department": "haematology",
84
+ "id": 16,
85
+ "phone": "01223274679"
86
+ },
87
+ {
88
+ "department": "neurology",
89
+ "id": 17,
90
+ "phone": "01223274680"
91
+ },
92
+ {
93
+ "department": "surgery",
94
+ "id": 18,
95
+ "phone": "01223217303"
96
+ },
97
+ {
98
+ "department": "trauma and orthopaedics",
99
+ "id": 19,
100
+ "phone": "01223217282"
101
+ },
102
+ {
103
+ "department": "oncology",
104
+ "id": 20,
105
+ "phone": "01223217708"
106
+ },
107
+ {
108
+ "department": "infectious diseases",
109
+ "id": 21,
110
+ "phone": "01223217314"
111
+ },
112
+ {
113
+ "department": "haematology day unit",
114
+ "id": 22,
115
+ "phone": "01223348169"
116
+ },
117
+ {
118
+ "department": "clinical decisions unit",
119
+ "id": 23,
120
+ "phone": "01223596203"
121
+ },
122
+ {
123
+ "department": "acute medical assessment unit",
124
+ "id": 24,
125
+ "phone": "01223348314"
126
+ },
127
+ {
128
+ "department": "medical short stay unit",
129
+ "id": 25,
130
+ "phone": "01223348336"
131
+ },
132
+ {
133
+ "department": "inpatient occupational therapy",
134
+ "id": 26,
135
+ "phone": "01223216881"
136
+ },
137
+ {
138
+ "department": "paediatric day unit",
139
+ "id": 27,
140
+ "phone": "01223217567"
141
+ },
142
+ {
143
+ "department": "paediatric clinic",
144
+ "id": 28,
145
+ "phone": "01223348313"
146
+ },
147
+ {
148
+ "department": "medicine for the elderly",
149
+ "id": 29,
150
+ "phone": "01223274744"
151
+ },
152
+ {
153
+ "department": "transplant high dependency unit",
154
+ "id": 30,
155
+ "phone": "01223216811"
156
+ },
157
+ {
158
+ "department": "diabetes and endocrinology",
159
+ "id": 31,
160
+ "phone": "01223217323"
161
+ },
162
+ {
163
+ "department": "infusion services",
164
+ "id": 32,
165
+ "phone": "01223586967"
166
+ },
167
+ {
168
+ "department": "medicine for the elderly",
169
+ "id": 33,
170
+ "phone": "01223217484"
171
+ },
172
+ {
173
+ "department": "medicine for the elderly",
174
+ "id": 34,
175
+ "phone": "01223217498"
176
+ },
177
+ {
178
+ "department": "transplant unit",
179
+ "id": 35,
180
+ "phone": "01223217711"
181
+ },
182
+ {
183
+ "department": "medicine for the elderly",
184
+ "id": 36,
185
+ "phone": "01223217428"
186
+ },
187
+ {
188
+ "department": "theatre admissions unit",
189
+ "id": 37,
190
+ "phone": "01223256583"
191
+ },
192
+ {
193
+ "department": "cardiology",
194
+ "id": 38,
195
+ "phone": "01223256233"
196
+ },
197
+ {
198
+ "department": "major trauma unit",
199
+ "id": 39,
200
+ "phone": "01223349881"
201
+ },
202
+ {
203
+ "department": "cardiology and coronary care unit",
204
+ "id": 40,
205
+ "phone": "01223256459"
206
+ },
207
+ {
208
+ "department": "colorectal surgery",
209
+ "id": 41,
210
+ "phone": "01223348545"
211
+ },
212
+ {
213
+ "department": "plastic and vascular surgery plastics",
214
+ "id": 42,
215
+ "phone": "01223274280"
216
+ },
217
+ {
218
+ "department": "gastroenterology",
219
+ "id": 43,
220
+ "phone": "01223274284"
221
+ },
222
+ {
223
+ "department": "oral and maxillofacial surgery and ent",
224
+ "id": 44,
225
+ "phone": "01223348527"
226
+ },
227
+ {
228
+ "department": "urology",
229
+ "id": 45,
230
+ "phone": "01223256650"
231
+ },
232
+ {
233
+ "department": "respiratory medicine",
234
+ "id": 46,
235
+ "phone": "01223256645"
236
+ },
237
+ {
238
+ "department": "lewin stroke and rehabilitation unit",
239
+ "id": 47,
240
+ "phone": "01223274750"
241
+ },
242
+ {
243
+ "department": "neurosciences",
244
+ "id": 48,
245
+ "phone": "01223216348"
246
+ },
247
+ {
248
+ "department": "psychiatry",
249
+ "id": 49,
250
+ "phone": "01223596201"
251
+ },
252
+ {
253
+ "department": "emergency department",
254
+ "id": 50,
255
+ "phone": "01223217118"
256
+ },
257
+ {
258
+ "department": "cambridge eye unit",
259
+ "id": 51,
260
+ "phone": "01223257168"
261
+ },
262
+ {
263
+ "department": "clinical investigation ward",
264
+ "id": 52,
265
+ "phone": "01223586706"
266
+ },
267
+ {
268
+ "department": "clinical research facility",
269
+ "id": 53,
270
+ "phone": "01223596055"
271
+ },
272
+ {
273
+ "department": "coronary care unit",
274
+ "id": 54,
275
+ "phone": "01223217297"
276
+ },
277
+ {
278
+ "department": "intermediate dependency area",
279
+ "id": 55,
280
+ "phone": "01223217873"
281
+ },
282
+ {
283
+ "department": "medical decisions unit",
284
+ "id": 56,
285
+ "phone": "01223596066"
286
+ },
287
+ {
288
+ "department": "paediatric intensive care unit",
289
+ "id": 57,
290
+ "phone": "01223217715"
291
+ },
292
+ {
293
+ "department": "paediatric day unit",
294
+ "id": 58,
295
+ "phone": "01223257157"
296
+ },
297
+ {
298
+ "department": "john farman intensive care unit",
299
+ "id": 59,
300
+ "phone": "01223256166"
301
+ },
302
+ {
303
+ "department": "delivery unit",
304
+ "id": 60,
305
+ "phone": "01223217217"
306
+ },
307
+ {
308
+ "department": "postnatal",
309
+ "id": 61,
310
+ "phone": "01223217667"
311
+ },
312
+ {
313
+ "department": "neonatal unit",
314
+ "id": 62,
315
+ "phone": "01223217678"
316
+ },
317
+ {
318
+ "department": "antenatal",
319
+ "id": 63,
320
+ "phone": "01223217671"
321
+ },
322
+ {
323
+ "department": "transitional care",
324
+ "id": 64,
325
+ "phone": "01223254668"
326
+ },
327
+ {
328
+ "department": "gynaecology",
329
+ "id": 65,
330
+ "phone": "01223257206"
331
+ }
332
+ ]
data/raw/UBAR/db/hospital_db_processed.json ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": 0,
4
+ "department": "neurosciences critical care unit",
5
+ "phone": "01223216297"
6
+ },
7
+ {
8
+ "id": 1,
9
+ "department": "trauma high dependency unit",
10
+ "phone": "01223216305"
11
+ },
12
+ {
13
+ "id": 2,
14
+ "department": "neurology neurosurgery",
15
+ "phone": "01223217216"
16
+ },
17
+ {
18
+ "id": 3,
19
+ "department": "oncology neurosurgery",
20
+ "phone": "01223216314"
21
+ },
22
+ {
23
+ "id": 4,
24
+ "department": "children 's oncology and haematology",
25
+ "phone": "01223217231"
26
+ },
27
+ {
28
+ "id": 5,
29
+ "department": "children 's surgical and medicine",
30
+ "phone": "01223217450"
31
+ },
32
+ {
33
+ "id": 6,
34
+ "department": "acute medicine for the elderly",
35
+ "phone": "01223217261"
36
+ },
37
+ {
38
+ "id": 7,
39
+ "department": "general medicine and nephrology",
40
+ "phone": "01223217195"
41
+ },
42
+ {
43
+ "id": 8,
44
+ "department": "medicine for the elderly",
45
+ "phone": "01223216988"
46
+ },
47
+ {
48
+ "id": 9,
49
+ "department": "hepatobillary and gastrointestinal surgery regional referral centre",
50
+ "phone": "01223217300"
51
+ },
52
+ {
53
+ "id": 10,
54
+ "department": "trauma and orthopaedics",
55
+ "phone": "01223217279"
56
+ },
57
+ {
58
+ "id": 11,
59
+ "department": "teenage cancer trust unit",
60
+ "phone": "01223274222"
61
+ },
62
+ {
63
+ "id": 12,
64
+ "department": "haematology and haematological oncology",
65
+ "phone": "01223217312"
66
+ },
67
+ {
68
+ "id": 13,
69
+ "department": "children 's surgical and medicine",
70
+ "phone": "01223217250"
71
+ },
72
+ {
73
+ "id": 14,
74
+ "department": "intermediate dependancy area",
75
+ "phone": "01223348144"
76
+ },
77
+ {
78
+ "id": 15,
79
+ "department": "hepatology",
80
+ "phone": "01223217712"
81
+ },
82
+ {
83
+ "id": 16,
84
+ "department": "haematology",
85
+ "phone": "01223274679"
86
+ },
87
+ {
88
+ "id": 17,
89
+ "department": "neurology",
90
+ "phone": "01223274680"
91
+ },
92
+ {
93
+ "id": 18,
94
+ "department": "surgery",
95
+ "phone": "01223217303"
96
+ },
97
+ {
98
+ "id": 19,
99
+ "department": "trauma and orthopaedics",
100
+ "phone": "01223217282"
101
+ },
102
+ {
103
+ "id": 20,
104
+ "department": "oncology",
105
+ "phone": "01223217708"
106
+ },
107
+ {
108
+ "id": 21,
109
+ "department": "infectious diseases",
110
+ "phone": "01223217314"
111
+ },
112
+ {
113
+ "id": 22,
114
+ "department": "haematology day unit",
115
+ "phone": "01223348169"
116
+ },
117
+ {
118
+ "id": 23,
119
+ "department": "clinical decisions unit",
120
+ "phone": "01223596203"
121
+ },
122
+ {
123
+ "id": 24,
124
+ "department": "acute medical assessment unit",
125
+ "phone": "01223348314"
126
+ },
127
+ {
128
+ "id": 25,
129
+ "department": "medical short stay unit",
130
+ "phone": "01223348336"
131
+ },
132
+ {
133
+ "id": 26,
134
+ "department": "inpatient occupational therapy",
135
+ "phone": "01223216881"
136
+ },
137
+ {
138
+ "id": 27,
139
+ "department": "paediatric day unit",
140
+ "phone": "01223217567"
141
+ },
142
+ {
143
+ "id": 28,
144
+ "department": "paediatric clinic",
145
+ "phone": "01223348313"
146
+ },
147
+ {
148
+ "id": 29,
149
+ "department": "medicine for the elderly",
150
+ "phone": "01223274744"
151
+ },
152
+ {
153
+ "id": 30,
154
+ "department": "transplant high dependency unit",
155
+ "phone": "01223216811"
156
+ },
157
+ {
158
+ "id": 31,
159
+ "department": "diabetes and endocrinology",
160
+ "phone": "01223217323"
161
+ },
162
+ {
163
+ "id": 32,
164
+ "department": "infusion services",
165
+ "phone": "01223586967"
166
+ },
167
+ {
168
+ "id": 33,
169
+ "department": "medicine for the elderly",
170
+ "phone": "01223217484"
171
+ },
172
+ {
173
+ "id": 34,
174
+ "department": "medicine for the elderly",
175
+ "phone": "01223217498"
176
+ },
177
+ {
178
+ "id": 35,
179
+ "department": "transplant unit",
180
+ "phone": "01223217711"
181
+ },
182
+ {
183
+ "id": 36,
184
+ "department": "medicine for the elderly",
185
+ "phone": "01223217428"
186
+ },
187
+ {
188
+ "id": 37,
189
+ "department": "theatre admissions unit",
190
+ "phone": "01223256583"
191
+ },
192
+ {
193
+ "id": 38,
194
+ "department": "cardiology",
195
+ "phone": "01223256233"
196
+ },
197
+ {
198
+ "id": 39,
199
+ "department": "major trauma unit",
200
+ "phone": "01223349881"
201
+ },
202
+ {
203
+ "id": 40,
204
+ "department": "cardiology and coronary care unit",
205
+ "phone": "01223256459"
206
+ },
207
+ {
208
+ "id": 41,
209
+ "department": "colorectal surgery",
210
+ "phone": "01223348545"
211
+ },
212
+ {
213
+ "id": 42,
214
+ "department": "plastic and vascular surgery plastics",
215
+ "phone": "01223274280"
216
+ },
217
+ {
218
+ "id": 43,
219
+ "department": "gastroenterology",
220
+ "phone": "01223274284"
221
+ },
222
+ {
223
+ "id": 44,
224
+ "department": "oral and maxillofacial surgery and ent",
225
+ "phone": "01223348527"
226
+ },
227
+ {
228
+ "id": 45,
229
+ "department": "urology",
230
+ "phone": "01223256650"
231
+ },
232
+ {
233
+ "id": 46,
234
+ "department": "respiratory medicine",
235
+ "phone": "01223256645"
236
+ },
237
+ {
238
+ "id": 47,
239
+ "department": "lewin stroke and rehabilitation unit",
240
+ "phone": "01223274750"
241
+ },
242
+ {
243
+ "id": 48,
244
+ "department": "neurosciences",
245
+ "phone": "01223216348"
246
+ },
247
+ {
248
+ "id": 49,
249
+ "department": "psychiatry",
250
+ "phone": "01223596201"
251
+ },
252
+ {
253
+ "id": 50,
254
+ "department": "emergency department",
255
+ "phone": "01223217118"
256
+ },
257
+ {
258
+ "id": 51,
259
+ "department": "cambridge eye unit",
260
+ "phone": "01223257168"
261
+ },
262
+ {
263
+ "id": 52,
264
+ "department": "clinical investigation ward",
265
+ "phone": "01223586706"
266
+ },
267
+ {
268
+ "id": 53,
269
+ "department": "clinical research facility",
270
+ "phone": "01223596055"
271
+ },
272
+ {
273
+ "id": 54,
274
+ "department": "coronary care unit",
275
+ "phone": "01223217297"
276
+ },
277
+ {
278
+ "id": 55,
279
+ "department": "intermediate dependency area",
280
+ "phone": "01223217873"
281
+ },
282
+ {
283
+ "id": 56,
284
+ "department": "medical decisions unit",
285
+ "phone": "01223596066"
286
+ },
287
+ {
288
+ "id": 57,
289
+ "department": "paediatric intensive care unit",
290
+ "phone": "01223217715"
291
+ },
292
+ {
293
+ "id": 58,
294
+ "department": "paediatric day unit",
295
+ "phone": "01223257157"
296
+ },
297
+ {
298
+ "id": 59,
299
+ "department": "john farman intensive care unit",
300
+ "phone": "01223256166"
301
+ },
302
+ {
303
+ "id": 60,
304
+ "department": "delivery unit",
305
+ "phone": "01223217217"
306
+ },
307
+ {
308
+ "id": 61,
309
+ "department": "postnatal",
310
+ "phone": "01223217667"
311
+ },
312
+ {
313
+ "id": 62,
314
+ "department": "neonatal unit",
315
+ "phone": "01223217678"
316
+ },
317
+ {
318
+ "id": 63,
319
+ "department": "antenatal",
320
+ "phone": "01223217671"
321
+ },
322
+ {
323
+ "id": 64,
324
+ "department": "transitional care",
325
+ "phone": "01223254668"
326
+ },
327
+ {
328
+ "id": 65,
329
+ "department": "gynaecology",
330
+ "phone": "01223257206"
331
+ }
332
+ ]
data/raw/UBAR/db/hotel-dbase.db ADDED
Binary file (12.3 kB). View file
 
data/raw/UBAR/db/hotel_db.json ADDED
@@ -0,0 +1,749 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "address": "124 tenison road",
4
+ "area": "east",
5
+ "internet": "yes",
6
+ "parking": "no",
7
+ "id": "0",
8
+ "location": [
9
+ 52.1963733,
10
+ 0.1987426
11
+ ],
12
+ "name": "a and b guest house",
13
+ "phone": "01223315702",
14
+ "postcode": "cb12dp",
15
+ "price": {
16
+ "double": "70",
17
+ "family": "90",
18
+ "single": "50"
19
+ },
20
+ "pricerange": "moderate",
21
+ "stars": "4",
22
+ "takesbookings": "yes",
23
+ "type": "guesthouse"
24
+ },
25
+ {
26
+ "address": "154 chesterton road",
27
+ "area": "north",
28
+ "internet": "yes",
29
+ "parking": "yes",
30
+ "id": "1",
31
+ "location": [
32
+ 52.2157138888889,
33
+ 0.133519444444444
34
+ ],
35
+ "name": "acorn guest house",
36
+ "phone": "01223353888",
37
+ "postcode": "cb41da",
38
+ "price": {
39
+ "double": "75",
40
+ "family": "105",
41
+ "single": "50"
42
+ },
43
+ "pricerange": "moderate",
44
+ "stars": "4",
45
+ "takesbookings": "yes",
46
+ "type": "guesthouse"
47
+ },
48
+ {
49
+ "address": "56 saint barnabas road",
50
+ "area": "centre",
51
+ "internet": "yes",
52
+ "parking": "yes",
53
+ "id": "2",
54
+ "location": [
55
+ 52.1986444444444,
56
+ 0.138133333333333
57
+ ],
58
+ "name": "alexander bed and breakfast",
59
+ "phone": "01223525725",
60
+ "postcode": "cb12de",
61
+ "price": {
62
+ "double": "50",
63
+ "single": "40"
64
+ },
65
+ "pricerange": "cheap",
66
+ "stars": "4",
67
+ "takesbookings": "yes",
68
+ "type": "guesthouse"
69
+ },
70
+ {
71
+ "address": "517a coldham lane",
72
+ "area": "east",
73
+ "internet": "yes",
74
+ "parking": "yes",
75
+ "id": "3",
76
+ "location": [
77
+ 52.1963733,
78
+ 0.1987426
79
+ ],
80
+ "name": "allenbell",
81
+ "phone": "01223210353",
82
+ "postcode": "cb13js",
83
+ "price": {
84
+ "double": "60",
85
+ "family": "90",
86
+ "single": "35"
87
+ },
88
+ "pricerange": "cheap",
89
+ "stars": "4",
90
+ "n": "yes",
91
+ "type": "guesthouse"
92
+ },
93
+ {
94
+ "address": "63 milton road",
95
+ "area": "north",
96
+ "internet": "no",
97
+ "parking": "no",
98
+ "id": "4",
99
+ "location": [
100
+ 52.2173388888889,
101
+ 0.127638888888889
102
+ ],
103
+ "name": "alpha-milton guest house",
104
+ "phone": "01223311625",
105
+ "postcode": "cb41xa",
106
+ "price": {
107
+ "double": "80",
108
+ "single": "45"
109
+ },
110
+ "pricerange": "moderate",
111
+ "stars": "3",
112
+ "takesbookings": "yes",
113
+ "type": "guesthouse"
114
+ },
115
+ {
116
+ "address": "82 arbury road",
117
+ "area": "north",
118
+ "internet": "yes",
119
+ "parking": "yes",
120
+ "id": "5",
121
+ "location": [
122
+ 52.2309912,
123
+ 0.1295545
124
+ ],
125
+ "name": "arbury lodge guesthouse",
126
+ "phone": "01223364319",
127
+ "postcode": "cb42je",
128
+ "price": {
129
+ "double": "75",
130
+ "family": "100",
131
+ "single": "50"
132
+ },
133
+ "pricerange": "moderate",
134
+ "stars": "4",
135
+ "takesbookings": "yes",
136
+ "type": "guesthouse"
137
+ },
138
+ {
139
+ "address": "52 gilbert road",
140
+ "area": "north",
141
+ "internet": "yes",
142
+ "parking": "yes",
143
+ "id": "6",
144
+ "location": [
145
+ 52.2309912,
146
+ 0.1295545
147
+ ],
148
+ "name": "archway house",
149
+ "phone": "01223575314",
150
+ "postcode": "cb43pe",
151
+ "price": {
152
+ "double": "70",
153
+ "single": "40"
154
+ },
155
+ "pricerange": "moderate",
156
+ "stars": "4",
157
+ "takesbookings": "yes",
158
+ "type": "guesthouse"
159
+ },
160
+ {
161
+ "address": "74 chesterton road",
162
+ "area": "north",
163
+ "internet": "yes",
164
+ "parking": "yes",
165
+ "id": "7",
166
+ "location": [
167
+ 52.2309912,
168
+ 0.1295545
169
+ ],
170
+ "name": "ashley hotel",
171
+ "phone": "01223350059",
172
+ "postcode": "cb41er",
173
+ "price": {
174
+ "double": "75",
175
+ "family": "85"
176
+ },
177
+ "pricerange": "moderate",
178
+ "stars": "2",
179
+ "takesbookings": "yes",
180
+ "type": "hotel"
181
+ },
182
+ {
183
+ "address": "710 newmarket road",
184
+ "area": "east",
185
+ "internet": "yes",
186
+ "parking": "yes",
187
+ "id": "8",
188
+ "location": [
189
+ 52.2176534,
190
+ 0.1747439
191
+ ],
192
+ "name": "autumn house",
193
+ "phone": "01223575122",
194
+ "postcode": "cb58rs",
195
+ "price": {
196
+ "double": "60",
197
+ "family": "90",
198
+ "single": "40"
199
+ },
200
+ "pricerange": "cheap",
201
+ "stars": "4",
202
+ "takesbookings": "yes",
203
+ "type": "guesthouse"
204
+ },
205
+ {
206
+ "address": "62 gilbert road",
207
+ "area": "north",
208
+ "internet": "yes",
209
+ "parking": "no",
210
+ "id": "9",
211
+ "location": [
212
+ 52.2309912,
213
+ 0.1295545
214
+ ],
215
+ "name": "avalon",
216
+ "phone": "01223353071",
217
+ "postcode": "cb43pd",
218
+ "price": {
219
+ "double": "65",
220
+ "single": "45"
221
+ },
222
+ "pricerange": "moderate",
223
+ "stars": "4",
224
+ "takesbookings": "yes",
225
+ "type": "guesthouse"
226
+ },
227
+ {
228
+ "address": "5 mowbray road",
229
+ "area": "south",
230
+ "internet": "yes",
231
+ "parking": "yes",
232
+ "id": "10",
233
+ "location": [
234
+ 52.1815361111111,
235
+ 0.150375
236
+ ],
237
+ "name": "aylesbray lodge guest house",
238
+ "phone": "01223240089",
239
+ "postcode": "cb17sr",
240
+ "price": {
241
+ "double": "75",
242
+ "family": "95",
243
+ "single": "65"
244
+ },
245
+ "pricerange": "moderate",
246
+ "stars": "4",
247
+ "takesbookings": "yes",
248
+ "type": "guesthouse"
249
+ },
250
+ {
251
+ "address": "151 hills road",
252
+ "area": "south",
253
+ "internet": "yes",
254
+ "parking": "yes",
255
+ "id": "11",
256
+ "location": [
257
+ 52.1725982,
258
+ 0.1112224
259
+ ],
260
+ "name": "bridge guest house",
261
+ "phone": "01223247942",
262
+ "postcode": "cb28rj",
263
+ "price": {
264
+ "double": "75",
265
+ "family": "90",
266
+ "single": "50"
267
+ },
268
+ "pricerange": "moderate",
269
+ "stars": "3",
270
+ "takesbookings": "yes",
271
+ "type": "guesthouse"
272
+ },
273
+ {
274
+ "address": "138 perne road",
275
+ "area": "east",
276
+ "internet": "yes",
277
+ "parking": "yes",
278
+ "id": "12",
279
+ "location": [
280
+ 52.1935027777778,
281
+ 0.155355555555556
282
+ ],
283
+ "name": "carolina bed and breakfast",
284
+ "phone": "01223247015",
285
+ "postcode": "cb13nx",
286
+ "price": {
287
+ "double": "75",
288
+ "family": "100",
289
+ "single": "45"
290
+ },
291
+ "pricerange": "moderate",
292
+ "stars": "4",
293
+ "takesbookings": "yes",
294
+ "type": "guesthouse"
295
+ },
296
+ {
297
+ "address": "328a histon road",
298
+ "area": "north",
299
+ "internet": "yes",
300
+ "parking": "yes",
301
+ "id": "13",
302
+ "location": [
303
+ 52.227589,
304
+ 0.112288
305
+ ],
306
+ "name": "city centre north b and b",
307
+ "phone": "01223312843",
308
+ "postcode": "cb43ht",
309
+ "price": {
310
+ "single": "40"
311
+ },
312
+ "pricerange": "cheap",
313
+ "stars": "0",
314
+ "takesbookings": "yes",
315
+ "type": "guesthouse"
316
+ },
317
+ {
318
+ "address": "sleeperz hotel, station road",
319
+ "area": "centre",
320
+ "internet": "yes",
321
+ "parking": "no",
322
+ "id": "14",
323
+ "location": [
324
+ 52.194866,
325
+ 0.134223
326
+ ],
327
+ "name": "cityroomz",
328
+ "phone": "01223304050",
329
+ "postcode": "cb12tz",
330
+ "price": {
331
+ "double": "67",
332
+ "family": "77",
333
+ "single": "47"
334
+ },
335
+ "pricerange": "moderate",
336
+ "stars": "0",
337
+ "takesbookings": "yes",
338
+ "type": "hotel"
339
+ },
340
+ {
341
+ "address": "41 warkworth street",
342
+ "area": "centre",
343
+ "internet": "yes",
344
+ "parking": "yes",
345
+ "id": "15",
346
+ "location": [
347
+ 52.20439812598512,
348
+ 0.13059139251708984
349
+ ],
350
+ "name": "el shaddai",
351
+ "phone": "01223327978",
352
+ "postcode": "cb11eg",
353
+ "price": {
354
+ "double": "60",
355
+ "family": "62",
356
+ "single": "40"
357
+ },
358
+ "pricerange": "cheap",
359
+ "stars": "0",
360
+ "takesbookings": "yes",
361
+ "type": "guesthouse"
362
+ },
363
+ {
364
+ "address": "15-17 norman way, coldhams business park",
365
+ "area": "east",
366
+ "internet": "yes",
367
+ "parking": "yes",
368
+ "id": "16",
369
+ "location": [
370
+ 52.1956472222222,
371
+ 0.167444444444444
372
+ ],
373
+ "name": "express by holiday inn cambridge",
374
+ "phone": "01223866800",
375
+ "postcode": "cb13lh",
376
+ "price": {
377
+ "double": "90",
378
+ "family": "90",
379
+ "single": "90"
380
+ },
381
+ "pricerange": "expensive",
382
+ "stars": "2",
383
+ "takesbookings": "yes",
384
+ "type": "hotel"
385
+ },
386
+ {
387
+ "address": "144 thornton road",
388
+ "area": "west",
389
+ "internet": "yes",
390
+ "parking": "yes",
391
+ "id": "17",
392
+ "location": [
393
+ 52.226235,
394
+ 0.091796
395
+ ],
396
+ "name": "finches bed and breakfast",
397
+ "phone": "01223276653",
398
+ "postcode": "cb30nd",
399
+ "price": {
400
+ "double": "50",
401
+ "single": "50"
402
+ },
403
+ "pricerange": "cheap",
404
+ "stars": "4",
405
+ "takesbookings": "yes",
406
+ "type": "guesthouse"
407
+ },
408
+ {
409
+ "address": "gonville place",
410
+ "area": "centre",
411
+ "internet": "yes",
412
+ "parking": "yes",
413
+ "id": "18",
414
+ "location": [
415
+ 52.201275,
416
+ 0.129935
417
+ ],
418
+ "name": "gonville hotel",
419
+ "phone": "01223366611",
420
+ "postcode": "cb11ly",
421
+ "price": {
422
+ "double": "95",
423
+ "family": "119",
424
+ "single": "79"
425
+ },
426
+ "pricerange": "expensive",
427
+ "stars": "3",
428
+ "takesbookings": "yes",
429
+ "type": "hotel"
430
+ },
431
+ {
432
+ "address": "156 chesterton road",
433
+ "area": "north",
434
+ "internet": "yes",
435
+ "parking": "yes",
436
+ "id": "19",
437
+ "location": [
438
+ 52.2309912,
439
+ 0.1295545
440
+ ],
441
+ "name": "hamilton lodge",
442
+ "phone": "01223365664",
443
+ "postcode": "cb41da",
444
+ "price": {
445
+ "double": "73",
446
+ "family": "85",
447
+ "single": "50"
448
+ },
449
+ "pricerange": "moderate",
450
+ "stars": "3",
451
+ "takesbookings": "yes",
452
+ "type": "guesthouse"
453
+ },
454
+ {
455
+ "address": "96 barton road",
456
+ "area": "west",
457
+ "internet": "yes",
458
+ "parking": "yes",
459
+ "id": "20",
460
+ "location": [
461
+ 52.2283801,
462
+ 0.0782873
463
+ ],
464
+ "name": "hobsons house",
465
+ "phone": "01223304906",
466
+ "postcode": "cb39lh",
467
+ "price": {
468
+ "double": "75",
469
+ "family": "110",
470
+ "single": "59"
471
+ },
472
+ "pricerange": "moderate",
473
+ "stars": "3",
474
+ "takesbookings": "yes",
475
+ "type": "guesthouse"
476
+ },
477
+ {
478
+ "address": "78-80 milton road",
479
+ "area": "north",
480
+ "internet": "yes",
481
+ "parking": "yes",
482
+ "id": "21",
483
+ "location": [
484
+ 52.2309912,
485
+ 0.1295545
486
+ ],
487
+ "name": "home from home",
488
+ "phone": "01223323555",
489
+ "postcode": "cb41la",
490
+ "price": {
491
+ "double": "75",
492
+ "family": "105",
493
+ "single": "50"
494
+ },
495
+ "pricerange": "moderate",
496
+ "stars": "4",
497
+ "takesbookings": "yes",
498
+ "type": "guesthouse"
499
+ },
500
+ {
501
+ "address": "kingfisher way, hinchinbrook business park, huntingdon",
502
+ "area": "west",
503
+ "internet": "yes",
504
+ "parking": "yes",
505
+ "id": "22",
506
+ "location": [
507
+ 52.3386166666667,
508
+ -0.210897222222222
509
+ ],
510
+ "name": "huntingdon marriott hotel",
511
+ "phone": "01480446000",
512
+ "postcode": "pe296fl",
513
+ "price": {
514
+ "double": "145",
515
+ "family": "145",
516
+ "single": "125"
517
+ },
518
+ "pricerange": "expensive",
519
+ "stars": "4",
520
+ "takesbookings": "yes",
521
+ "type": "hotel"
522
+ },
523
+ {
524
+ "address": "172 chesterton road",
525
+ "area": "north",
526
+ "internet": "yes",
527
+ "parking": "yes",
528
+ "id": "23",
529
+ "location": [
530
+ 52.2157138888889,
531
+ 0.133519444444444
532
+ ],
533
+ "name": "kirkwood house",
534
+ "phone": "01223306283",
535
+ "postcode": "cb41da",
536
+ "price": {
537
+ "double": "75",
538
+ "family": "130",
539
+ "single": "50"
540
+ },
541
+ "pricerange": "moderate",
542
+ "stars": "4",
543
+ "takesbookings": "yes",
544
+ "type": "guesthouse"
545
+ },
546
+ {
547
+ "address": "732-734 newmarket road",
548
+ "area": "east",
549
+ "internet": "yes",
550
+ "parking": "yes",
551
+ "id": "24",
552
+ "location": [
553
+ 52.2176534,
554
+ 0.1747439
555
+ ],
556
+ "name": "leverton house",
557
+ "phone": "01223292094",
558
+ "postcode": "cb58rs",
559
+ "price": {
560
+ "double": "60",
561
+ "family": "90",
562
+ "single": "40"
563
+ },
564
+ "pricerange": "cheap",
565
+ "stars": "4",
566
+ "takesbookings": "yes",
567
+ "type": "guesthouse"
568
+ },
569
+ {
570
+ "address": "78-80 milton road",
571
+ "area": "north",
572
+ "internet": "yes",
573
+ "parking": "yes",
574
+ "id": "25",
575
+ "location": [
576
+ 52.2309912,
577
+ 0.1295545
578
+ ],
579
+ "name": "limehouse",
580
+ "phone": "01223300552",
581
+ "postcode": "cb42je",
582
+ "price": {
583
+ "double": "75",
584
+ "single": "40"
585
+ },
586
+ "pricerange": "moderate",
587
+ "stars": "4",
588
+ "takesbookings": "yes",
589
+ "type": "guesthouse"
590
+ },
591
+ {
592
+ "address": "365 milton road",
593
+ "area": "north",
594
+ "internet": "yes",
595
+ "parking": "yes",
596
+ "id": "26",
597
+ "location": [
598
+ 52.2309912,
599
+ 0.1295545
600
+ ],
601
+ "name": "lovell lodge",
602
+ "phone": "01223425478",
603
+ "postcode": "cb41sr",
604
+ "price": {
605
+ "double": "65",
606
+ "family": "70",
607
+ "single": "50"
608
+ },
609
+ "pricerange": "moderate",
610
+ "stars": "2",
611
+ "takesbookings": "yes",
612
+ "type": "hotel"
613
+ },
614
+ {
615
+ "address": "53 roseford road",
616
+ "area": "south",
617
+ "internet": "yes",
618
+ "parking": "yes",
619
+ "id": "27",
620
+ "location": [
621
+ 52.1725982,
622
+ 0.1112224
623
+ ],
624
+ "name": "rosa's bed and breakfast",
625
+ "phone": "01223512596",
626
+ "postcode": "cb22ha",
627
+ "price": {
628
+ "single": "25"
629
+ },
630
+ "pricerange": "cheap",
631
+ "stars": "4",
632
+ "takesbookings": "yes",
633
+ "type": "guesthouse"
634
+ },
635
+ {
636
+ "address": "back lane, cambourne",
637
+ "area": "west",
638
+ "internet": "yes",
639
+ "parking": "yes",
640
+ "id": "28",
641
+ "location": [
642
+ 52.2213805555556,
643
+ -0.0680333333333333
644
+ ],
645
+ "name": "the cambridge belfry",
646
+ "phone": "01954714600",
647
+ "postcode": "cb236bw",
648
+ "price": {
649
+ "double": "60",
650
+ "single": "60"
651
+ },
652
+ "pricerange": "cheap",
653
+ "stars": "4",
654
+ "takesbookings": "yes",
655
+ "type": "hotel"
656
+ },
657
+ {
658
+ "address": "53-57 lensfield road",
659
+ "area": "south",
660
+ "internet": "yes",
661
+ "parking": "yes",
662
+ "id": "29",
663
+ "location": [
664
+ 52.1725982,
665
+ 0.1112224
666
+ ],
667
+ "name": "the lensfield hotel",
668
+ "phone": "01223355017",
669
+ "postcode": "cb21en",
670
+ "price": {
671
+ "double": "90",
672
+ "family": "125",
673
+ "single": "65"
674
+ },
675
+ "pricerange": "expensive",
676
+ "stars": "3",
677
+ "takesbookings": "yes",
678
+ "type": "hotel"
679
+ },
680
+ {
681
+ "address": "regent street",
682
+ "area": "centre",
683
+ "internet": "yes",
684
+ "parking": "yes",
685
+ "id": "30",
686
+ "location": [
687
+ 52.19942,
688
+ 0.12722
689
+ ],
690
+ "name": "university arms hotel",
691
+ "phone": "01223351241",
692
+ "postcode": "cb21ad",
693
+ "price": {
694
+ "double": "124",
695
+ "family": "144",
696
+ "single": "104"
697
+ },
698
+ "pricerange": "expensive",
699
+ "stars": "4",
700
+ "takesbookings": "yes",
701
+ "type": "hotel"
702
+ },
703
+ {
704
+ "address": "warkworth terrace",
705
+ "area": "east",
706
+ "internet": "yes",
707
+ "parking": "yes",
708
+ "id": "31",
709
+ "location": [
710
+ 52.1963733,
711
+ 0.1987426
712
+ ],
713
+ "name": "warkworth house",
714
+ "phone": "01223363682",
715
+ "postcode": "cb11ee",
716
+ "price": {
717
+ "double": "75",
718
+ "family": "95",
719
+ "single": "55"
720
+ },
721
+ "pricerange": "moderate",
722
+ "stars": "4",
723
+ "takesbookings": "yes",
724
+ "type": "guesthouse"
725
+ },
726
+ {
727
+ "address": "152 chesterton road",
728
+ "area": "north",
729
+ "internet": "yes",
730
+ "parking": "yes",
731
+ "id": "32",
732
+ "location": [
733
+ 52.2309912,
734
+ 0.1295545
735
+ ],
736
+ "name": "worth house",
737
+ "phone": "01223316074",
738
+ "postcode": "cb41da",
739
+ "price": {
740
+ "double": "60",
741
+ "family": "85",
742
+ "single": "49"
743
+ },
744
+ "pricerange": "cheap",
745
+ "stars": "4",
746
+ "takesbookings": "yes",
747
+ "type": "guesthouse"
748
+ }
749
+ ]
data/raw/UBAR/db/hotel_db_processed.json ADDED
@@ -0,0 +1,749 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "location": [
4
+ 52.1963733,
5
+ 0.1987426
6
+ ],
7
+ "price": {
8
+ "double": "70",
9
+ "family": "90",
10
+ "single": "50"
11
+ },
12
+ "address": "124 tenison road",
13
+ "area": "east",
14
+ "internet": "yes",
15
+ "parking": "no",
16
+ "id": "0",
17
+ "name": "a and b guest house",
18
+ "phone": "01223315702",
19
+ "postcode": "cb12dp",
20
+ "pricerange": "moderate",
21
+ "stars": "4",
22
+ "takesbookings": "yes",
23
+ "type": "guest house"
24
+ },
25
+ {
26
+ "location": [
27
+ 52.2157138888889,
28
+ 0.133519444444444
29
+ ],
30
+ "price": {
31
+ "double": "75",
32
+ "family": "105",
33
+ "single": "50"
34
+ },
35
+ "address": "154 chesterton road",
36
+ "area": "north",
37
+ "internet": "yes",
38
+ "parking": "yes",
39
+ "id": "1",
40
+ "name": "acorn guest house",
41
+ "phone": "01223353888",
42
+ "postcode": "cb41da",
43
+ "pricerange": "moderate",
44
+ "stars": "4",
45
+ "takesbookings": "yes",
46
+ "type": "guest house"
47
+ },
48
+ {
49
+ "location": [
50
+ 52.1986444444444,
51
+ 0.138133333333333
52
+ ],
53
+ "price": {
54
+ "double": "50",
55
+ "single": "40"
56
+ },
57
+ "address": "56 saint barnabas road",
58
+ "area": "centre",
59
+ "internet": "yes",
60
+ "parking": "yes",
61
+ "id": "2",
62
+ "name": "alexander bed and breakfast",
63
+ "phone": "01223525725",
64
+ "postcode": "cb12de",
65
+ "pricerange": "cheap",
66
+ "stars": "4",
67
+ "takesbookings": "yes",
68
+ "type": "guest house"
69
+ },
70
+ {
71
+ "location": [
72
+ 52.1963733,
73
+ 0.1987426
74
+ ],
75
+ "price": {
76
+ "double": "60",
77
+ "family": "90",
78
+ "single": "35"
79
+ },
80
+ "address": "517a coldham lane",
81
+ "area": "east",
82
+ "internet": "yes",
83
+ "parking": "yes",
84
+ "id": "3",
85
+ "name": "allenbell",
86
+ "phone": "01223210353",
87
+ "postcode": "cb13js",
88
+ "pricerange": "cheap",
89
+ "stars": "4",
90
+ "n": "yes",
91
+ "type": "guest house"
92
+ },
93
+ {
94
+ "location": [
95
+ 52.2173388888889,
96
+ 0.127638888888889
97
+ ],
98
+ "price": {
99
+ "double": "80",
100
+ "single": "45"
101
+ },
102
+ "address": "63 milton road",
103
+ "area": "north",
104
+ "internet": "no",
105
+ "parking": "no",
106
+ "id": "4",
107
+ "name": "alpha - milton guest house",
108
+ "phone": "01223311625",
109
+ "postcode": "cb41xa",
110
+ "pricerange": "moderate",
111
+ "stars": "3",
112
+ "takesbookings": "yes",
113
+ "type": "guest house"
114
+ },
115
+ {
116
+ "location": [
117
+ 52.2309912,
118
+ 0.1295545
119
+ ],
120
+ "price": {
121
+ "double": "75",
122
+ "family": "100",
123
+ "single": "50"
124
+ },
125
+ "address": "82 arbury road",
126
+ "area": "north",
127
+ "internet": "yes",
128
+ "parking": "yes",
129
+ "id": "5",
130
+ "name": "arbury lodge guest house",
131
+ "phone": "01223364319",
132
+ "postcode": "cb42je",
133
+ "pricerange": "moderate",
134
+ "stars": "4",
135
+ "takesbookings": "yes",
136
+ "type": "guest house"
137
+ },
138
+ {
139
+ "location": [
140
+ 52.2309912,
141
+ 0.1295545
142
+ ],
143
+ "price": {
144
+ "double": "70",
145
+ "single": "40"
146
+ },
147
+ "address": "52 gilbert road",
148
+ "area": "north",
149
+ "internet": "yes",
150
+ "parking": "yes",
151
+ "id": "6",
152
+ "name": "archway house",
153
+ "phone": "01223575314",
154
+ "postcode": "cb43pe",
155
+ "pricerange": "moderate",
156
+ "stars": "4",
157
+ "takesbookings": "yes",
158
+ "type": "guest house"
159
+ },
160
+ {
161
+ "location": [
162
+ 52.2309912,
163
+ 0.1295545
164
+ ],
165
+ "price": {
166
+ "double": "75",
167
+ "family": "85"
168
+ },
169
+ "address": "74 chesterton road",
170
+ "area": "north",
171
+ "internet": "yes",
172
+ "parking": "yes",
173
+ "id": "7",
174
+ "name": "ashley hotel",
175
+ "phone": "01223350059",
176
+ "postcode": "cb41er",
177
+ "pricerange": "moderate",
178
+ "stars": "2",
179
+ "takesbookings": "yes",
180
+ "type": "hotel"
181
+ },
182
+ {
183
+ "location": [
184
+ 52.2176534,
185
+ 0.1747439
186
+ ],
187
+ "price": {
188
+ "double": "60",
189
+ "family": "90",
190
+ "single": "40"
191
+ },
192
+ "address": "710 newmarket road",
193
+ "area": "east",
194
+ "internet": "yes",
195
+ "parking": "yes",
196
+ "id": "8",
197
+ "name": "autumn house",
198
+ "phone": "01223575122",
199
+ "postcode": "cb58rs",
200
+ "pricerange": "cheap",
201
+ "stars": "4",
202
+ "takesbookings": "yes",
203
+ "type": "guest house"
204
+ },
205
+ {
206
+ "location": [
207
+ 52.2309912,
208
+ 0.1295545
209
+ ],
210
+ "price": {
211
+ "double": "65",
212
+ "single": "45"
213
+ },
214
+ "address": "62 gilbert road",
215
+ "area": "north",
216
+ "internet": "yes",
217
+ "parking": "no",
218
+ "id": "9",
219
+ "name": "avalon",
220
+ "phone": "01223353071",
221
+ "postcode": "cb43pd",
222
+ "pricerange": "moderate",
223
+ "stars": "4",
224
+ "takesbookings": "yes",
225
+ "type": "guest house"
226
+ },
227
+ {
228
+ "location": [
229
+ 52.1815361111111,
230
+ 0.150375
231
+ ],
232
+ "price": {
233
+ "double": "75",
234
+ "family": "95",
235
+ "single": "65"
236
+ },
237
+ "address": "5 mowbray road",
238
+ "area": "south",
239
+ "internet": "yes",
240
+ "parking": "yes",
241
+ "id": "10",
242
+ "name": "aylesbray lodge guest house",
243
+ "phone": "01223240089",
244
+ "postcode": "cb17sr",
245
+ "pricerange": "moderate",
246
+ "stars": "4",
247
+ "takesbookings": "yes",
248
+ "type": "guest house"
249
+ },
250
+ {
251
+ "location": [
252
+ 52.1725982,
253
+ 0.1112224
254
+ ],
255
+ "price": {
256
+ "double": "75",
257
+ "family": "90",
258
+ "single": "50"
259
+ },
260
+ "address": "151 hills road",
261
+ "area": "south",
262
+ "internet": "yes",
263
+ "parking": "yes",
264
+ "id": "11",
265
+ "name": "bridge guest house",
266
+ "phone": "01223247942",
267
+ "postcode": "cb28rj",
268
+ "pricerange": "moderate",
269
+ "stars": "3",
270
+ "takesbookings": "yes",
271
+ "type": "guest house"
272
+ },
273
+ {
274
+ "location": [
275
+ 52.1935027777778,
276
+ 0.155355555555556
277
+ ],
278
+ "price": {
279
+ "double": "75",
280
+ "family": "100",
281
+ "single": "45"
282
+ },
283
+ "address": "138 perne road",
284
+ "area": "east",
285
+ "internet": "yes",
286
+ "parking": "yes",
287
+ "id": "12",
288
+ "name": "carolina bed and breakfast",
289
+ "phone": "01223247015",
290
+ "postcode": "cb13nx",
291
+ "pricerange": "moderate",
292
+ "stars": "4",
293
+ "takesbookings": "yes",
294
+ "type": "guest house"
295
+ },
296
+ {
297
+ "location": [
298
+ 52.227589,
299
+ 0.112288
300
+ ],
301
+ "price": {
302
+ "single": "40"
303
+ },
304
+ "address": "328a histon road",
305
+ "area": "north",
306
+ "internet": "yes",
307
+ "parking": "yes",
308
+ "id": "13",
309
+ "name": "city centre north bed and breakfast",
310
+ "phone": "01223312843",
311
+ "postcode": "cb43ht",
312
+ "pricerange": "cheap",
313
+ "stars": "0",
314
+ "takesbookings": "yes",
315
+ "type": "guest house"
316
+ },
317
+ {
318
+ "location": [
319
+ 52.194866,
320
+ 0.134223
321
+ ],
322
+ "price": {
323
+ "double": "67",
324
+ "family": "77",
325
+ "single": "47"
326
+ },
327
+ "address": "sleeperz hotel , station road",
328
+ "area": "centre",
329
+ "internet": "yes",
330
+ "parking": "no",
331
+ "id": "14",
332
+ "name": "cityroomz",
333
+ "phone": "01223304050",
334
+ "postcode": "cb12tz",
335
+ "pricerange": "moderate",
336
+ "stars": "0",
337
+ "takesbookings": "yes",
338
+ "type": "hotel"
339
+ },
340
+ {
341
+ "location": [
342
+ 52.20439812598512,
343
+ 0.13059139251708984
344
+ ],
345
+ "price": {
346
+ "double": "60",
347
+ "family": "62",
348
+ "single": "40"
349
+ },
350
+ "address": "41 warkworth street",
351
+ "area": "centre",
352
+ "internet": "yes",
353
+ "parking": "yes",
354
+ "id": "15",
355
+ "name": "el shaddai",
356
+ "phone": "01223327978",
357
+ "postcode": "cb11eg",
358
+ "pricerange": "cheap",
359
+ "stars": "0",
360
+ "takesbookings": "yes",
361
+ "type": "guest house"
362
+ },
363
+ {
364
+ "location": [
365
+ 52.1956472222222,
366
+ 0.167444444444444
367
+ ],
368
+ "price": {
369
+ "double": "90",
370
+ "family": "90",
371
+ "single": "90"
372
+ },
373
+ "address": "15 - 17 norman way , coldhams business park",
374
+ "area": "east",
375
+ "internet": "yes",
376
+ "parking": "yes",
377
+ "id": "16",
378
+ "name": "express by holiday inn cambridge",
379
+ "phone": "01223866800",
380
+ "postcode": "cb13lh",
381
+ "pricerange": "expensive",
382
+ "stars": "2",
383
+ "takesbookings": "yes",
384
+ "type": "hotel"
385
+ },
386
+ {
387
+ "location": [
388
+ 52.226235,
389
+ 0.091796
390
+ ],
391
+ "price": {
392
+ "double": "50",
393
+ "single": "50"
394
+ },
395
+ "address": "144 thornton road",
396
+ "area": "west",
397
+ "internet": "yes",
398
+ "parking": "yes",
399
+ "id": "17",
400
+ "name": "finches bed and breakfast",
401
+ "phone": "01223276653",
402
+ "postcode": "cb30nd",
403
+ "pricerange": "cheap",
404
+ "stars": "4",
405
+ "takesbookings": "yes",
406
+ "type": "guest house"
407
+ },
408
+ {
409
+ "location": [
410
+ 52.201275,
411
+ 0.129935
412
+ ],
413
+ "price": {
414
+ "double": "95",
415
+ "family": "119",
416
+ "single": "79"
417
+ },
418
+ "address": "gonville place",
419
+ "area": "centre",
420
+ "internet": "yes",
421
+ "parking": "yes",
422
+ "id": "18",
423
+ "name": "gonville hotel",
424
+ "phone": "01223366611",
425
+ "postcode": "cb11ly",
426
+ "pricerange": "expensive",
427
+ "stars": "3",
428
+ "takesbookings": "yes",
429
+ "type": "hotel"
430
+ },
431
+ {
432
+ "location": [
433
+ 52.2309912,
434
+ 0.1295545
435
+ ],
436
+ "price": {
437
+ "double": "73",
438
+ "family": "85",
439
+ "single": "50"
440
+ },
441
+ "address": "156 chesterton road",
442
+ "area": "north",
443
+ "internet": "yes",
444
+ "parking": "yes",
445
+ "id": "19",
446
+ "name": "hamilton lodge",
447
+ "phone": "01223365664",
448
+ "postcode": "cb41da",
449
+ "pricerange": "moderate",
450
+ "stars": "3",
451
+ "takesbookings": "yes",
452
+ "type": "guest house"
453
+ },
454
+ {
455
+ "location": [
456
+ 52.2283801,
457
+ 0.0782873
458
+ ],
459
+ "price": {
460
+ "double": "75",
461
+ "family": "110",
462
+ "single": "59"
463
+ },
464
+ "address": "96 barton road",
465
+ "area": "west",
466
+ "internet": "yes",
467
+ "parking": "yes",
468
+ "id": "20",
469
+ "name": "hobsons house",
470
+ "phone": "01223304906",
471
+ "postcode": "cb39lh",
472
+ "pricerange": "moderate",
473
+ "stars": "3",
474
+ "takesbookings": "yes",
475
+ "type": "guest house"
476
+ },
477
+ {
478
+ "location": [
479
+ 52.2309912,
480
+ 0.1295545
481
+ ],
482
+ "price": {
483
+ "double": "75",
484
+ "family": "105",
485
+ "single": "50"
486
+ },
487
+ "address": "78 - 80 milton road",
488
+ "area": "north",
489
+ "internet": "yes",
490
+ "parking": "yes",
491
+ "id": "21",
492
+ "name": "home from home",
493
+ "phone": "01223323555",
494
+ "postcode": "cb41la",
495
+ "pricerange": "moderate",
496
+ "stars": "4",
497
+ "takesbookings": "yes",
498
+ "type": "guest house"
499
+ },
500
+ {
501
+ "location": [
502
+ 52.3386166666667,
503
+ -0.210897222222222
504
+ ],
505
+ "price": {
506
+ "double": "145",
507
+ "family": "145",
508
+ "single": "125"
509
+ },
510
+ "address": "kingfisher way , hinchinbrook business park , huntingdon",
511
+ "area": "west",
512
+ "internet": "yes",
513
+ "parking": "yes",
514
+ "id": "22",
515
+ "name": "huntingdon marriott hotel",
516
+ "phone": "01480446000",
517
+ "postcode": "pe296fl",
518
+ "pricerange": "expensive",
519
+ "stars": "4",
520
+ "takesbookings": "yes",
521
+ "type": "hotel"
522
+ },
523
+ {
524
+ "location": [
525
+ 52.2157138888889,
526
+ 0.133519444444444
527
+ ],
528
+ "price": {
529
+ "double": "75",
530
+ "family": "130",
531
+ "single": "50"
532
+ },
533
+ "address": "172 chesterton road",
534
+ "area": "north",
535
+ "internet": "yes",
536
+ "parking": "yes",
537
+ "id": "23",
538
+ "name": "kirkwood house",
539
+ "phone": "01223306283",
540
+ "postcode": "cb41da",
541
+ "pricerange": "moderate",
542
+ "stars": "4",
543
+ "takesbookings": "yes",
544
+ "type": "guest house"
545
+ },
546
+ {
547
+ "location": [
548
+ 52.2176534,
549
+ 0.1747439
550
+ ],
551
+ "price": {
552
+ "double": "60",
553
+ "family": "90",
554
+ "single": "40"
555
+ },
556
+ "address": "732 - 734 newmarket road",
557
+ "area": "east",
558
+ "internet": "yes",
559
+ "parking": "yes",
560
+ "id": "24",
561
+ "name": "leverton house",
562
+ "phone": "01223292094",
563
+ "postcode": "cb58rs",
564
+ "pricerange": "cheap",
565
+ "stars": "4",
566
+ "takesbookings": "yes",
567
+ "type": "guest house"
568
+ },
569
+ {
570
+ "location": [
571
+ 52.2309912,
572
+ 0.1295545
573
+ ],
574
+ "price": {
575
+ "double": "75",
576
+ "single": "40"
577
+ },
578
+ "address": "78 - 80 milton road",
579
+ "area": "north",
580
+ "internet": "yes",
581
+ "parking": "yes",
582
+ "id": "25",
583
+ "name": "limehouse",
584
+ "phone": "01223300552",
585
+ "postcode": "cb42je",
586
+ "pricerange": "moderate",
587
+ "stars": "4",
588
+ "takesbookings": "yes",
589
+ "type": "guest house"
590
+ },
591
+ {
592
+ "location": [
593
+ 52.2309912,
594
+ 0.1295545
595
+ ],
596
+ "price": {
597
+ "double": "65",
598
+ "family": "70",
599
+ "single": "50"
600
+ },
601
+ "address": "365 milton road",
602
+ "area": "north",
603
+ "internet": "yes",
604
+ "parking": "yes",
605
+ "id": "26",
606
+ "name": "lovell lodge",
607
+ "phone": "01223425478",
608
+ "postcode": "cb41sr",
609
+ "pricerange": "moderate",
610
+ "stars": "2",
611
+ "takesbookings": "yes",
612
+ "type": "hotel"
613
+ },
614
+ {
615
+ "location": [
616
+ 52.1725982,
617
+ 0.1112224
618
+ ],
619
+ "price": {
620
+ "single": "25"
621
+ },
622
+ "address": "53 roseford road",
623
+ "area": "south",
624
+ "internet": "yes",
625
+ "parking": "yes",
626
+ "id": "27",
627
+ "name": "rosa 's bed and breakfast",
628
+ "phone": "01223512596",
629
+ "postcode": "cb22 ha",
630
+ "pricerange": "cheap",
631
+ "stars": "4",
632
+ "takesbookings": "yes",
633
+ "type": "guest house"
634
+ },
635
+ {
636
+ "location": [
637
+ 52.2213805555556,
638
+ -0.0680333333333333
639
+ ],
640
+ "price": {
641
+ "double": "60",
642
+ "single": "60"
643
+ },
644
+ "address": "back lane , cambourne",
645
+ "area": "west",
646
+ "internet": "yes",
647
+ "parking": "yes",
648
+ "id": "28",
649
+ "name": "the cambridge belfry",
650
+ "phone": "01954714600",
651
+ "postcode": "cb236bw",
652
+ "pricerange": "cheap",
653
+ "stars": "4",
654
+ "takesbookings": "yes",
655
+ "type": "hotel"
656
+ },
657
+ {
658
+ "location": [
659
+ 52.1725982,
660
+ 0.1112224
661
+ ],
662
+ "price": {
663
+ "double": "90",
664
+ "family": "125",
665
+ "single": "65"
666
+ },
667
+ "address": "53 - 57 lensfield road",
668
+ "area": "south",
669
+ "internet": "yes",
670
+ "parking": "yes",
671
+ "id": "29",
672
+ "name": "the lensfield hotel",
673
+ "phone": "01223355017",
674
+ "postcode": "cb21en",
675
+ "pricerange": "expensive",
676
+ "stars": "3",
677
+ "takesbookings": "yes",
678
+ "type": "hotel"
679
+ },
680
+ {
681
+ "location": [
682
+ 52.19942,
683
+ 0.12722
684
+ ],
685
+ "price": {
686
+ "double": "124",
687
+ "family": "144",
688
+ "single": "104"
689
+ },
690
+ "address": "regent street",
691
+ "area": "centre",
692
+ "internet": "yes",
693
+ "parking": "yes",
694
+ "id": "30",
695
+ "name": "university arms hotel",
696
+ "phone": "01223351241",
697
+ "postcode": "cb21ad",
698
+ "pricerange": "expensive",
699
+ "stars": "4",
700
+ "takesbookings": "yes",
701
+ "type": "hotel"
702
+ },
703
+ {
704
+ "location": [
705
+ 52.1963733,
706
+ 0.1987426
707
+ ],
708
+ "price": {
709
+ "double": "75",
710
+ "family": "95",
711
+ "single": "55"
712
+ },
713
+ "address": "warkworth terrace",
714
+ "area": "east",
715
+ "internet": "yes",
716
+ "parking": "yes",
717
+ "id": "31",
718
+ "name": "warkworth house",
719
+ "phone": "01223363682",
720
+ "postcode": "cb11ee",
721
+ "pricerange": "moderate",
722
+ "stars": "4",
723
+ "takesbookings": "yes",
724
+ "type": "guest house"
725
+ },
726
+ {
727
+ "location": [
728
+ 52.2309912,
729
+ 0.1295545
730
+ ],
731
+ "price": {
732
+ "double": "60",
733
+ "family": "85",
734
+ "single": "49"
735
+ },
736
+ "address": "152 chesterton road",
737
+ "area": "north",
738
+ "internet": "yes",
739
+ "parking": "yes",
740
+ "id": "32",
741
+ "name": "worth house",
742
+ "phone": "01223316074",
743
+ "postcode": "cb41da",
744
+ "pricerange": "cheap",
745
+ "stars": "4",
746
+ "takesbookings": "yes",
747
+ "type": "guest house"
748
+ }
749
+ ]
data/raw/UBAR/db/ontology.json ADDED
@@ -0,0 +1,1930 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "hotel-price range": [
3
+ "cheap",
4
+ "do n't care",
5
+ "moderate",
6
+ "expensive"
7
+ ],
8
+ "hotel-type": [
9
+ "hotel",
10
+ "guest house"
11
+ ],
12
+ "hotel-parking": [
13
+ "yes",
14
+ "do n't care",
15
+ "no",
16
+ "free"
17
+ ],
18
+ "hotel-book stay": [
19
+ "2",
20
+ "1",
21
+ "4",
22
+ "5",
23
+ "3",
24
+ "8",
25
+ "7",
26
+ "6",
27
+ "six"
28
+ ],
29
+ "hotel-book day": [
30
+ "tuesday",
31
+ "friday",
32
+ "monday",
33
+ "wednesday",
34
+ "saturday",
35
+ "thursday",
36
+ "sunday"
37
+ ],
38
+ "hotel-book people": [
39
+ "6",
40
+ "1",
41
+ "3",
42
+ "5",
43
+ "4",
44
+ "2",
45
+ "8",
46
+ "7",
47
+ "six",
48
+ "3."
49
+ ],
50
+ "hotel-area": [
51
+ "east",
52
+ "north",
53
+ "centre",
54
+ "south",
55
+ "west",
56
+ "do n't care",
57
+ "southern aylesbray",
58
+ "cambridge",
59
+ "el shaddai",
60
+ "stevenage",
61
+ "place to be a guesthouse",
62
+ "peterborough",
63
+ "bishops stortford",
64
+ "cheap"
65
+ ],
66
+ "hotel-stars": [
67
+ "4",
68
+ "2",
69
+ "0",
70
+ "3",
71
+ "do n't care",
72
+ "1",
73
+ "5"
74
+ ],
75
+ "hotel-internet": [
76
+ "yes",
77
+ "do n't care",
78
+ "no"
79
+ ],
80
+ "train-destination": [
81
+ "bishops stortford",
82
+ "cambridge",
83
+ "ely",
84
+ "peterborough",
85
+ "norwich",
86
+ "london liverpool street",
87
+ "leicester",
88
+ "kings lynn",
89
+ "broxbourne",
90
+ "birmingham new street",
91
+ "london kings cross",
92
+ "stansted airport",
93
+ "stevenage",
94
+ "lecester",
95
+ "bishop stortford",
96
+ "north",
97
+ "willi",
98
+ "curry prince",
99
+ "bournemouth",
100
+ "centre",
101
+ "no",
102
+ "bishops storford",
103
+ "city centre north",
104
+ "taj tandoori",
105
+ "petersborough",
106
+ "huntington marriott",
107
+ "hol",
108
+ "gonv",
109
+ "liverpool",
110
+ "huntingdon marriott hotel",
111
+ "gourmet burger kitchen",
112
+ "the copper kettle"
113
+ ],
114
+ "train-day": [
115
+ "friday",
116
+ "wednesday",
117
+ "monday",
118
+ "saturday",
119
+ "thursday",
120
+ "tuesday",
121
+ "sunday",
122
+ "do n't care",
123
+ "fr",
124
+ "n",
125
+ "we",
126
+ "train"
127
+ ],
128
+ "train-departure": [
129
+ "cambridge",
130
+ "birmingham new street",
131
+ "ely",
132
+ "norwich",
133
+ "bishops stortford",
134
+ "peterborough",
135
+ "stevenage",
136
+ "broxbourne",
137
+ "london liverpool street",
138
+ "leicester",
139
+ "stansted airport",
140
+ "kings lynn",
141
+ "london kings cross",
142
+ "birmingham",
143
+ "do n't care",
144
+ "saint johns",
145
+ "wandlebury country park",
146
+ "liecester",
147
+ "panahar",
148
+ "cineworld",
149
+ "stansted",
150
+ "el shaddai",
151
+ "lon",
152
+ "cafe uno",
153
+ "leicaster",
154
+ "city hall",
155
+ "rosa's bed and breakfast",
156
+ "norwhich",
157
+ "cam",
158
+ "brookshite",
159
+ "bro",
160
+ "cambrid",
161
+ "arbu",
162
+ "aylesbray lodge guest",
163
+ "alpha-milton",
164
+ "a",
165
+ "london",
166
+ "hamilton lodge",
167
+ "duxford",
168
+ "camboats"
169
+ ],
170
+ "train-arrive by": [
171
+ "19:45",
172
+ "20:45",
173
+ "11:30",
174
+ "14:45",
175
+ "08:15",
176
+ "13:45",
177
+ "08:00",
178
+ "08:45",
179
+ "11:00",
180
+ "11:45",
181
+ "08:30",
182
+ "10:45",
183
+ "05:00",
184
+ "20:00",
185
+ "15:15",
186
+ "11:15",
187
+ "19:00",
188
+ "20:15",
189
+ "16:45",
190
+ "12:45",
191
+ "10:15",
192
+ "21:00",
193
+ "15:00",
194
+ "17:15",
195
+ "14:30",
196
+ "20:30",
197
+ "18:15",
198
+ "12:15",
199
+ "18:45",
200
+ "12:00",
201
+ "10:00",
202
+ "21:45",
203
+ "16:15",
204
+ "14:00",
205
+ "18:30",
206
+ "17:45",
207
+ "13:30",
208
+ "19:30",
209
+ "12:30",
210
+ "09:15",
211
+ "09:00",
212
+ "16:00",
213
+ "23:00",
214
+ "10:30",
215
+ "09:30",
216
+ "16:30",
217
+ "18:00",
218
+ "09:45",
219
+ "15:45",
220
+ "19:15",
221
+ "18:23",
222
+ "13:00",
223
+ "17:30",
224
+ "15:30",
225
+ "21:15",
226
+ "13:15",
227
+ "21:30",
228
+ "17:00",
229
+ "8:00",
230
+ "14:15",
231
+ "do n't care",
232
+ "thursday",
233
+ "05:30",
234
+ "16:06",
235
+ "11:52",
236
+ "6:55",
237
+ "18:07",
238
+ "09:06",
239
+ "07:15",
240
+ "06:01",
241
+ "13:52",
242
+ "22:07",
243
+ "19:57",
244
+ "08:44",
245
+ "06:30",
246
+ "10:08",
247
+ "08:07",
248
+ "07:30",
249
+ "19:58",
250
+ "10:43",
251
+ "9:30",
252
+ "13:38",
253
+ "15:06",
254
+ "07:35",
255
+ "01:00",
256
+ "13:56",
257
+ "12:07",
258
+ "15:07",
259
+ "11:24",
260
+ "22:00",
261
+ "14:43",
262
+ "19:27",
263
+ "10:32",
264
+ "1100",
265
+ "06:15",
266
+ "23:30",
267
+ "15:01",
268
+ "16:32",
269
+ "05:15",
270
+ "13:32",
271
+ "07:45",
272
+ "05:45",
273
+ "09;45",
274
+ "18:32",
275
+ "23:27",
276
+ "06:45",
277
+ "19:51",
278
+ "tuesday",
279
+ "21:06",
280
+ "15:24",
281
+ "17:23",
282
+ "09:32"
283
+ ],
284
+ "train-book people": [
285
+ "1",
286
+ "5",
287
+ "8",
288
+ "6",
289
+ "2",
290
+ "7",
291
+ "4",
292
+ "3",
293
+ "0",
294
+ "9",
295
+ "15",
296
+ "`1",
297
+ "10"
298
+ ],
299
+ "train-leave at": [
300
+ "21:15",
301
+ "12:45",
302
+ "19:45",
303
+ "14:00",
304
+ "15:15",
305
+ "10:00",
306
+ "09:29",
307
+ "10:15",
308
+ "09:15",
309
+ "19:15",
310
+ "11:15",
311
+ "17:45",
312
+ "14:30",
313
+ "20:00",
314
+ "after 9:15 am",
315
+ "09:30",
316
+ "08:15",
317
+ "20:15",
318
+ "10:45",
319
+ "14:45",
320
+ "17:00",
321
+ "21:00",
322
+ "17:30",
323
+ "11:30",
324
+ "13:45",
325
+ "12:15",
326
+ "08:45",
327
+ "11:45",
328
+ "09:00",
329
+ "18:45",
330
+ "05:15",
331
+ "18:00",
332
+ "16:00",
333
+ "11:00",
334
+ "05:00",
335
+ "08:00",
336
+ "18:30",
337
+ "21:45",
338
+ "16:30",
339
+ "14:15",
340
+ "16:15",
341
+ "10:32",
342
+ "12:30",
343
+ "13:00",
344
+ "15:32",
345
+ "13:30",
346
+ "02:00",
347
+ "08:30",
348
+ "15:00",
349
+ "10:30",
350
+ "15:45",
351
+ "09:45",
352
+ "21:30",
353
+ "05:59",
354
+ "06:00",
355
+ "18:15",
356
+ "bishops stortford",
357
+ "07:45",
358
+ "05:45",
359
+ "after 11:30",
360
+ "12:00",
361
+ "13:15",
362
+ "20:45",
363
+ "16:45",
364
+ "19:00",
365
+ "15:30",
366
+ "17:15",
367
+ "05:30",
368
+ "do n't care",
369
+ "18:40",
370
+ "21:50",
371
+ "19:30",
372
+ "06:45",
373
+ "06:30",
374
+ "18:06",
375
+ "22:00",
376
+ "0",
377
+ "14:21",
378
+ "13:11",
379
+ "21:07",
380
+ "11:35",
381
+ "20:30",
382
+ "monday",
383
+ "leicester",
384
+ "07:21",
385
+ "05:16",
386
+ "8:30",
387
+ "after 8:30",
388
+ "05:01",
389
+ "10:36",
390
+ "20:36",
391
+ "21:39",
392
+ "17:59",
393
+ "18:31",
394
+ "13:35",
395
+ "after 19:30",
396
+ "09:17",
397
+ "07:15",
398
+ "morning",
399
+ "09:59",
400
+ "07:00",
401
+ "saturday",
402
+ "07:54",
403
+ "09:54",
404
+ "08:16",
405
+ "15:24",
406
+ "15:17",
407
+ "9:30",
408
+ "13:39",
409
+ "15:11",
410
+ "13:01",
411
+ "05:17",
412
+ "10:34",
413
+ "10:16",
414
+ "11:39",
415
+ "12:06",
416
+ "11:50",
417
+ "13:54",
418
+ "8:45",
419
+ "13:29",
420
+ "19:11",
421
+ "14:48",
422
+ "11:21",
423
+ "12:32",
424
+ "after 16:30",
425
+ "15:16",
426
+ "11:48",
427
+ "18:11",
428
+ "18:46",
429
+ "02:30",
430
+ "22:01",
431
+ "19:21",
432
+ "thursday",
433
+ "08:01",
434
+ "15:29",
435
+ "08:11",
436
+ "20:40",
437
+ "13:17",
438
+ "15:01",
439
+ "14:34",
440
+ "08:32"
441
+ ],
442
+ "attraction-area": [
443
+ "centre",
444
+ "west",
445
+ "north",
446
+ "south",
447
+ "east",
448
+ "do n't care",
449
+ "cambridge"
450
+ ],
451
+ "restaurant-food": [
452
+ "turkish",
453
+ "indian",
454
+ "chinese",
455
+ "seafood",
456
+ "italian",
457
+ "british",
458
+ "australasian",
459
+ "australian",
460
+ "asian oriental",
461
+ "thai",
462
+ "vegetarian",
463
+ "modern european",
464
+ "gastropub",
465
+ "south indian",
466
+ "european",
467
+ "portuguese",
468
+ "swiss",
469
+ "crossover",
470
+ "catalan",
471
+ "french",
472
+ "do n't care",
473
+ "mexican",
474
+ "welsh",
475
+ "korean",
476
+ "tuscan",
477
+ "new zealand",
478
+ "molecular gastronomy",
479
+ "eritrean",
480
+ "british food",
481
+ "the americas",
482
+ "north american",
483
+ "spanish",
484
+ "barbeque",
485
+ "persian",
486
+ "greek",
487
+ "lebanese",
488
+ "vietnamese",
489
+ "belgian",
490
+ "creative",
491
+ "jamaican",
492
+ "scottish",
493
+ "cuban",
494
+ "japanese",
495
+ "sri lankan",
496
+ "light bites",
497
+ "moroccan",
498
+ "latin american",
499
+ "african",
500
+ "basque",
501
+ "modern global",
502
+ "halal",
503
+ "mediterranean",
504
+ "bistro",
505
+ "international",
506
+ "unusual",
507
+ "north indian",
508
+ "modern eclectic",
509
+ "danish",
510
+ "afghan",
511
+ "world",
512
+ "northern european",
513
+ "german",
514
+ "cantonese",
515
+ "irish",
516
+ "romanian",
517
+ "russian",
518
+ "english",
519
+ "corsica",
520
+ "steakhouse",
521
+ "hungarian",
522
+ "singaporean",
523
+ "austrian",
524
+ "venetian",
525
+ "ital",
526
+ "polynesian",
527
+ "kosher",
528
+ "swedish",
529
+ "scandinavian",
530
+ "modern american",
531
+ "christmas",
532
+ "malaysian",
533
+ "north african",
534
+ "brazilian",
535
+ "canapes",
536
+ "caribbean",
537
+ "south african",
538
+ "traditional",
539
+ "indonesian",
540
+ "middle eastern",
541
+ "fusion",
542
+ "polish",
543
+ "asian",
544
+ "not mentionedc",
545
+ "afternoon tea",
546
+ "eastern european",
547
+ "panasian",
548
+ "kor",
549
+ "gastro pub",
550
+ "american",
551
+ "pizza",
552
+ "modern european",
553
+ "modern english"
554
+ ],
555
+ "restaurant-price range": [
556
+ "expensive",
557
+ "cheap",
558
+ "moderate",
559
+ "do n't care"
560
+ ],
561
+ "restaurant-area": [
562
+ "centre",
563
+ "south",
564
+ "north",
565
+ "east",
566
+ "west"
567
+ ],
568
+ "attraction-name": [
569
+ "all saints church",
570
+ "funky fun house",
571
+ "christ's college",
572
+ "the man on the moon",
573
+ "milton country park",
574
+ "wandlebury country park",
575
+ "king's college",
576
+ "lynne strover gallery",
577
+ "saint john's college",
578
+ "broughton house gallery",
579
+ "old schools",
580
+ "museum of classical archaeology",
581
+ "adc theatre",
582
+ "emmanuel college",
583
+ "byard art",
584
+ "soul tree nightclub",
585
+ "club salsa",
586
+ "cherry hinton hall and grounds",
587
+ "museum of archaelogy and anthropology",
588
+ "castle galleries",
589
+ "nusha",
590
+ "regency gallery",
591
+ "whipple museum of the history of science",
592
+ "churchill college",
593
+ "holy trinity church",
594
+ "cambridge artworks",
595
+ "cambridge arts theatre",
596
+ "scott polar museum",
597
+ "do n't care",
598
+ "scudamores punting co",
599
+ "clare college",
600
+ "saint barnabas press gallery",
601
+ "cambridge and county folk museum",
602
+ "kettle's yard",
603
+ "no specific location",
604
+ "whale of a time",
605
+ "vue cinema",
606
+ "cambridge book and print gallery",
607
+ "ballare",
608
+ "cafe jello gallery",
609
+ "riverboat georgina",
610
+ "the fitzwilliam museum",
611
+ "sidney sussex college",
612
+ "saint catharine's college",
613
+ "great saint mary's church",
614
+ "cherry hinton water play",
615
+ "primavera",
616
+ "cineworld cinema",
617
+ "magdalene college",
618
+ "kambar",
619
+ "parkside pools",
620
+ "the fez club",
621
+ "cambridge university botanic gardens",
622
+ "cambridge museum of technology",
623
+ "downing college",
624
+ "clare hall",
625
+ "cafe jello",
626
+ "little saint mary's church",
627
+ "people's portraits exhibition at girton college",
628
+ "abbey pool and astroturf pitch",
629
+ "corpus christi",
630
+ "tenpin",
631
+ "the cambridge punter",
632
+ "queens' college",
633
+ "no",
634
+ "fez club",
635
+ "mumford theatre",
636
+ "the cherry hinton village centre",
637
+ "jesus green outdoor pool",
638
+ "trinity college",
639
+ "gonville and caius college",
640
+ "camboats",
641
+ "cambridge",
642
+ "williams art and antiques",
643
+ "kings hedges learner pool",
644
+ "cambridge contemporary art",
645
+ "the cambridge corn exchange",
646
+ "the place",
647
+ "ruskin gallery",
648
+ "sheep's green and lammas land park fen causeway",
649
+ "gallery at twelve a high street",
650
+ "carol",
651
+ "swimming pool",
652
+ "kirkwood",
653
+ "pembroke college",
654
+ "univ",
655
+ "the junction",
656
+ "jesus college",
657
+ "ay",
658
+ "fitzwilliam museum",
659
+ "college",
660
+ "pizz",
661
+ "worth house",
662
+ "fi",
663
+ "free",
664
+ "aut",
665
+ "man on the moon",
666
+ "bo",
667
+ "all saint's church",
668
+ "hughes hall",
669
+ "city",
670
+ "christ college",
671
+ "north",
672
+ "by",
673
+ "autu",
674
+ "garde",
675
+ "s",
676
+ "caffe uno",
677
+ "cambridge belf",
678
+ "old school",
679
+ "museum",
680
+ "love",
681
+ "cambridge corn exchange",
682
+ "college in the north",
683
+ "boating",
684
+ "older churches",
685
+ "c",
686
+ "cambridge punter",
687
+ "queen's college",
688
+ "architectural churches",
689
+ "saint john's college.",
690
+ "parkside",
691
+ "ac",
692
+ "thanh",
693
+ "the mumford theatre",
694
+ "fitzbillies",
695
+ "home from home",
696
+ "da v",
697
+ "cambridge temporary art",
698
+ "centre",
699
+ "k",
700
+ "fitzwilliam",
701
+ "pizza",
702
+ "scott polar",
703
+ "da vinci pizzeria",
704
+ "broughton",
705
+ "contemporary art museum",
706
+ "belf",
707
+ "school",
708
+ "corn cambridge exchange",
709
+ "bangkok city",
710
+ "bed",
711
+ "mi"
712
+ ],
713
+ "restaurant-name": [
714
+ "meze bar restaurant",
715
+ "indian",
716
+ "pizza hut city centre",
717
+ "the good luck chinese food takeaway",
718
+ "caffe uno",
719
+ "the gardenia",
720
+ "the oak bistro",
721
+ "do n't care",
722
+ "sala thong",
723
+ "thanh binh",
724
+ "riverside brasserie",
725
+ "cambri",
726
+ "pizza express",
727
+ "yippee noodle bar",
728
+ "curry prince",
729
+ "midsummer house restaurant",
730
+ "cote",
731
+ "restaurant alimentum",
732
+ "nandos city centre",
733
+ "chiquito restaurant bar",
734
+ "maharajah tandoori restaurant",
735
+ "yu garden",
736
+ "bangkok city",
737
+ "copper kettle",
738
+ "backstreet bistro",
739
+ "the golden curry",
740
+ "don pasquale pizzeria",
741
+ "sesame restaurant and bar",
742
+ "charlie",
743
+ "the cow pizza kitchen and bar",
744
+ "india house",
745
+ "loch fyne",
746
+ "eraina",
747
+ "royal spice",
748
+ "prezzo",
749
+ "curry king",
750
+ "the nirala",
751
+ "curry garden",
752
+ "zizzi cambridge",
753
+ "da vinci pizzeria",
754
+ "jinling noodle bar",
755
+ "la raza",
756
+ "cotto",
757
+ "efes restaurant",
758
+ "taj tandoori",
759
+ "golden wok",
760
+ "charlie chan",
761
+ "kohinoor",
762
+ "bedouin",
763
+ "the cambridge chop house",
764
+ "stazione restaurant and coffee bar",
765
+ "graffiti",
766
+ "pizza hut",
767
+ "la mimosa",
768
+ "city stop",
769
+ "grafton hotel restaurant",
770
+ "pizza hut fen ditton",
771
+ "ba",
772
+ "frankie and bennys",
773
+ "rajmahal",
774
+ "rice boat",
775
+ "the missing sock",
776
+ "the varsity restaurant",
777
+ "panahar",
778
+ "nandos",
779
+ "sitar tandoori",
780
+ "oak bistro",
781
+ "scudamores punt",
782
+ "lovel",
783
+ "anatolia",
784
+ "clowns cafe",
785
+ "gourmet burger kitchen",
786
+ "tandoori palace",
787
+ "ali baba",
788
+ "darrys cookhouse and wine shop",
789
+ "hakka",
790
+ "peking restaurant",
791
+ "de luca cucina and bar",
792
+ "the slug and lettuce",
793
+ "city stop restaurant",
794
+ "kymmoy",
795
+ "cambridge lodge restaurant",
796
+ "tandoori",
797
+ "bloomsbury restaurant",
798
+ "ugly duckling",
799
+ "hk fusion",
800
+ "pizza hut cherry hinton",
801
+ "fitzbillies restaurant",
802
+ "hotel du vin and bistro",
803
+ "no",
804
+ "restaurant two two",
805
+ "dojo noodle bar",
806
+ "fi",
807
+ "the copper kettle",
808
+ "michaelhouse cafe",
809
+ "restaurant one seven",
810
+ "the hotpot",
811
+ "royal standard",
812
+ "lev",
813
+ "the river bar steakhouse and grill",
814
+ "pipasha restaurant",
815
+ "golden curry",
816
+ "saigon city",
817
+ "pizza express fen ditton",
818
+ "little seoul",
819
+ "meghna",
820
+ "saffron brasserie",
821
+ "j restaurant",
822
+ "la margherita",
823
+ "the lucky star",
824
+ "lan hong house",
825
+ "hotpot",
826
+ "ask",
827
+ "the gandhi",
828
+ "cocum",
829
+ "golden house",
830
+ "la tasca",
831
+ "shanghai family restaurant",
832
+ "worth house",
833
+ "wagamama",
834
+ "galleria",
835
+ "lo",
836
+ "travellers rest",
837
+ "mahal of cambridge",
838
+ "archway",
839
+ "molecular gastonomy",
840
+ "european",
841
+ "saint johns chop house",
842
+ "anatolia and efes restaurant",
843
+ "shiraz restaurant",
844
+ "nirala",
845
+ "not metioned",
846
+ "cott",
847
+ "cambridge chop house",
848
+ "bridge",
849
+ "lucky star",
850
+ "clu",
851
+ "tang chinese",
852
+ "the",
853
+ "golden house golden house",
854
+ "rice house",
855
+ "limehouse",
856
+ "clowns",
857
+ "restaurant",
858
+ "parkside pools",
859
+ "the dojo noodle bar",
860
+ "nusha",
861
+ "hobson house",
862
+ "au",
863
+ "curry queen",
864
+ "el shaddai",
865
+ "old school",
866
+ "el",
867
+ "cam",
868
+ "yes",
869
+ "gardenia",
870
+ "fin",
871
+ "efes",
872
+ "slug and lettuce",
873
+ "camboats",
874
+ "missing sock",
875
+ "grafton",
876
+ "nus",
877
+ "cambridge lodge",
878
+ "fitzbillies",
879
+ "hamilton lodge",
880
+ "gastropub",
881
+ "funky",
882
+ "cow pizza",
883
+ "ashley",
884
+ "ros",
885
+ "hobso",
886
+ "kitchen and bar",
887
+ "d",
888
+ "cityr",
889
+ "pipasha",
890
+ "seasame restaurant and bar",
891
+ "the alex",
892
+ "hu",
893
+ "one seven",
894
+ "shanghi family restaurant",
895
+ "cambridge be",
896
+ "dif",
897
+ "margherita",
898
+ "ac",
899
+ "bri",
900
+ "india",
901
+ "adden",
902
+ "ian hong house"
903
+ ],
904
+ "attraction-type": [
905
+ "museum",
906
+ "entertainment",
907
+ "college",
908
+ "nightclub",
909
+ "swimming pool",
910
+ "multiple sports",
911
+ "architecture",
912
+ "cinema",
913
+ "boat",
914
+ "theatre",
915
+ "concert hall",
916
+ "park",
917
+ "do n't care",
918
+ "local site",
919
+ "hotspot",
920
+ "church",
921
+ "special"
922
+ ],
923
+ "hospital-department": [
924
+ "paediatric clinic",
925
+ "do n't care",
926
+ "transitional care",
927
+ "acute medical assessment unit",
928
+ "neurology",
929
+ "oral and maxillofacial surgery and ent",
930
+ "infectious diseases",
931
+ "intermediate dependancy area",
932
+ "plastic and vascular surgery plastics",
933
+ "cardiology and coronary care unit",
934
+ "transplant high dependency unit",
935
+ "emergency department",
936
+ "john farman intensive care unit",
937
+ "neurology neurosurgery",
938
+ "cambridge eye unit",
939
+ "cardiology",
940
+ "respiratory medicine",
941
+ "uro",
942
+ "urology",
943
+ "surgery",
944
+ "medical decisions unit",
945
+ "gener",
946
+ "hepatobillary and gastrointestinal surgery regional referral centre",
947
+ "gastroenterology",
948
+ "haematology and haematological oncology",
949
+ "acute medicine for the elderly",
950
+ "paediatric day unit",
951
+ "oncology",
952
+ "psychiatry",
953
+ "trauma high dependency unit",
954
+ "children's surgical and medicine",
955
+ "infusion services",
956
+ "trauma and orthopaedics",
957
+ "teenage cancer trust unit",
958
+ "diabetes and endocrinology",
959
+ "medicine for the elderly",
960
+ "clinical decisions unit",
961
+ "children's oncology and haematology",
962
+ "neurosciences critical care unit",
963
+ "coronary care unit",
964
+ "clinical research facility",
965
+ "antenatal",
966
+ "hepatology",
967
+ "gynaecology",
968
+ "neurosciences",
969
+ "paediatric intensive care unit",
970
+ "haematology day unit",
971
+ "neonatal unit",
972
+ "accident",
973
+ "haematology",
974
+ "inpatient occupational therapy"
975
+ ],
976
+ "hotel-name": [
977
+ "city centre north b and b",
978
+ "express by holiday inn cambridge",
979
+ "el shaddai",
980
+ "a and b guest house",
981
+ "arbury lodge guest house",
982
+ "university arms hotel",
983
+ "kirkwood house",
984
+ "autumn house",
985
+ "gonville hotel",
986
+ "leverton house",
987
+ "acorn guest house",
988
+ "the cambridge belfry",
989
+ "ashley hotel",
990
+ "the lensfield hotel",
991
+ "finches bed and breakfast",
992
+ "worth house",
993
+ "wandlebury coutn",
994
+ "allenbell",
995
+ "rosa's bed and breakfast",
996
+ "home from home",
997
+ "avalon",
998
+ "alpha-milton guest house",
999
+ "alexander bed and breakfast",
1000
+ "cityroomz",
1001
+ "limehouse",
1002
+ "archway house",
1003
+ "warkworth house",
1004
+ "lovell lodge",
1005
+ "do n't care",
1006
+ "aylesbray lodge guest house",
1007
+ "carolina bed and breakfast",
1008
+ "huntingdon marriott hotel",
1009
+ "hobsons house",
1010
+ "hamilton lodge",
1011
+ "whale",
1012
+ "alp",
1013
+ "cambridge belfry",
1014
+ "bridge guest house",
1015
+ "gonville",
1016
+ "cambridge",
1017
+ "acorn house",
1018
+ "to",
1019
+ "n",
1020
+ "city center north",
1021
+ "caffe",
1022
+ "express by",
1023
+ "clare",
1024
+ "acorn",
1025
+ "sou",
1026
+ "north b and b",
1027
+ "a",
1028
+ "lensfield",
1029
+ "city stop rest",
1030
+ "kirkwood",
1031
+ "levert",
1032
+ "anatolia",
1033
+ "huntingdon marriot hotel",
1034
+ "cherr",
1035
+ "huntingd",
1036
+ "nusha",
1037
+ "aylesbray lodge",
1038
+ "royal spice",
1039
+ "la margherit",
1040
+ "hotel",
1041
+ "gall",
1042
+ "city roomz",
1043
+ "alexander",
1044
+ "caridge belfrey",
1045
+ "yes",
1046
+ "me",
1047
+ "nus",
1048
+ "alexander bed & breakfast",
1049
+ "the allenbell.",
1050
+ "the allenbell",
1051
+ "gra",
1052
+ "the",
1053
+ "cambridg",
1054
+ "lensfield hotel",
1055
+ "tandoori palace",
1056
+ "huntingdon hotel",
1057
+ "autumn house.",
1058
+ "doubletree by hilton cambridge",
1059
+ "ca"
1060
+ ],
1061
+ "taxi-leave at": [
1062
+ "02:45",
1063
+ "24:45",
1064
+ "08:45",
1065
+ "16:15",
1066
+ "04:45",
1067
+ "24:00",
1068
+ "12:30",
1069
+ "12:00",
1070
+ "02:30",
1071
+ "19:00",
1072
+ "19:45",
1073
+ "13:00",
1074
+ "22:15",
1075
+ "13:45",
1076
+ "15:15",
1077
+ "01:30",
1078
+ "16:45",
1079
+ "07:15",
1080
+ "20:00",
1081
+ "12:15",
1082
+ "21:00",
1083
+ "17:15",
1084
+ "08:00",
1085
+ "10:30",
1086
+ "21:15",
1087
+ "15:00",
1088
+ "05:30",
1089
+ "13:15",
1090
+ "01:15",
1091
+ "06:15",
1092
+ "01:00",
1093
+ "18:30",
1094
+ "06:45",
1095
+ "06:00",
1096
+ "07:45",
1097
+ "06:30",
1098
+ "17:45",
1099
+ "18:15",
1100
+ "19:30",
1101
+ "24:30",
1102
+ "21:30",
1103
+ "03:45",
1104
+ "21:25",
1105
+ "14:30",
1106
+ "17:00",
1107
+ "14:00",
1108
+ "04:30",
1109
+ "23:30",
1110
+ "03:30",
1111
+ "20:15",
1112
+ "24:15",
1113
+ "02:00",
1114
+ "07:00",
1115
+ "23:00",
1116
+ "08:15",
1117
+ "22:00",
1118
+ "10:15",
1119
+ "16:30",
1120
+ "02:15",
1121
+ "18:00",
1122
+ "14:15",
1123
+ "10:00",
1124
+ "17:30",
1125
+ "15:45",
1126
+ "05:45",
1127
+ "19:15",
1128
+ "20:45",
1129
+ "23:45",
1130
+ "15:30",
1131
+ "13:30",
1132
+ "11:45",
1133
+ "05:00",
1134
+ "03:15",
1135
+ "03:20",
1136
+ "07:30",
1137
+ "23:15",
1138
+ "16:00",
1139
+ "09:30",
1140
+ "after 2:30",
1141
+ "11:30",
1142
+ "09:45",
1143
+ "09:15",
1144
+ "09:00",
1145
+ "15:25",
1146
+ "08:30",
1147
+ "14:45",
1148
+ "04:00",
1149
+ "11:00",
1150
+ "22:45",
1151
+ "11:15",
1152
+ "03:00",
1153
+ "04:15",
1154
+ "1615",
1155
+ "22:30",
1156
+ "3:45",
1157
+ "21:45",
1158
+ "after 11:45",
1159
+ "05:15",
1160
+ "8:15",
1161
+ "01:45",
1162
+ "12:45",
1163
+ "10:45",
1164
+ "20:30",
1165
+ "3:15",
1166
+ "18:45",
1167
+ "thursday",
1168
+ "9:00",
1169
+ "21:04",
1170
+ "9:15",
1171
+ "6:00",
1172
+ "10:50",
1173
+ "after 15:45",
1174
+ "1:15",
1175
+ "300",
1176
+ "monday",
1177
+ "friday",
1178
+ "1"
1179
+ ],
1180
+ "taxi-destination": [
1181
+ "express by holiday inn cambridge",
1182
+ "dojo noodle bar",
1183
+ "wandlebury country park",
1184
+ "leverton house",
1185
+ "the cambridge chop house",
1186
+ "saint john's college",
1187
+ "galleria",
1188
+ "churchill college",
1189
+ "royal spice",
1190
+ "all saints church",
1191
+ "nandos city centre",
1192
+ "cote",
1193
+ "chiquito restaurant bar",
1194
+ "saint johns chop house",
1195
+ "the nirala",
1196
+ "tang chinese",
1197
+ "the junction",
1198
+ "bangkok city",
1199
+ "cambridge university botanic gardens",
1200
+ "the lucky star",
1201
+ "london liverpool street train station",
1202
+ "la raza",
1203
+ "soul tree nightclub",
1204
+ "the cow pizza kitchen and bar",
1205
+ "yippee noodle bar",
1206
+ "christ's college",
1207
+ "el shaddai",
1208
+ "castle galleries",
1209
+ "saint catharine's college",
1210
+ "riverside brasserie",
1211
+ "fitzbillies restaurant",
1212
+ "cambridge",
1213
+ "camb",
1214
+ "the golden curry",
1215
+ "wagamama",
1216
+ "jinling noodle bar",
1217
+ "maharajah tandoori restaurant",
1218
+ "little saint mary's church",
1219
+ "camboats",
1220
+ "cotto",
1221
+ "nusha",
1222
+ "acorn guest house",
1223
+ "frankie and bennys",
1224
+ "jesus green outdoor pool",
1225
+ "aylesbray lodge guest house",
1226
+ "golden wok",
1227
+ "charlie chan",
1228
+ "country folk museum",
1229
+ "huntingdon marriott hotel",
1230
+ "meze bar restaurant",
1231
+ "vue cinema",
1232
+ "adc theatre",
1233
+ "rice house",
1234
+ "graffiti",
1235
+ "saigon city",
1236
+ "city stop restaurant",
1237
+ "carolina bed and breakfast",
1238
+ "cafe jello gallery",
1239
+ "little seoul",
1240
+ "primavera",
1241
+ "kohinoor",
1242
+ "the place",
1243
+ "loch fyne",
1244
+ "rice boat",
1245
+ "kings hedges learner pool",
1246
+ "the cambridge belfry",
1247
+ "cambridge artworks",
1248
+ "pizza hut cherry hinton",
1249
+ "cambridge train station",
1250
+ "sitar tandoori",
1251
+ "the gardenia",
1252
+ "don pasquale pizzeria",
1253
+ "milton country park",
1254
+ "hamilton lodge",
1255
+ "hobsons house",
1256
+ "kirkwood house",
1257
+ "archway house",
1258
+ "the fitzwilliam museum",
1259
+ "alexander bed and breakfast",
1260
+ "cambridge museum of technology",
1261
+ "midsummer house restaurant",
1262
+ "allenbell",
1263
+ "hakka",
1264
+ "old schools",
1265
+ "ashley hotel",
1266
+ "de luca cucina and bar",
1267
+ "cambridge lodge restaurant",
1268
+ "efes restaurant",
1269
+ "bedouin",
1270
+ "club salsa",
1271
+ "bloomsbury restaurant",
1272
+ "hk fusion",
1273
+ "rajmahal",
1274
+ "lynne strover gallery",
1275
+ "abbey pool and astroturf pitch",
1276
+ "taj tandoori",
1277
+ "royal standard",
1278
+ "a and b guest house",
1279
+ "parkside police station",
1280
+ "curry garden",
1281
+ "scudamores punting co",
1282
+ "the lensfield hotel",
1283
+ "the fez club",
1284
+ "university arms hotel",
1285
+ "la margherita",
1286
+ "hotel du vin and bistro",
1287
+ "pizza express fen ditton",
1288
+ "hughes hall",
1289
+ "gonville hotel",
1290
+ "the gandhi",
1291
+ "sidney sussex college",
1292
+ "tenpin",
1293
+ "ask",
1294
+ "backstreet bistro",
1295
+ "nandos",
1296
+ "ballare",
1297
+ "ali baba",
1298
+ "india house",
1299
+ "peking restaurant",
1300
+ "meghna",
1301
+ "the river bar steakhouse and grill",
1302
+ "the cambridge punter",
1303
+ "pipasha restaurant",
1304
+ "prezzo",
1305
+ "whale of a time",
1306
+ "finches bed and breakfast",
1307
+ "avalon",
1308
+ "curry prince",
1309
+ "da vinci pizzeria",
1310
+ "corpus christi",
1311
+ "holy trinity church",
1312
+ "the varsity restaurant",
1313
+ "saffron brasserie",
1314
+ "downing college",
1315
+ "sesame restaurant and bar",
1316
+ "cambridge contemporary art",
1317
+ "addenbrookes hospital",
1318
+ "williams art and antiques",
1319
+ "pembroke college",
1320
+ "clare hall",
1321
+ "cambridge arts theatre",
1322
+ "shanghai family restaurant",
1323
+ "king's college",
1324
+ "the cherry hinton village centre",
1325
+ "cambridge and county folk museum",
1326
+ "the hotpot",
1327
+ "bridge guest house",
1328
+ "ugly duckling",
1329
+ "cocum",
1330
+ "stazione restaurant and coffee bar",
1331
+ "gourmet burger kitchen",
1332
+ "la tasca",
1333
+ "shiraz restaurant",
1334
+ "byard art",
1335
+ "sheep's green and lammas land park fen causeway",
1336
+ "caffe uno",
1337
+ "broughton house gallery",
1338
+ "the ghandi",
1339
+ "kambar",
1340
+ "the copper kettle",
1341
+ "yu garden",
1342
+ "trinity college",
1343
+ "birmingham new street train station",
1344
+ "funky fun house",
1345
+ "eraina",
1346
+ "man on the moon concert hall",
1347
+ "tandoori palace",
1348
+ "magdalene college",
1349
+ "worth house",
1350
+ "mumford theatre",
1351
+ "pizza express",
1352
+ "ely train station",
1353
+ "lan hong house",
1354
+ "mahal of cambridge",
1355
+ "pizza hut city centre",
1356
+ "golden house",
1357
+ "alpha-milton guest house",
1358
+ "regency gallery",
1359
+ "darrys cookhouse and wine shop",
1360
+ "cityroomz",
1361
+ "ta",
1362
+ "queen's college",
1363
+ "restaurant one seven",
1364
+ "arbury lodge guesthouse",
1365
+ "the cambridge corn exchange",
1366
+ "the oak bistro",
1367
+ "cambridge county fair next to the city tourist museum",
1368
+ "riverboat georgina",
1369
+ "stansted airport train station",
1370
+ "grafton hotel restaurant",
1371
+ "thanh binh",
1372
+ "autumn house",
1373
+ "restaurant two two",
1374
+ "jesus college",
1375
+ "london kings cross train station",
1376
+ "city centre north b and b",
1377
+ "cherry hinton water play",
1378
+ "travellers rest",
1379
+ "the man on the moon",
1380
+ "rosa's bed and breakfast",
1381
+ "the good luck chinese food takeaway",
1382
+ "curry king",
1383
+ "cambridge book and print gallery",
1384
+ "st johns chop house",
1385
+ "cherry hinton hall and grounds",
1386
+ "anatolia",
1387
+ "saint barnabas press gallery",
1388
+ "j restaurant",
1389
+ "parkside pools",
1390
+ "kymmoy",
1391
+ "scott polar museum",
1392
+ "cineworld cinema",
1393
+ "michaelhouse cafe",
1394
+ "cambr",
1395
+ "restaurant alimentum",
1396
+ "zizzi cambridge",
1397
+ "not museum of archaeology and anthropologymentioned",
1398
+ "gonville and caius college",
1399
+ "lovell lodge",
1400
+ "fitzwilliam museum",
1401
+ "sleeperz hotel",
1402
+ "the slug and lettuce",
1403
+ "whipple museum of the history of science",
1404
+ "broxbourne train station",
1405
+ "home from home",
1406
+ "museum of archaelogy and anthropology",
1407
+ "tandori in cambridge",
1408
+ "gastropub",
1409
+ "the anatolia",
1410
+ "kettle's yard",
1411
+ "nirala",
1412
+ "leicester train station",
1413
+ "cambridge road church of christ",
1414
+ "warkworth house",
1415
+ "megna",
1416
+ "grou",
1417
+ "sala thong",
1418
+ "gallery at twelve a high street",
1419
+ "maharajah tandoori restaurant4",
1420
+ "pizza hut fen ditton",
1421
+ "museum of classical archaeology",
1422
+ "the regent street city center",
1423
+ "gandhi",
1424
+ "emmanuel college",
1425
+ "tranh binh",
1426
+ "wankworth hotel",
1427
+ "kambur",
1428
+ "the missing sock",
1429
+ "panahar",
1430
+ "limehouse",
1431
+ "finders corner newmarket road",
1432
+ "people's portraits exhibition at girton college",
1433
+ "station road",
1434
+ "la mimosa",
1435
+ "clowns cafe",
1436
+ "bishops stortford train station",
1437
+ "hotel",
1438
+ "nil",
1439
+ "kings college",
1440
+ "restaurant",
1441
+ "attraction",
1442
+ "stevenage train station",
1443
+ "the galleria",
1444
+ "queens' college",
1445
+ "great saint mary's church",
1446
+ "theathre",
1447
+ "ruskin gallery",
1448
+ "saint barnabas",
1449
+ "peterborough train station",
1450
+ "cambridge artw2orks",
1451
+ "acorn house",
1452
+ "ca",
1453
+ "clare college",
1454
+ "shiraz.",
1455
+ "riverboat georginawd",
1456
+ "mic",
1457
+ "the gallery at twelve",
1458
+ "the soul tree",
1459
+ "finches"
1460
+ ],
1461
+ "taxi-departure": [
1462
+ "christ's college",
1463
+ "kirkwood house",
1464
+ "bridge guest house",
1465
+ "cineworld cinema",
1466
+ "gonville hotel",
1467
+ "ashley hotel",
1468
+ "arbury lodge guesthouse",
1469
+ "worth house",
1470
+ "city centre north b and b",
1471
+ "the lensfield hotel",
1472
+ "funky fun house",
1473
+ "riverboat georgina",
1474
+ "backstreet bistro",
1475
+ "the junction",
1476
+ "express by holiday inn cambridge",
1477
+ "all saints church",
1478
+ "sala thong",
1479
+ "byard art",
1480
+ "london kings cross train station",
1481
+ "la raza",
1482
+ "alexander bed and breakfast",
1483
+ "cityroomz",
1484
+ "hamilton lodge",
1485
+ "alpha-milton guest house",
1486
+ "el shaddai",
1487
+ "restaurant alimentum",
1488
+ "allenbell",
1489
+ "churchill college",
1490
+ "clare college",
1491
+ "parkside pools",
1492
+ "cambridge arts theatre",
1493
+ "frankie and bennys",
1494
+ "huntingdon marriott hotel",
1495
+ "university arms hotel",
1496
+ "acorn guest house",
1497
+ "soul tree nightclub",
1498
+ "ali baba",
1499
+ "tandoori palace",
1500
+ "saigon city",
1501
+ "zizzi cambridge",
1502
+ "wagamama",
1503
+ "the cambridge belfry",
1504
+ "milton country park",
1505
+ "a and b guest house",
1506
+ "city stop restaurant",
1507
+ "grafton hotel restaurant",
1508
+ "the man on the moon",
1509
+ "king's college",
1510
+ "great saint mary's church",
1511
+ "the oak bistro",
1512
+ "club salsa",
1513
+ "loch fyne",
1514
+ "the place",
1515
+ "la mimosa",
1516
+ "la margherita",
1517
+ "restaurant two two",
1518
+ "queens' college",
1519
+ "wandlebury country park",
1520
+ "kymmoy",
1521
+ "magdalene college",
1522
+ "royal standard",
1523
+ "kings lynn train station",
1524
+ "the fez club",
1525
+ "jesus green outdoor pool",
1526
+ "vue cinema",
1527
+ "little saint mary's church",
1528
+ "avalon",
1529
+ "aylesbray lodge guest house",
1530
+ "chinese city centre",
1531
+ "thanh binh",
1532
+ "yu garden",
1533
+ "finches bed and breakfast",
1534
+ "hakka",
1535
+ "lovell lodge",
1536
+ "kettle's yard",
1537
+ "bloomsbury restaurant",
1538
+ "museum of classical archaeology",
1539
+ "cherry hinton water play",
1540
+ "camboats",
1541
+ "pizza hut cherry hinton",
1542
+ "abbey pool and astroturf pitch",
1543
+ "pizza hut",
1544
+ "taj tandoori",
1545
+ "kings hedges learner pool",
1546
+ "nandos city centre",
1547
+ "hobsons house",
1548
+ "carolina bed and breakfast",
1549
+ "the golden curry",
1550
+ "rosa's bed and breakfast",
1551
+ "the river bar steakhouse and grill",
1552
+ "cafe jello gallery",
1553
+ "the cambridge punter",
1554
+ "the byard art museum",
1555
+ "archway house",
1556
+ "ugly duckling",
1557
+ "cherry hinton hall and grounds",
1558
+ "addenbrookes hospital",
1559
+ "graffiti",
1560
+ "cambridge artworks",
1561
+ "broughton house gallery",
1562
+ "the missing sock",
1563
+ "autumn house",
1564
+ "stazione restaurant and coffee bar",
1565
+ "whale of a time",
1566
+ "cambridge lodge restaurant",
1567
+ "saint johns chop house",
1568
+ "prezzo",
1569
+ "rice boat",
1570
+ "lan hong house",
1571
+ "leverton house",
1572
+ "kambar",
1573
+ "hotel",
1574
+ "museum of archaelogy and anthropology",
1575
+ "saint catharine's college",
1576
+ "la tasca",
1577
+ "cambridge",
1578
+ "downing college",
1579
+ "cocum",
1580
+ "mumford theatre",
1581
+ "cote",
1582
+ "golden wok",
1583
+ "cambridge university botanic gardens",
1584
+ "charlie chan",
1585
+ "corpus christi",
1586
+ "old schools",
1587
+ "cambridge belfry",
1588
+ "jinling noodle bar",
1589
+ "birmingham new street train station",
1590
+ "meze bar restaurant",
1591
+ "warkworth house",
1592
+ "pizza express",
1593
+ "gonville and caius college",
1594
+ "cambridge contemporary art",
1595
+ "primavera",
1596
+ "adc theatre",
1597
+ "bedouin",
1598
+ "w",
1599
+ "trinity college",
1600
+ "nusha",
1601
+ "the good luck chinese food takeaway",
1602
+ "travellers rest",
1603
+ "restaurant one seven",
1604
+ "pizza hut fen ditton",
1605
+ "ask",
1606
+ "cambridge and county folk museum",
1607
+ "curry prince",
1608
+ "the nirala",
1609
+ "pembroke college",
1610
+ "golden house",
1611
+ "castle galleries",
1612
+ "the fitzwilliam museum",
1613
+ "galleria",
1614
+ "jesus college",
1615
+ "curry garden",
1616
+ "anatolia",
1617
+ "the gandhi",
1618
+ "nandos",
1619
+ "st. john's college",
1620
+ "clowns cafe",
1621
+ "dojo noodle bar",
1622
+ "panahar",
1623
+ "whipple museum of the history of science",
1624
+ "royal spice",
1625
+ "clare hall",
1626
+ "gallery at twelve a high street",
1627
+ "pizza hut city centre",
1628
+ "bishops stortford train station",
1629
+ "ruskin gallery",
1630
+ "sheep's green and lammas land park fen causeway",
1631
+ "home from home",
1632
+ "parkside police station",
1633
+ "scudamores punting co",
1634
+ "the cherry hinton village centre",
1635
+ "sesame restaurant and bar",
1636
+ "broxbourne train station",
1637
+ "sidney sussex college",
1638
+ "chiquito restaurant bar",
1639
+ "cambridge train station",
1640
+ "saffron brasserie",
1641
+ "pizza express fen ditton",
1642
+ "tenpin",
1643
+ "scott polar museum",
1644
+ "rice house",
1645
+ "caffee uno",
1646
+ "cotto",
1647
+ "corpus cristi",
1648
+ "the varsity restaurant",
1649
+ "limehouse",
1650
+ "ely train station",
1651
+ "hotel du vin and bistro",
1652
+ "meghna",
1653
+ "the gardenia",
1654
+ "emmanuel college",
1655
+ "saint barnabas press gallery",
1656
+ "rajmahal",
1657
+ "lynne strover gallery",
1658
+ "cas",
1659
+ "riverside brasserie",
1660
+ "hughes hall",
1661
+ "cherry hinton village center",
1662
+ "the lucky star",
1663
+ "bangkok city",
1664
+ "kohinoor",
1665
+ "don pasquale pizzeria",
1666
+ "fitzbillies restaurant",
1667
+ "acorn house",
1668
+ "curry queen",
1669
+ "ballare",
1670
+ "the cambridge corn exchange",
1671
+ "lens",
1672
+ "cambridge museum of technology",
1673
+ "the cambridge chop house",
1674
+ "peterborough train station",
1675
+ "london liverpool street",
1676
+ "the copper kettle",
1677
+ "holy trinity church",
1678
+ "the slug and lettuce",
1679
+ "williams art and antiques",
1680
+ "the avalon",
1681
+ "junction theatre",
1682
+ "yippee noodle bar",
1683
+ "da vinci pizzeria",
1684
+ "maharajah tandoori restaurant",
1685
+ "darrys cookhouse and wine shop",
1686
+ "michaelhouse cafe",
1687
+ "tang chinese",
1688
+ "peking restaurant",
1689
+ "saint john's college",
1690
+ "aylesbray lodge",
1691
+ "the alexander bed and breakfast",
1692
+ "ely",
1693
+ "cambridge belfy",
1694
+ "kings college",
1695
+ "eraina",
1696
+ "people's portraits exhibition at girton college",
1697
+ "gonville",
1698
+ "caffe uno",
1699
+ "the cow pizza kitchen and bar",
1700
+ "mahal of cambridge",
1701
+ "lovell ldoge",
1702
+ "alyesbray lodge hotel",
1703
+ "g",
1704
+ "cambridge chop house",
1705
+ "j restaurant",
1706
+ "172 chestertown road",
1707
+ "little seoul",
1708
+ "stevenage train station",
1709
+ "downing street",
1710
+ "gourmet burger kitchen",
1711
+ "cambridge towninfo centre",
1712
+ "citiroomz",
1713
+ "de luca cucina and bar",
1714
+ "london liverpool street train station",
1715
+ "cinema",
1716
+ "museum",
1717
+ "shiraz restaurant",
1718
+ "clair hall",
1719
+ "sitar tandoori",
1720
+ "ca",
1721
+ "cambridge book and print gallery",
1722
+ "norwich train station",
1723
+ "home",
1724
+ "regency gallery",
1725
+ "nstaot mentioned",
1726
+ "new england",
1727
+ "the hotpot",
1728
+ "park",
1729
+ "07:15",
1730
+ "the allenbell"
1731
+ ],
1732
+ "restaurant-book time": [
1733
+ "19:45",
1734
+ "13:45",
1735
+ "10:15",
1736
+ "19:15",
1737
+ "11:30",
1738
+ "10:30",
1739
+ "18:45",
1740
+ "13:30",
1741
+ "15:00",
1742
+ "11:45",
1743
+ "12:00",
1744
+ "15:15",
1745
+ "16:45",
1746
+ "15:45",
1747
+ "17:15",
1748
+ "19:30",
1749
+ "14:00",
1750
+ "10:45",
1751
+ "17:30",
1752
+ "16:30",
1753
+ "17:00",
1754
+ "12:30",
1755
+ "18:15",
1756
+ "18:00",
1757
+ "20:15",
1758
+ "12:45",
1759
+ "14:15",
1760
+ "13:15",
1761
+ "10:00",
1762
+ "16:00",
1763
+ "19:00",
1764
+ "12:15",
1765
+ "11:00",
1766
+ "11:15",
1767
+ "15:30",
1768
+ "14:30",
1769
+ "18:30",
1770
+ "14:45",
1771
+ "17:45",
1772
+ "09:15",
1773
+ "09:45",
1774
+ "16:15",
1775
+ "13:00",
1776
+ "20:00",
1777
+ "21:00",
1778
+ "20:30",
1779
+ "20:45",
1780
+ "1545",
1781
+ "1745",
1782
+ "09:00",
1783
+ "not given",
1784
+ "do n't care",
1785
+ "13:10",
1786
+ "21:45",
1787
+ "08:45",
1788
+ "09:30"
1789
+ ],
1790
+ "restaurant-book day": [
1791
+ "thursday",
1792
+ "wednesday",
1793
+ "friday",
1794
+ "monday",
1795
+ "sunday",
1796
+ "saturday",
1797
+ "tuesday",
1798
+ "thur",
1799
+ "not given",
1800
+ "w"
1801
+ ],
1802
+ "restaurant-book people": [
1803
+ "2",
1804
+ "3",
1805
+ "1",
1806
+ "5",
1807
+ "6",
1808
+ "4",
1809
+ "7",
1810
+ "8"
1811
+ ],
1812
+ "taxi-arrive by": [
1813
+ "19:15",
1814
+ "15:45",
1815
+ "17:15",
1816
+ "17:30",
1817
+ "17:00",
1818
+ "12:30",
1819
+ "19:30",
1820
+ "12:45",
1821
+ "18:00",
1822
+ "13:30",
1823
+ "13:15",
1824
+ "17:45",
1825
+ "11:15",
1826
+ "14:30",
1827
+ "14:45",
1828
+ "11:45",
1829
+ "09:15",
1830
+ "16:45",
1831
+ "16:15",
1832
+ "01:30",
1833
+ "12:15",
1834
+ "06:45",
1835
+ "01:00",
1836
+ "09:30",
1837
+ "12:00",
1838
+ "11:30",
1839
+ "18:30",
1840
+ "15:30",
1841
+ "18:45",
1842
+ "14:00",
1843
+ "21:00",
1844
+ "15:00",
1845
+ "08:15",
1846
+ "10:15",
1847
+ "19:00",
1848
+ "20:15",
1849
+ "11:00",
1850
+ "15:15",
1851
+ "05:15",
1852
+ "16:30",
1853
+ "21:30",
1854
+ "08:00",
1855
+ "20:00",
1856
+ "20:30",
1857
+ "20:45",
1858
+ "10:45",
1859
+ "13:00",
1860
+ "09:00",
1861
+ "21:45",
1862
+ "16:00",
1863
+ "19:45",
1864
+ "16;15",
1865
+ "6:00",
1866
+ "10:30",
1867
+ "23:15",
1868
+ "13:45",
1869
+ "14:15",
1870
+ "18:15",
1871
+ "04:00",
1872
+ "24:45",
1873
+ "07:00",
1874
+ "04:15",
1875
+ "23:00",
1876
+ "3:00",
1877
+ "02:45",
1878
+ "10:00",
1879
+ "07:15",
1880
+ "24:15",
1881
+ "04:45",
1882
+ "01:15",
1883
+ "06:30",
1884
+ "23:30",
1885
+ "06:15",
1886
+ "21:15",
1887
+ "07:30",
1888
+ "02:00",
1889
+ "22:30",
1890
+ "24:00",
1891
+ "02:15",
1892
+ "1:00",
1893
+ "03:15",
1894
+ "5:30",
1895
+ "05:00",
1896
+ "1145",
1897
+ "03:30",
1898
+ "01:45",
1899
+ "22:15",
1900
+ "03:45",
1901
+ "09:45",
1902
+ "03:00",
1903
+ "06:00",
1904
+ "05:30",
1905
+ "17:05",
1906
+ "1730",
1907
+ "02:30",
1908
+ "22:00",
1909
+ "04:30",
1910
+ "1700",
1911
+ "24:30",
1912
+ "15:23",
1913
+ "08:30"
1914
+ ],
1915
+ "bus-departure": [
1916
+ "cambridge"
1917
+ ],
1918
+ "bus-destination": [
1919
+ "london kings cross",
1920
+ "bishops stortford",
1921
+ "cambridge",
1922
+ "kohinoor"
1923
+ ],
1924
+ "bus-leaveAt": [
1925
+ "21:45"
1926
+ ],
1927
+ "bus-day": [
1928
+ "wednesday"
1929
+ ]
1930
+ }
data/raw/UBAR/db/police_db.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "Parkside Police Station",
4
+ "address": "Parkside, Cambridge",
5
+ "id": 0,
6
+ "phone": "01223358966"
7
+ }
8
+ ]
data/raw/UBAR/db/police_db_processed.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": 0,
4
+ "name": "parkside police station",
5
+ "address": "parkside , cambridge",
6
+ "phone": "01223358966"
7
+ }
8
+ ]
data/raw/UBAR/db/restaurant-dbase.db ADDED
Binary file (41 kB). View file
 
data/raw/UBAR/db/restaurant_db.json ADDED
@@ -0,0 +1,1761 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "address": "Regent Street City Centre",
4
+ "area": "centre",
5
+ "food": "italian",
6
+ "id": "19210",
7
+ "introduction": "Pizza hut is a large chain with restaurants nationwide offering convenience pizzas pasta and salads to eat in or take away",
8
+ "location": [
9
+ 52.20103,
10
+ 0.126023
11
+ ],
12
+ "name": "pizza hut city centre",
13
+ "phone": "01223323737",
14
+ "postcode": "cb21ab",
15
+ "pricerange": "cheap",
16
+ "type": "restaurant"
17
+ },
18
+ {
19
+ "address": "Finders Corner Newmarket Road",
20
+ "area": "east",
21
+ "food": "international",
22
+ "id": "30650",
23
+ "introduction": "",
24
+ "location": [
25
+ 52.21768,
26
+ 0.224907
27
+ ],
28
+ "name": "the missing sock",
29
+ "phone": "01223812660",
30
+ "postcode": "cb259aq",
31
+ "pricerange": "cheap",
32
+ "signature": "african babooti",
33
+ "type": "restaurant"
34
+ },
35
+ {
36
+ "address": "106 Regent Street City Centre",
37
+ "area": "centre",
38
+ "food": "indian",
39
+ "id": "19214",
40
+ "introduction": "curry garden serves traditional indian and bangladeshi cuisine cooked with fresh produce delivered every day",
41
+ "location": [
42
+ 52.200187,
43
+ 0.126407
44
+ ],
45
+ "name": "curry garden",
46
+ "phone": "01223302330",
47
+ "postcode": "cb21dp",
48
+ "pricerange": "expensive",
49
+ "type": "restaurant"
50
+ },
51
+ {
52
+ "address": "82 Cherry Hinton Road Cherry Hinton",
53
+ "area": "south",
54
+ "food": "chinese",
55
+ "id": "19192",
56
+ "location": [
57
+ 52.188528,
58
+ 0.140627
59
+ ],
60
+ "name": "the good luck chinese food takeaway",
61
+ "phone": "01223244149",
62
+ "postcode": "cb17ag",
63
+ "pricerange": "expensive",
64
+ "type": "restaurant"
65
+ },
66
+ {
67
+ "address": "G4 Cambridge Leisure Park Clifton Way Cherry Hinton",
68
+ "area": "south",
69
+ "food": "italian",
70
+ "id": "19196",
71
+ "introduction": "pizza hut is a large chain with restaurants nationwide offering convenience pizzas pasta and salads to eat in or take away",
72
+ "location": [
73
+ 52.190176,
74
+ 0.13699
75
+ ],
76
+ "name": "pizza hut cherry hinton",
77
+ "phone": "01223323737",
78
+ "postcode": "cb17dy",
79
+ "pricerange": "moderate",
80
+ "type": "restaurant"
81
+ },
82
+ {
83
+ "address": "64 Cherry Hinton Road Cherry Hinton",
84
+ "area": "south",
85
+ "food": "indian",
86
+ "id": "19191",
87
+ "introduction": "taj tandoori serves a variety of indian dishes to eat in or take away catering for private parties of up to 50 guests is available upon request",
88
+ "location": [
89
+ 52.188747,
90
+ 0.138941
91
+ ],
92
+ "name": "taj tandoori",
93
+ "phone": "01223412299",
94
+ "postcode": "cb17aa",
95
+ "pricerange": "expensive",
96
+ "type": "restaurant"
97
+ },
98
+ {
99
+ "address": "152 - 154 Hills Road",
100
+ "area": "south",
101
+ "food": "modern european",
102
+ "id": "14731",
103
+ "introduction": "",
104
+ "location": [
105
+ 52.18889,
106
+ 0.13589
107
+ ],
108
+ "name": "restaurant alimentum",
109
+ "phone": "01223413000",
110
+ "postcode": "cb28pb",
111
+ "pricerange": "moderate",
112
+ "signature": "slowroast sirloin of beef red onion celeriac and garlic",
113
+ "type": "restaurant"
114
+ },
115
+ {
116
+ "address": "529 Newmarket Road Fen Ditton",
117
+ "area": "east",
118
+ "food": "chinese",
119
+ "id": "19273",
120
+ "introduction": "yu garden serves authentic chinese cuisine",
121
+ "location": [
122
+ 52.212992,
123
+ 0.157569
124
+ ],
125
+ "name": "yu garden",
126
+ "phone": "01223248882",
127
+ "postcode": "cb58pa",
128
+ "pricerange": "expensive",
129
+ "type": "restaurant"
130
+ },
131
+ {
132
+ "address": "Market Hill City Centre",
133
+ "area": "centre",
134
+ "food": "italian",
135
+ "id": "19240",
136
+ "location": [
137
+ 52.205442,
138
+ 0.119706
139
+ ],
140
+ "name": "stazione restaurant and coffee bar",
141
+ "phone": "01223352607",
142
+ "postcode": "cb23nj",
143
+ "pricerange": "expensive",
144
+ "type": "restaurant"
145
+ },
146
+ {
147
+ "address": "451 Newmarket Road Fen Ditton",
148
+ "area": "east",
149
+ "food": "indian",
150
+ "id": "19270",
151
+ "introduction": "curry prince is a neighbourhood indian restaurant serving authentic cuisine",
152
+ "location": [
153
+ 52.213072,
154
+ 0.149771
155
+ ],
156
+ "name": "curry prince",
157
+ "phone": "01223566388",
158
+ "postcode": "cb58jj",
159
+ "pricerange": "moderate",
160
+ "type": "restaurant"
161
+ },
162
+ {
163
+ "address": "Regent Street City Centre",
164
+ "area": "centre",
165
+ "food": "chinese",
166
+ "id": "19212",
167
+ "introduction": "charlie chan serves a variety of popular chinese dishes at their restaurant",
168
+ "location": [
169
+ 52.201743,
170
+ 0.124843
171
+ ],
172
+ "name": "charlie chan",
173
+ "phone": "01223361763",
174
+ "postcode": "cb21db",
175
+ "pricerange": "cheap",
176
+ "type": "restaurant"
177
+ },
178
+ {
179
+ "address": "Free School Lane City Centre",
180
+ "area": "centre",
181
+ "food": "european",
182
+ "id": "19245",
183
+ "introduction": "eraina serves a variety of drinks and european dishes with influences from france spain italy and greece catering for vegetarians is also provided",
184
+ "location": [
185
+ 52.203708,
186
+ 0.119082
187
+ ],
188
+ "name": "eraina",
189
+ "phone": "01223368786",
190
+ "postcode": "cb23rh",
191
+ "pricerange": "expensive",
192
+ "type": "restaurant"
193
+ },
194
+ {
195
+ "address": "Regent Street City Centre",
196
+ "area": "centre",
197
+ "food": "italian",
198
+ "id": "19213",
199
+ "introduction": "the simple menu and kitchen concept at pizza express has retained its freshly made ideal and you can still watch your pizza being prepared for you",
200
+ "location": [
201
+ 52.201743,
202
+ 0.124843
203
+ ],
204
+ "name": "pizza express",
205
+ "phone": "01223324033",
206
+ "postcode": "cb21db",
207
+ "pricerange": "moderate",
208
+ "type": "restaurant"
209
+ },
210
+ {
211
+ "address": "De Vere University Arms Regent Street City Centre",
212
+ "area": "centre",
213
+ "food": "british",
214
+ "id": "19211",
215
+ "introduction": "adjoining the de vere university arms restaurant one seven is located at the forefront of regent street, and provides a birds eye view to take in the hustle and bustle of the busy city. Enjoy beautifully created food which is always complemented by a fine selection of wines in a truly relaxing and contemporary atmosphere",
216
+ "location": [
217
+ 52.20103,
218
+ 0.126023
219
+ ],
220
+ "name": "restaurant one seven",
221
+ "phone": "01223337766",
222
+ "postcode": "cb21ab",
223
+ "pricerange": "moderate",
224
+ "type": "restaurant"
225
+ },
226
+ {
227
+ "address": "12 Bridge Street City Centre",
228
+ "area": "centre",
229
+ "food": "italian",
230
+ "id": "19229",
231
+ "introduction": "ask is a leading name in the uk casual dining market with over 100 restaurants across the uk. ask is the perfect place to relax and enjoy mouthwatering risottos an extended range of hearty al forno dishes and all your favourite pastas pizzas and salads",
232
+ "location": [
233
+ 52.209028,
234
+ 0.118296
235
+ ],
236
+ "name": "ask restaurant",
237
+ "phone": "01223364917",
238
+ "postcode": "cb21uf",
239
+ "pricerange": "cheap",
240
+ "type": "restaurant"
241
+ },
242
+ {
243
+ "address": "11 Peas Hill City Centre",
244
+ "area": "centre",
245
+ "food": "chinese",
246
+ "id": "19242",
247
+ "introduction": "jinling noodle bar serves a wide range of chinese and shanghai dishes reflecting many different flavours and ingredients",
248
+ "location": [
249
+ 52.204453,
250
+ 0.118693
251
+ ],
252
+ "name": "jinling noodle bar",
253
+ "phone": "01223566188",
254
+ "postcode": "cb23pp",
255
+ "pricerange": "moderate",
256
+ "type": "restaurant"
257
+ },
258
+ {
259
+ "address": "83 Regent Street",
260
+ "area": "centre",
261
+ "food": "modern european",
262
+ "id": "3697",
263
+ "introduction": "de luca cucina bar in the heart of cambridge is a stylish spot to enjoy food, wine, cocktails and coffee all in a vibrant atmosphere. The cocktail bar at the front is perfect for coffee and light meals in the day and cocktails in the evening. An open kitchen provides real excitement with head chef darren kiegher and his team preparing simply delicious italian food using locally sourced ingredients.",
264
+ "location": [
265
+ 52.2002,
266
+ 0.1268
267
+ ],
268
+ "name": "de luca cucina and bar",
269
+ "phone": "01223356666",
270
+ "postcode": "cb21aw",
271
+ "pricerange": "moderate",
272
+ "signature": "roasted barbary duck breast served with sweet potato wedges and mange tout with a red wine sauce",
273
+ "type": "restaurant"
274
+ },
275
+ {
276
+ "address": "2 Sturton Street City Centre",
277
+ "area": "centre",
278
+ "food": "gastropub",
279
+ "id": "19188",
280
+ "introduction": "the backstreet bistro is a gastropub with a separate bar area serving a couple of good real ales and a dining room serving modern european food. There is a decked area to sit out in during the summer months",
281
+ "location": [
282
+ 52.202449,
283
+ 0.141062
284
+ ],
285
+ "name": "backstreet bistro",
286
+ "phone": "01223306306",
287
+ "postcode": "cb12qa",
288
+ "pricerange": "expensive",
289
+ "type": "restaurant"
290
+ },
291
+ {
292
+ "address": "68 Histon Road Chesterton",
293
+ "area": "west",
294
+ "food": "indian",
295
+ "id": "19266",
296
+ "introduction": "tandoori palace serve a variety of indian and bangladeshi dishes and can cater for private parties of up to 110 guests upon request",
297
+ "location": [
298
+ 52.215486,
299
+ 0.111167
300
+ ],
301
+ "name": "tandoori palace",
302
+ "phone": "01223506055",
303
+ "postcode": "cb43le",
304
+ "pricerange": "expensive",
305
+ "type": "restaurant"
306
+ },
307
+ {
308
+ "address": "Doubletree by Hilton Cambridge Granta Place Mill Lane",
309
+ "area": "centre",
310
+ "food": "modern european",
311
+ "id": "10347",
312
+ "introduction": "",
313
+ "location": [
314
+ 52.20025,
315
+ 0.11659
316
+ ],
317
+ "name": "riverside brasserie",
318
+ "phone": "01223259988",
319
+ "postcode": "cb21rt",
320
+ "pricerange": "moderate",
321
+ "type": "restaurant"
322
+ },
323
+ {
324
+ "address": "74 Mill Road City Centre",
325
+ "area": "centre",
326
+ "food": "indian",
327
+ "id": "19180",
328
+ "introduction": "kohinoor serves a variety of indian and vegetarian dishes at their restaurant a takeaway and delivery service is also available",
329
+ "location": [
330
+ 52.200422,
331
+ 0.135784
332
+ ],
333
+ "name": "kohinoor",
334
+ "phone": "01223323639",
335
+ "postcode": "cb12as",
336
+ "pricerange": "cheap",
337
+ "type": "restaurant"
338
+ },
339
+ {
340
+ "address": "2G Cambridge Leisure Park Cherry Hinton Road Cherry Hinton",
341
+ "area": "south",
342
+ "food": "mexican",
343
+ "id": "19194",
344
+ "introduction": "chiquito is a chain of inexpensive tex mex restaurants predominantly aimed at tourists. They serve a variety of mexican and north of the border food as well as a range of cocktails",
345
+ "location": [
346
+ 52.190176,
347
+ 0.13699
348
+ ],
349
+ "name": "chiquito restaurant bar",
350
+ "phone": "01223400170",
351
+ "postcode": "cb17dy",
352
+ "pricerange": "expensive",
353
+ "type": "restaurant"
354
+ },
355
+ {
356
+ "address": "21 - 24 Northampton Road",
357
+ "area": "west",
358
+ "food": "italian",
359
+ "id": "12700",
360
+ "introduction": "",
361
+ "location": [
362
+ 52.21032,
363
+ 0.11367
364
+ ],
365
+ "name": "prezzo",
366
+ "phone": "01799521260",
367
+ "postcode": "cb30ad",
368
+ "pricerange": "moderate",
369
+ "type": "restaurant"
370
+ },
371
+ {
372
+ "address": "88 Mill Road City Centre",
373
+ "area": "centre",
374
+ "food": "chinese",
375
+ "id": "19185",
376
+ "introduction": "rice house serve a variety of popular chinese dishes at their restaurant",
377
+ "location": [
378
+ 52.199332,
379
+ 0.138395
380
+ ],
381
+ "name": "rice house",
382
+ "phone": "01223367755",
383
+ "postcode": "cb12bd",
384
+ "pricerange": "cheap",
385
+ "type": "restaurant"
386
+ },
387
+ {
388
+ "address": "59 Hills Road City Centre",
389
+ "area": "centre",
390
+ "food": "lebanese",
391
+ "id": "19221",
392
+ "location": [
393
+ 52.195416,
394
+ 0.13114
395
+ ],
396
+ "name": "ali baba",
397
+ "phone": "01462432565",
398
+ "postcode": "cb21nt",
399
+ "pricerange": "moderate",
400
+ "type": "restaurant"
401
+ },
402
+ {
403
+ "address": "35 Saint Andrews Street City Centre",
404
+ "area": "centre",
405
+ "food": "international",
406
+ "id": "19235",
407
+ "introduction": "the varsity restaurant serves a variety of international and vegetarian dishes and can cater for private parties of up to 40 guests upon request",
408
+ "location": [
409
+ 52.202793,
410
+ 0.123488
411
+ ],
412
+ "name": "the varsity restaurant",
413
+ "phone": "01223356060",
414
+ "postcode": "cb23ar",
415
+ "pricerange": "moderate",
416
+ "type": "restaurant"
417
+ },
418
+ {
419
+ "address": "40270 King Street City Centre",
420
+ "area": "centre",
421
+ "food": "modern european",
422
+ "id": "19177",
423
+ "introduction": "darrys cookhouse and wine shop is an award winning drinking and dining restaurant and bar in the centre of cambridge",
424
+ "location": [
425
+ 52.207312,
426
+ 0.124201
427
+ ],
428
+ "name": "darrys cookhouse and wine shop",
429
+ "phone": "01223505015",
430
+ "postcode": "cb11ln",
431
+ "pricerange": "expensive",
432
+ "type": "restaurant"
433
+ },
434
+ {
435
+ "address": "Mill Road City Centre",
436
+ "area": "centre",
437
+ "food": "indian",
438
+ "id": "19182",
439
+ "introduction": "the golden curry serves a variety of authentic indian dishes at their fully licensed restaurant",
440
+ "location": [
441
+ 52.199289,
442
+ 0.13974
443
+ ],
444
+ "name": "the golden curry",
445
+ "phone": "01223329432",
446
+ "postcode": "cb12az",
447
+ "pricerange": "expensive",
448
+ "type": "restaurant"
449
+ },
450
+ {
451
+ "address": "71 Castle Street City Centre",
452
+ "area": "west",
453
+ "food": "indian",
454
+ "id": "19249",
455
+ "introduction": "cocum specialises in south indian cuisine using spices meat and vegetables from the kerala region there is also a take away option",
456
+ "location": [
457
+ 52.212444,
458
+ 0.112823
459
+ ],
460
+ "name": "cocum",
461
+ "phone": "01223366668",
462
+ "postcode": "cb30ah",
463
+ "pricerange": "expensive",
464
+ "type": "restaurant"
465
+ },
466
+ {
467
+ "address": "St. Michael's Church Trinity Street City Centre",
468
+ "area": "centre",
469
+ "food": "european",
470
+ "id": "19227",
471
+ "introduction": "digby trout is a chain of restaurants that are located in many of london's premier tourist attractions. they serve modern european cuisine and are open for lunch and dinner. situated in st michaels church, michaelhouse cafe serves coffee sandwiches and lunch from a regularly changing menu",
472
+ "location": [
473
+ 52.20608,
474
+ 0.118215
475
+ ],
476
+ "name": "michaelhouse cafe",
477
+ "phone": "01223309147",
478
+ "postcode": "cb21su",
479
+ "pricerange": "expensive",
480
+ "type": "restaurant"
481
+ },
482
+ {
483
+ "address": "37 Newnham Road Newnham",
484
+ "area": "west",
485
+ "food": "indian",
486
+ "id": "19255",
487
+ "introduction": "the rice boat serves an authentic kind of indian cuisine that originates from the villages of kerala where the spice trade originated",
488
+ "location": [
489
+ 52.199012,
490
+ 0.113196
491
+ ],
492
+ "name": "rice boat",
493
+ "phone": "01223302800",
494
+ "postcode": "cb39ey",
495
+ "pricerange": "expensive",
496
+ "type": "restaurant"
497
+ },
498
+ {
499
+ "address": "15 - 19 Trumpington Street",
500
+ "area": "centre",
501
+ "food": "european",
502
+ "id": "4607",
503
+ "introduction": "",
504
+ "location": [
505
+ 52.19934,
506
+ 0.12146
507
+ ],
508
+ "name": "hotel du vin and bistro",
509
+ "phone": "01223227330",
510
+ "postcode": "cb21qa",
511
+ "pricerange": "moderate",
512
+ "signature": "",
513
+ "type": "restaurant"
514
+ },
515
+ {
516
+ "address": "41518 Castle Street City Centre",
517
+ "area": "west",
518
+ "food": "indian",
519
+ "id": "19250",
520
+ "introduction": "maharajah tandoori restaurant serve a variety of indian and tandoori dishes at their restaurant catering for private parties of up to 40 guests is available upon request",
521
+ "location": [
522
+ 52.212444,
523
+ 0.112823
524
+ ],
525
+ "name": "maharajah tandoori restaurant",
526
+ "phone": "01223358399",
527
+ "postcode": "cb30ah",
528
+ "pricerange": "expensive",
529
+ "type": "restaurant"
530
+ },
531
+ {
532
+ "address": "Crowne Plaza Hotel 20 Downing Street",
533
+ "area": "centre",
534
+ "food": "international",
535
+ "id": "14742",
536
+ "introduction": "",
537
+ "location": [
538
+ 52.20342,
539
+ 0.12171
540
+ ],
541
+ "name": "bloomsbury restaurant",
542
+ "phone": "08719429180",
543
+ "postcode": "cb23dt",
544
+ "pricerange": "moderate",
545
+ "signature": "coconut and red chilli monkfish",
546
+ "type": "restaurant"
547
+ },
548
+ {
549
+ "address": "17 Magdalene Street City Centre",
550
+ "area": "west",
551
+ "food": "vietnamese",
552
+ "id": "19248",
553
+ "introduction": "thanh binh serve a variety of vietnamese dishes as well as selling an assortment of tea and coffees",
554
+ "location": [
555
+ 52.210226,
556
+ 0.115646
557
+ ],
558
+ "name": "thanh binh",
559
+ "phone": "01223362456",
560
+ "postcode": "cb30af",
561
+ "pricerange": "cheap",
562
+ "type": "restaurant"
563
+ },
564
+ {
565
+ "address": "14 -16 Bridge Street",
566
+ "area": "centre",
567
+ "food": "spanish",
568
+ "id": "12566",
569
+ "introduction": "la tasca is a spanish tapas restaurant and bar offering over 30 tapas dishes",
570
+ "location": [
571
+ 52.20903,
572
+ 0.1183
573
+ ],
574
+ "name": "la tasca",
575
+ "phone": "01223464630",
576
+ "postcode": "cb21uf",
577
+ "pricerange": "moderate",
578
+ "type": "restaurant"
579
+ },
580
+ {
581
+ "address": "20 Milton Road Chesterton",
582
+ "area": "north",
583
+ "food": "italian",
584
+ "id": "19259",
585
+ "introduction": "da Vinci pizzeria serve an extensive range of pizza and italian dishes as well as some vegetarian options a takeaway and delivery service is also available",
586
+ "location": [
587
+ 52.215311,
588
+ 0.12593
589
+ ],
590
+ "name": "da vinci pizzeria",
591
+ "phone": "01223351707",
592
+ "postcode": "cb41jy",
593
+ "pricerange": "cheap",
594
+ "type": "restaurant"
595
+ },
596
+ {
597
+ "address": "22 Chesterton Road Chesterton",
598
+ "area": "north",
599
+ "food": "french",
600
+ "id": "19264",
601
+ "location": [
602
+ 52.213742,
603
+ 0.1242
604
+ ],
605
+ "name": "restaurant two two",
606
+ "phone": "01223351880",
607
+ "postcode": "cb43ax",
608
+ "pricerange": "expensive",
609
+ "type": "restaurant"
610
+ },
611
+ {
612
+ "address": "12 St. Johns Street City Centre",
613
+ "area": "centre",
614
+ "food": "chinese",
615
+ "id": "19228",
616
+ "introduction": "ugly duckling serves a variety of chinese dishes to eat in or take away they also offer 10 percent discount on takeaway orders",
617
+ "location": [
618
+ 52.208055,
619
+ 0.118397
620
+ ],
621
+ "name": "ugly duckling",
622
+ "postcode": "cb21tw",
623
+ "pricerange": "expensive",
624
+ "type": "restaurant"
625
+ },
626
+ {
627
+ "address": "36 Saint Andrews Street",
628
+ "area": "centre",
629
+ "food": "japanese",
630
+ "id": "12638",
631
+ "introduction": "",
632
+ "location": [
633
+ 52.203,
634
+ 0.12375
635
+ ],
636
+ "name": "wagamama",
637
+ "phone": "01223462354",
638
+ "postcode": "cb23ar",
639
+ "pricerange": "expensive",
640
+ "type": "restaurant"
641
+ },
642
+ {
643
+ "address": "12 Norfolk Street City Centre",
644
+ "area": "centre",
645
+ "food": "chinese",
646
+ "id": "19186",
647
+ "introduction": "lan hong house serves great value home cooked authentic chinese food with over two five dishes available from the buffet",
648
+ "location": [
649
+ 52.204609,
650
+ 0.137976
651
+ ],
652
+ "name": "lan hong house",
653
+ "phone": "01223350420",
654
+ "postcode": "cb12lf",
655
+ "pricerange": "moderate",
656
+ "type": "restaurant"
657
+ },
658
+ {
659
+ "address": "Cambridge Leisure Park Clifton Way",
660
+ "area": "south",
661
+ "food": "portuguese",
662
+ "id": "12238",
663
+ "introduction": "It's Nandos",
664
+ "location": [
665
+ 52.19017,
666
+ 0.13699
667
+ ],
668
+ "name": "nandos",
669
+ "phone": "01223327908",
670
+ "postcode": "cb17dy",
671
+ "pricerange": "cheap",
672
+ "type": "restaurant"
673
+ },
674
+ {
675
+ "address": "6 Lensfield Road",
676
+ "area": "centre",
677
+ "food": "british",
678
+ "id": "13071",
679
+ "introduction": "",
680
+ "location": [
681
+ 52.1987,
682
+ 0.12578
683
+ ],
684
+ "name": "the oak bistro",
685
+ "phone": "01223323361",
686
+ "postcode": "cb21eg",
687
+ "pricerange": "moderate",
688
+ "signature": "chargrilled rib eye steak with truffle butter mixed salad and fries",
689
+ "type": "restaurant"
690
+ },
691
+ {
692
+ "address": "4 Kings Parade City Centre",
693
+ "area": "centre",
694
+ "food": "british",
695
+ "id": "19226",
696
+ "introduction": "the copper kettle serve a variety of english dishes at their restaurant including full english breakfasts lunches, roast dinners and baked potatoes. a takeaway menu is also provided",
697
+ "location": [
698
+ 52.204387,
699
+ 0.117841
700
+ ],
701
+ "name": "the copper kettle",
702
+ "phone": "01223365068",
703
+ "postcode": "cb21sj",
704
+ "pricerange": "moderate",
705
+ "type": "restaurant"
706
+ },
707
+ {
708
+ "address": "Cambridge Leisure Park Clifton Way Cherry Hinton",
709
+ "area": "south",
710
+ "food": "chinese",
711
+ "id": "19197",
712
+ "location": [
713
+ 52.190176,
714
+ 0.13699
715
+ ],
716
+ "name": "the lucky star",
717
+ "phone": "01223244277",
718
+ "postcode": "cb17dy",
719
+ "pricerange": "cheap",
720
+ "type": "restaurant"
721
+ },
722
+ {
723
+ "address": "51 Trumpington Street City Centre",
724
+ "area": "centre",
725
+ "food": "british",
726
+ "id": "19224",
727
+ "introduction": "fitzbillies restaurant serves a variety of bistro style lunches, anglo-european a la carte evening meals, as well as teas coffees and cakes throughout the day. catering for private parties is available upon request",
728
+ "location": [
729
+ 52.202598,
730
+ 0.118342
731
+ ],
732
+ "name": "fitzbillies restaurant",
733
+ "phone": "01223352500",
734
+ "postcode": "cb21rg",
735
+ "pricerange": "expensive",
736
+ "type": "restaurant"
737
+ },
738
+ {
739
+ "address": "108 Regent Street City Centre",
740
+ "area": "centre",
741
+ "food": "korean",
742
+ "id": "19216",
743
+ "introduction": "little seoul offer a variety of korean cuisine for lunch and dinner",
744
+ "location": [
745
+ 52.200187,
746
+ 0.126407
747
+ ],
748
+ "name": "little seoul",
749
+ "phone": "01223308681",
750
+ "postcode": "cb21dp",
751
+ "pricerange": "expensive",
752
+ "type": "restaurant"
753
+ },
754
+ {
755
+ "address": "196 Mill Road City Centre",
756
+ "area": "centre",
757
+ "food": "turkish",
758
+ "id": "19189",
759
+ "introduction": "meze is a restaurant and bar that serves tasty and fresh turkish cuisine set in an informal relaxed atmosphere the bar area also serves a wide range of beers wines and spirits",
760
+ "location": [
761
+ 52.197349,
762
+ 0.145075
763
+ ],
764
+ "name": "meze bar",
765
+ "postcode": "cb13nf",
766
+ "pricerange": "expensive",
767
+ "type": "restaurant"
768
+ },
769
+ {
770
+ "address": "40210 Millers Yard City Centre",
771
+ "area": "centre",
772
+ "food": "asian oriental",
773
+ "id": "19225",
774
+ "introduction": "dojo noodle bar serves a variety of japanese chinese vietnamese korean and malaysian dishes to eat in or take away sister restaurant to touzai",
775
+ "location": [
776
+ 52.201423,
777
+ 0.116661
778
+ ],
779
+ "name": "dojo noodle bar",
780
+ "phone": "01223363471",
781
+ "postcode": "cb21rq",
782
+ "pricerange": "cheap",
783
+ "type": "restaurant"
784
+ },
785
+ {
786
+ "address": "15 Magdalene Street City Centre",
787
+ "area": "west",
788
+ "food": "italian",
789
+ "id": "19247",
790
+ "introduction": "la margherita serve a variety of italian and vegetarian dishes at their restaurant",
791
+ "location": [
792
+ 52.210226,
793
+ 0.115646
794
+ ],
795
+ "name": "la margherita",
796
+ "phone": "01223315232",
797
+ "postcode": "cb30af",
798
+ "pricerange": "cheap",
799
+ "type": "restaurant"
800
+ },
801
+ {
802
+ "address": "40428 King Street City Centre",
803
+ "area": "centre",
804
+ "food": "asian oriental",
805
+ "id": "19175",
806
+ "introduction": "yippee noodle bar serves a variety of oriental and vegetarian dishes at their restaurant they also have a bar area and offer a take away service",
807
+ "location": [
808
+ 52.207446,
809
+ 0.122788
810
+ ],
811
+ "name": "yippee noodle bar",
812
+ "phone": "01223518111",
813
+ "postcode": "cb11lh",
814
+ "pricerange": "moderate",
815
+ "type": "restaurant"
816
+ },
817
+ {
818
+ "address": "7 Milton Road Chesterton",
819
+ "area": "north",
820
+ "food": "indian",
821
+ "id": "19263",
822
+ "location": [
823
+ 52.215157,
824
+ 0.125015
825
+ ],
826
+ "name": "the nirala",
827
+ "phone": "01223360966",
828
+ "postcode": "cb41uy",
829
+ "pricerange": "moderate",
830
+ "type": "restaurant"
831
+ },
832
+ {
833
+ "address": "183 East Road City Centre",
834
+ "area": "centre",
835
+ "food": "british",
836
+ "id": "19171",
837
+ "introduction": "cotto is a restaurant cafe and bakery all rolled in to one. The restaurant upstairs is open for dinner from wednesday to saturday consisting of one menu of between three to five dishes tailored to the day the cafe and bakery offer cakes and other delicacies",
838
+ "location": [
839
+ 52.204703,
840
+ 0.133238
841
+ ],
842
+ "name": "cotto",
843
+ "phone": "01223302010",
844
+ "postcode": "cb11bg",
845
+ "pricerange": "moderate",
846
+ "type": "restaurant"
847
+ },
848
+ {
849
+ "address": "21 - 24 Northampton Street",
850
+ "area": "west",
851
+ "food": "british",
852
+ "id": "14810",
853
+ "introduction": "",
854
+ "location": [
855
+ 52.21031,
856
+ 0.11381
857
+ ],
858
+ "name": "saint johns chop house",
859
+ "phone": "01223353110",
860
+ "postcode": "cb30ad",
861
+ "pricerange": "moderate",
862
+ "signature": "barnsley chop braised potatoes roast celeriac red cabbage and port sauce",
863
+ "type": "restaurant"
864
+ },
865
+ {
866
+ "address": "Cambridge Retail Park Newmarket Road Fen Ditton",
867
+ "area": "east",
868
+ "food": "italian",
869
+ "id": "19275",
870
+ "introduction": "pizza hut is a large chain with restaurants nationwide offering convenience pizzas pasta and salads to eat in or take away",
871
+ "location": [
872
+ 52.209742,
873
+ 0.146975
874
+ ],
875
+ "name": "pizza hut fen ditton",
876
+ "phone": "01223323737",
877
+ "postcode": "cb58wr",
878
+ "pricerange": "moderate",
879
+ "type": "restaurant"
880
+ },
881
+ {
882
+ "address": "12 Lensfield Road City Centre",
883
+ "area": "centre",
884
+ "food": "chinese",
885
+ "id": "19219",
886
+ "location": [
887
+ 52.198696,
888
+ 0.12578
889
+ ],
890
+ "name": "golden house",
891
+ "phone": "01842753771",
892
+ "postcode": "cb21eg",
893
+ "pricerange": "cheap",
894
+ "type": "restaurant"
895
+ },
896
+ {
897
+ "address": "86 Regent Street City Centre",
898
+ "area": "centre",
899
+ "food": "asian oriental",
900
+ "id": "19215",
901
+ "introduction": "j restaurant offers a wide variety of sushi noodles and dim sum to eat in or takeaway a home delivery service is also available",
902
+ "location": [
903
+ 52.200187,
904
+ 0.126407
905
+ ],
906
+ "name": "j restaurant",
907
+ "phone": "01223307581",
908
+ "postcode": "cb21dp",
909
+ "pricerange": "cheap",
910
+ "type": "restaurant"
911
+ },
912
+ {
913
+ "address": "33 Bridge Street",
914
+ "area": "centre",
915
+ "food": "european",
916
+ "id": "6780",
917
+ "introduction": "",
918
+ "location": [
919
+ 52.20951,
920
+ 0.11669
921
+ ],
922
+ "name": "galleria",
923
+ "phone": "01223362054",
924
+ "postcode": "cb21uw",
925
+ "pricerange": "moderate",
926
+ "signature": "poached fillets of monkfish in lemongrass with sweet red chilli cream sauce and tiger prawns with leeks and mushrooms served with rice",
927
+ "type": "restaurant"
928
+ },
929
+ {
930
+ "address": "Corn Exchange Street",
931
+ "area": "centre",
932
+ "food": "gastropub",
933
+ "id": "31390",
934
+ "introduction": "",
935
+ "location": [
936
+ 52.204424,
937
+ 0.12046
938
+ ],
939
+ "name": "the cow pizza kitchen and bar",
940
+ "phone": "01223308871",
941
+ "postcode": "cb23qf",
942
+ "pricerange": "moderate",
943
+ "signature": "wasabi spiked hamburger",
944
+ "type": "restaurant"
945
+ },
946
+ {
947
+ "address": "100 Mill Road City Centre",
948
+ "area": "centre",
949
+ "food": "african",
950
+ "id": "19183",
951
+ "introduction": "bedouin serves algerian cuisine",
952
+ "location": [
953
+ 52.199332,
954
+ 0.138395
955
+ ],
956
+ "name": "bedouin",
957
+ "phone": "01223367660",
958
+ "postcode": "cb12bd",
959
+ "pricerange": "expensive",
960
+ "type": "restaurant"
961
+ },
962
+ {
963
+ "address": "2 Rose Crescent City Centre",
964
+ "area": "centre",
965
+ "food": "mediterranean",
966
+ "id": "19238",
967
+ "introduction": "the gardenia serves a variety of authentic greek and mediterranean dishes at their restaurant catering for private parties of up to two five guests is available upon request",
968
+ "location": [
969
+ 52.206098,
970
+ 0.118713
971
+ ],
972
+ "name": "the gardenia",
973
+ "phone": "01223356354",
974
+ "postcode": "cb23ll",
975
+ "pricerange": "cheap",
976
+ "type": "restaurant"
977
+ },
978
+ {
979
+ "address": "47-53 Regent Street",
980
+ "area": "centre",
981
+ "food": "italian",
982
+ "id": "29652",
983
+ "introduction": "",
984
+ "location": [
985
+ 52.201116,
986
+ 0.125712
987
+ ],
988
+ "name": "zizzi cambridge",
989
+ "phone": "01223365599",
990
+ "postcode": "cb21ab",
991
+ "pricerange": "cheap",
992
+ "signature": "piccante rustica pizza, a spicy sausage salami mascarpone and roquito chilli",
993
+ "type": "restaurant"
994
+ },
995
+ {
996
+ "address": "Newmarket Road Fen Ditton",
997
+ "area": "east",
998
+ "food": "indian",
999
+ "id": "19272",
1000
+ "introduction": "pipasha restaurant serves a variety of indian dishes to eat in or take away a delivery service is also available",
1001
+ "location": [
1002
+ 52.212992,
1003
+ 0.157569
1004
+ ],
1005
+ "name": "pipasha restaurant",
1006
+ "phone": "01223577786",
1007
+ "postcode": "cb58pa",
1008
+ "pricerange": "expensive",
1009
+ "type": "restaurant"
1010
+ },
1011
+ {
1012
+ "address": "33-34 Saint Andrews Street",
1013
+ "area": "centre",
1014
+ "food": "portuguese",
1015
+ "id": "12237",
1016
+ "introduction": "",
1017
+ "location": [
1018
+ 52.203,
1019
+ 0.12375
1020
+ ],
1021
+ "name": "nandos city centre",
1022
+ "phone": "01223327908",
1023
+ "postcode": "cb23ar",
1024
+ "pricerange": "cheap",
1025
+ "type": "restaurant"
1026
+ },
1027
+ {
1028
+ "address": "Victoria Avenue Chesterton",
1029
+ "area": "north",
1030
+ "food": "indian",
1031
+ "id": "19257",
1032
+ "location": [
1033
+ 52.213853,
1034
+ 0.125509
1035
+ ],
1036
+ "name": "royal spice",
1037
+ "phone": "01733553355",
1038
+ "postcode": "cb41eh",
1039
+ "pricerange": "cheap",
1040
+ "type": "restaurant"
1041
+ },
1042
+ {
1043
+ "address": "Milton Road Chesterton",
1044
+ "area": "north",
1045
+ "food": "chinese",
1046
+ "id": "19260",
1047
+ "introduction": "A unique treat for all lovers of Chinese cuisine. From the Spice Islands to the food streets of Beijing and the finest ocean catch.",
1048
+ "location": [
1049
+ 52.215311,
1050
+ 0.12593
1051
+ ],
1052
+ "name": "hakka",
1053
+ "phone": "01223568988",
1054
+ "postcode": "cb41jy",
1055
+ "pricerange": "expensive",
1056
+ "type": "restaurant"
1057
+ },
1058
+ {
1059
+ "address": "4 - 6 Rose Crescent",
1060
+ "area": "centre",
1061
+ "food": "spanish",
1062
+ "id": "19237",
1063
+ "introduction": "",
1064
+ "location": [
1065
+ 52.206098,
1066
+ 0.118713
1067
+ ],
1068
+ "name": "la raza",
1069
+ "phone": "01223464550",
1070
+ "postcode": "cb23ll",
1071
+ "pricerange": "cheap",
1072
+ "signature": "seafood paella",
1073
+ "type": "restaurant"
1074
+ },
1075
+ {
1076
+ "address": "72 Regent Street City Centre",
1077
+ "area": "centre",
1078
+ "food": "indian",
1079
+ "id": "19218",
1080
+ "introduction": "the gandhi serves a variety of indian and bangladeshi dishes at their restaurant to eat in or take away. Catering for private parties of up to 140 guests is available upon request",
1081
+ "location": [
1082
+ 52.200187,
1083
+ 0.126407
1084
+ ],
1085
+ "name": "the gandhi",
1086
+ "phone": "01223353942",
1087
+ "postcode": "cb21dp",
1088
+ "pricerange": "cheap",
1089
+ "type": "restaurant"
1090
+ },
1091
+ {
1092
+ "address": "191 Histon Road Chesterton",
1093
+ "area": "north",
1094
+ "food": "chinese",
1095
+ "id": "19265",
1096
+ "introduction": "the golden wok serves a variety of traditional chinese meals including sweet and sour dishes as well as rice and noodles",
1097
+ "location": [
1098
+ 52.220757,
1099
+ 0.111564
1100
+ ],
1101
+ "name": "golden wok",
1102
+ "phone": "01223350688",
1103
+ "postcode": "cb43hl",
1104
+ "pricerange": "moderate",
1105
+ "type": "restaurant"
1106
+ },
1107
+ {
1108
+ "address": "205 Victoria Road Chesterton",
1109
+ "area": "west",
1110
+ "food": "indian",
1111
+ "id": "19267",
1112
+ "location": [
1113
+ 52.215077,
1114
+ 0.112421
1115
+ ],
1116
+ "name": "meghna",
1117
+ "phone": "01223727410",
1118
+ "postcode": "cb43lf",
1119
+ "pricerange": "moderate",
1120
+ "type": "restaurant"
1121
+ },
1122
+ {
1123
+ "address": "Hills Road City Centre",
1124
+ "area": "centre",
1125
+ "food": "indian",
1126
+ "id": "19220",
1127
+ "introduction": "the saffron brasserie serve a variety of dishes from their contemporary indian and bangladeshi menu. Catering for private parties of up to 100 guests is available upon request",
1128
+ "location": [
1129
+ 52.196862,
1130
+ 0.129248
1131
+ ],
1132
+ "name": "saffron brasserie",
1133
+ "phone": "01223354679",
1134
+ "postcode": "cb21la",
1135
+ "pricerange": "expensive",
1136
+ "type": "restaurant"
1137
+ },
1138
+ {
1139
+ "address": "Thompsons Lane Fen Ditton",
1140
+ "area": "centre",
1141
+ "food": "mediterranean",
1142
+ "id": "19268",
1143
+ "location": [
1144
+ 52.210013,
1145
+ 0.118007
1146
+ ],
1147
+ "name": "la mimosa",
1148
+ "phone": "01223362525",
1149
+ "postcode": "cb58aq",
1150
+ "pricerange": "expensive",
1151
+ "type": "restaurant"
1152
+ },
1153
+ {
1154
+ "address": "39 Burleigh Street City Centre",
1155
+ "area": "centre",
1156
+ "food": "chinese",
1157
+ "id": "19173",
1158
+ "introduction": "shanghai family restaurant comprises a french cafe on the lower level and a chinese restaurant upstairs",
1159
+ "location": [
1160
+ 52.206111,
1161
+ 0.132969
1162
+ ],
1163
+ "name": "shanghai family restaurant",
1164
+ "phone": "01223301761",
1165
+ "postcode": "cb11dg",
1166
+ "pricerange": "moderate",
1167
+ "type": "restaurant"
1168
+ },
1169
+ {
1170
+ "address": "The Little Rose 37 Trumpington Street",
1171
+ "area": "centre",
1172
+ "food": "seafood",
1173
+ "id": "19223",
1174
+ "introduction": "using the freshest seafood from the loch of the same name, loch fyne restaurants serve a variety of shellfish and smoked fish all of which are complimented by an extensive wine list. Non-seafood dishes are also available",
1175
+ "location": [
1176
+ 52.200693,
1177
+ 0.119744
1178
+ ],
1179
+ "name": "loch fyne",
1180
+ "phone": "01223362433",
1181
+ "postcode": "cb21qy",
1182
+ "pricerange": "expensive",
1183
+ "type": "restaurant"
1184
+ },
1185
+ {
1186
+ "address": "3 - 5 Millers Yard Mill Lane",
1187
+ "area": "centre",
1188
+ "food": "indian",
1189
+ "id": "15275",
1190
+ "introduction": "",
1191
+ "location": [
1192
+ 52.20143,
1193
+ 0.11664
1194
+ ],
1195
+ "name": "mahal of cambridge",
1196
+ "phone": "01223360409",
1197
+ "postcode": "cb21rq",
1198
+ "pricerange": "cheap",
1199
+ "signature": "chicken tikka masala",
1200
+ "type": "restaurant"
1201
+ },
1202
+ {
1203
+ "address": "Jesus Lane Fen Ditton",
1204
+ "area": "centre",
1205
+ "food": "italian",
1206
+ "id": "19269",
1207
+ "introduction": "the simple menu and kitchen concept at pizza express has retained its freshly made ideal, and you can still watch your pizza being prepared for you. This branch has live jazz music",
1208
+ "location": [
1209
+ 52.208252,
1210
+ 0.119957
1211
+ ],
1212
+ "name": "pizza express Fen Ditton",
1213
+ "phone": "01223324033",
1214
+ "postcode": "cb58ba",
1215
+ "pricerange": "moderate",
1216
+ "type": "restaurant"
1217
+ },
1218
+ {
1219
+ "address": "35 Newnham Road Newnham",
1220
+ "area": "west",
1221
+ "food": "thai",
1222
+ "id": "19256",
1223
+ "introduction": "sala thong serves a variety of thai dishes at their restaurant catering for private parties of up to 40 guests is available upon request",
1224
+ "location": [
1225
+ 52.199012,
1226
+ 0.113196
1227
+ ],
1228
+ "name": "sala thong",
1229
+ "phone": "01223323178",
1230
+ "postcode": "cb39ey",
1231
+ "pricerange": "expensive",
1232
+ "type": "restaurant"
1233
+ },
1234
+ {
1235
+ "address": "Cambridge City Football Club Milton Road Chesterton",
1236
+ "area": "north",
1237
+ "id": "19262",
1238
+ "introduction": "located in cambridge city football club, city stop restaurant serve a variety of english and italian dishes as well as offering a selection of vegetarian options catering for corporate events and private parties of up to 100 guests is available upon request.",
1239
+ "location": [
1240
+ 52.215157,
1241
+ 0.125015
1242
+ ],
1243
+ "name": "city stop restaurant",
1244
+ "phone": "01223363270",
1245
+ "postcode": "cb41uy",
1246
+ "pricerange": "expensive",
1247
+ "food": "european",
1248
+ "type": "restaurant"
1249
+ },
1250
+ {
1251
+ "address": "169 High Street Chesterton Chesterton",
1252
+ "area": "north",
1253
+ "food": "asian oriental",
1254
+ "id": "19261",
1255
+ "introduction": "saigon city serve vietnamese chinese and thai cuisine to eat in or take away",
1256
+ "location": [
1257
+ 52.218164,
1258
+ 0.143209
1259
+ ],
1260
+ "name": "saigon city",
1261
+ "phone": "01223356555",
1262
+ "postcode": "cb41nl",
1263
+ "pricerange": "expensive",
1264
+ "type": "restaurant"
1265
+ },
1266
+ {
1267
+ "address": "10 Homerton Street City Centre",
1268
+ "area": "south",
1269
+ "food": "chinese",
1270
+ "id": "19246",
1271
+ "introduction": "peking resturant cook from fresh ingredients. they specialise in sichuan and hunan dishes",
1272
+ "location": [
1273
+ 52.189484,
1274
+ 0.135465
1275
+ ],
1276
+ "name": "peking restaurant",
1277
+ "phone": "01223354755",
1278
+ "postcode": "cb28nx",
1279
+ "pricerange": "expensive",
1280
+ "type": "restaurant"
1281
+ },
1282
+ {
1283
+ "address": "Cambridge Leisure Park Clifton Way Cherry Hinton",
1284
+ "area": "south",
1285
+ "food": "italian",
1286
+ "id": "19195",
1287
+ "introduction": "frankie and bennys has a traditional 1950s new york feel to it with its original family photographs, traditional wooden furniture and period music. They serve a wide range of authentic american and italian dishes.",
1288
+ "location": [
1289
+ 52.190176,
1290
+ 0.13699
1291
+ ],
1292
+ "name": "frankie and bennys",
1293
+ "phone": "01223412430",
1294
+ "postcode": "cb17dy",
1295
+ "pricerange": "expensive",
1296
+ "type": "restaurant"
1297
+ },
1298
+ {
1299
+ "address": "Hotel Felix Whitehouse Lane Huntingdon Road",
1300
+ "area": "west",
1301
+ "food": "british",
1302
+ "id": "7492",
1303
+ "introduction": "Critically acclaimed food in luxurious and stylish surroundings, overlooking the hotels lush gardens.",
1304
+ "location": [
1305
+ 52.22414,
1306
+ 0.09194
1307
+ ],
1308
+ "name": "graffiti",
1309
+ "phone": "01223277977",
1310
+ "postcode": "cb30lx",
1311
+ "pricerange": "expensive",
1312
+ "signature": "panfried fillet of brill tempura of langoustine crushed garden peas shellfish basil nage",
1313
+ "type": "restaurant"
1314
+ },
1315
+ {
1316
+ "address": "31 Newnham Road Newnham",
1317
+ "area": "west",
1318
+ "food": "indian",
1319
+ "id": "19254",
1320
+ "introduction": "indian house serve a variety of indian dishes to eat in or take away they also have a selection of english dishes on their menu",
1321
+ "location": [
1322
+ 52.199012,
1323
+ 0.113196
1324
+ ],
1325
+ "name": "india house",
1326
+ "phone": "01223461661",
1327
+ "postcode": "cb39ey",
1328
+ "pricerange": "expensive",
1329
+ "type": "restaurant"
1330
+ },
1331
+ {
1332
+ "address": "Cambridge Lodge Hotel 139 Huntingdon Road City Centre",
1333
+ "area": "west",
1334
+ "food": "european",
1335
+ "id": "19252",
1336
+ "introduction": "located in the cambridge lodge hotel, this restaurant serves a variety of european and vegetarian dishes and can cater for private parties of up to 20 guests upon request.",
1337
+ "location": [
1338
+ 52.217736,
1339
+ 0.102505
1340
+ ],
1341
+ "name": "cambridge lodge restaurant",
1342
+ "phone": "01223355166",
1343
+ "postcode": "cb30dq",
1344
+ "pricerange": "expensive",
1345
+ "type": "restaurant"
1346
+ },
1347
+ {
1348
+ "address": "Grafton Hotel 619 Newmarket Road Fen Ditton",
1349
+ "area": "east",
1350
+ "food": "british",
1351
+ "id": "19271",
1352
+ "introduction": "located in the grafton hotel this restaurant serves a variety of english and vegetarian dishes from their a la carte and carvery menu. They also have a bar area",
1353
+ "location": [
1354
+ 52.212992,
1355
+ 0.157569
1356
+ ],
1357
+ "name": "grafton hotel restaurant",
1358
+ "phone": "01223241387",
1359
+ "postcode": "cb58pa",
1360
+ "pricerange": "expensive",
1361
+ "type": "restaurant"
1362
+ },
1363
+ {
1364
+ "address": "66 Chesterton Road Chesterton",
1365
+ "area": "north",
1366
+ "food": "chinese",
1367
+ "id": "19258",
1368
+ "introduction": "the hotpot serves a variety of chinese dishes at their restaurant and can cater for private parties of up to five five guests upon request",
1369
+ "location": [
1370
+ 52.214531,
1371
+ 0.127298
1372
+ ],
1373
+ "name": "the hotpot",
1374
+ "phone": "01223366552",
1375
+ "postcode": "cb41ep",
1376
+ "pricerange": "expensive",
1377
+ "type": "restaurant"
1378
+ },
1379
+ {
1380
+ "address": "Quayside Off Bridge Street",
1381
+ "area": "centre",
1382
+ "food": "modern european",
1383
+ "id": "7236",
1384
+ "introduction": "",
1385
+ "location": [
1386
+ 52.20984,
1387
+ 0.11793
1388
+ ],
1389
+ "name": "the river bar steakhouse and grill",
1390
+ "phone": "01223307030",
1391
+ "postcode": "cb58aq",
1392
+ "pricerange": "cheap",
1393
+ "signature": "lobster mac and cheese",
1394
+ "type": "restaurant"
1395
+ },
1396
+ {
1397
+ "address": "54 King Street City Centre",
1398
+ "area": "centre",
1399
+ "food": "italian",
1400
+ "id": "19176",
1401
+ "introduction": "clowns cafe serve a variety of drinks as well as italian dishes such as pasta ciabatta and salads",
1402
+ "location": [
1403
+ 52.207312,
1404
+ 0.124201
1405
+ ],
1406
+ "name": "clowns cafe",
1407
+ "phone": "01223355711",
1408
+ "postcode": "cb11ln",
1409
+ "pricerange": "expensive",
1410
+ "type": "restaurant"
1411
+ },
1412
+ {
1413
+ "address": "30 Bridge Street City Centre",
1414
+ "area": "centre",
1415
+ "food": "turkish",
1416
+ "id": "19232",
1417
+ "introduction": "anatolia is a basement restaurant that serves a variety of turkish and vegetarian dishes and cater for private parties of up to 80 guests upon request",
1418
+ "location": [
1419
+ 52.209632,
1420
+ 0.117213
1421
+ ],
1422
+ "name": "anatolia",
1423
+ "phone": "01223362372",
1424
+ "postcode": "cb21uj",
1425
+ "pricerange": "moderate",
1426
+ "type": "restaurant"
1427
+ },
1428
+ {
1429
+ "address": "8 Norfolk Street City Centre",
1430
+ "area": "centre",
1431
+ "food": "indian",
1432
+ "id": "19187",
1433
+ "location": [
1434
+ 52.204609,
1435
+ 0.137976
1436
+ ],
1437
+ "name": "panahar",
1438
+ "phone": "01223355012",
1439
+ "postcode": "cb12lf",
1440
+ "pricerange": "expensive",
1441
+ "type": "restaurant"
1442
+ },
1443
+ {
1444
+ "address": "Napier Street City Centre",
1445
+ "area": "centre",
1446
+ "food": "chinese",
1447
+ "id": "19174",
1448
+ "introduction": "tang chinese is a buffet restaurant and bar serving a variety of dishes for lunch and dinner there is also a takeaway menu available",
1449
+ "location": [
1450
+ 52.207702,
1451
+ 0.133982
1452
+ ],
1453
+ "name": "tang chinese",
1454
+ "phone": "01223357187",
1455
+ "postcode": "cb11hr",
1456
+ "pricerange": "expensive",
1457
+ "type": "restaurant"
1458
+ },
1459
+ {
1460
+ "address": "34 - 35 Green Street",
1461
+ "area": "centre",
1462
+ "food": "gastropub",
1463
+ "id": "12482",
1464
+ "introduction": "slug lettuce is a premium high street bar that serves a wide range of restaurant quality food to suit all occasions and appetites.",
1465
+ "location": [
1466
+ 52.20683,
1467
+ 0.1192
1468
+ ],
1469
+ "name": "the slug and lettuce",
1470
+ "postcode": "cb23ju",
1471
+ "pricerange": "expensive",
1472
+ "type": "restaurant"
1473
+ },
1474
+ {
1475
+ "address": "5 Jordans Yard Bridge Street City Centre",
1476
+ "area": "centre",
1477
+ "food": "indian",
1478
+ "id": "19231",
1479
+ "introduction": "curry king serve a variety of indian dishes to eat in or take away catering for private parties of up to 40 guests is available upon request",
1480
+ "location": [
1481
+ 52.209003,
1482
+ 0.118661
1483
+ ],
1484
+ "name": "curry king",
1485
+ "phone": "01223324351",
1486
+ "postcode": "cb21ug",
1487
+ "pricerange": "expensive",
1488
+ "type": "restaurant"
1489
+ },
1490
+ {
1491
+ "address": "Huntingdon Road City Centre",
1492
+ "area": "west",
1493
+ "food": "british",
1494
+ "id": "19251",
1495
+ "introduction": "",
1496
+ "location": [
1497
+ 52.214201,
1498
+ 0.108588
1499
+ ],
1500
+ "name": "travellers rest",
1501
+ "phone": "01223276182",
1502
+ "postcode": "cb30df",
1503
+ "pricerange": "expensive",
1504
+ "type": "restaurant"
1505
+ },
1506
+ {
1507
+ "address": "106 Mill Road City Centre",
1508
+ "area": "centre",
1509
+ "food": "indian",
1510
+ "id": "19184",
1511
+ "introduction": "curry queen is the most popular indian restaurant in cambridge serving good indian cuisine including all the usual dishes",
1512
+ "location": [
1513
+ 52.199332,
1514
+ 0.138395
1515
+ ],
1516
+ "name": "curry queen",
1517
+ "phone": "01223351027",
1518
+ "postcode": "cb12bd",
1519
+ "pricerange": "expensive",
1520
+ "type": "restaurant"
1521
+ },
1522
+ {
1523
+ "address": "290 Mill Road City Centre",
1524
+ "area": "east",
1525
+ "food": "gastropub",
1526
+ "id": "19190",
1527
+ "location": [
1528
+ 52.196967,
1529
+ 0.149286
1530
+ ],
1531
+ "name": "royal standard",
1532
+ "phone": "01223247877",
1533
+ "postcode": "cb13nl",
1534
+ "pricerange": "expensive",
1535
+ "type": "restaurant"
1536
+ },
1537
+ {
1538
+ "address": "7 Barnwell Road Fen Ditton",
1539
+ "area": "east",
1540
+ "food": "indian",
1541
+ "id": "19274",
1542
+ "introduction": "rajmahal serves traditional indian cuisine accomapnied by a broad wine list with beers and spirits also available",
1543
+ "location": [
1544
+ 52.211144,
1545
+ 0.163247
1546
+ ],
1547
+ "name": "rajmahal",
1548
+ "phone": "01223244955",
1549
+ "postcode": "cb58rg",
1550
+ "pricerange": "moderate",
1551
+ "type": "restaurant"
1552
+ },
1553
+ {
1554
+ "address": "21 Burleigh Street City Centre",
1555
+ "area": "centre",
1556
+ "food": "chinese",
1557
+ "id": "19172",
1558
+ "location": [
1559
+ 52.206111,
1560
+ 0.132969
1561
+ ],
1562
+ "name": "hk fusion",
1563
+ "phone": "01223355909",
1564
+ "postcode": "cb11dg",
1565
+ "pricerange": "expensive",
1566
+ "type": "restaurant"
1567
+ },
1568
+ {
1569
+ "address": "King Street City Centre",
1570
+ "area": "centre",
1571
+ "food": "turkish",
1572
+ "id": "19178",
1573
+ "introduction": "efes restaurant serve a variety of turkish dishes including kebabs in truly authentic surroundings.",
1574
+ "location": [
1575
+ 52.207312,
1576
+ 0.124201
1577
+ ],
1578
+ "name": "efes restaurant",
1579
+ "phone": "01223500005",
1580
+ "postcode": "cb11ln",
1581
+ "pricerange": "moderate",
1582
+ "type": "restaurant"
1583
+ },
1584
+ {
1585
+ "address": "Regent Street City Centre",
1586
+ "area": "centre",
1587
+ "food": "north american",
1588
+ "id": "19209",
1589
+ "introduction": "gourmet burger kitchen has a trendy interior and, although a bit more expensive than the average high street burger joint, the delicious burgers and other dishes are huge and freshly prepared with large side orders to match. Catering for vegetarians is provided",
1590
+ "location": [
1591
+ 52.20103,
1592
+ 0.126023
1593
+ ],
1594
+ "name": "gourmet burger kitchen",
1595
+ "phone": "01223312598",
1596
+ "postcode": "cb21ab",
1597
+ "pricerange": "expensive",
1598
+ "type": "restaurant"
1599
+ },
1600
+ {
1601
+ "address": "12 Market Hill City Centre",
1602
+ "area": "centre",
1603
+ "food": "italian",
1604
+ "id": "19239",
1605
+ "introduction": "don pasquale pizzeria serves an extensive range of pizzas and italian dishes including pasta as well as a selection of beverages. Catering for private parties of up to 80 guests is available upon request",
1606
+ "location": [
1607
+ 52.205442,
1608
+ 0.119706
1609
+ ],
1610
+ "name": "don pasquale pizzeria",
1611
+ "phone": "01223350106",
1612
+ "postcode": "cb23nj",
1613
+ "pricerange": "expensive",
1614
+ "type": "restaurant"
1615
+ },
1616
+ {
1617
+ "address": "1 Kings Parade",
1618
+ "area": "centre",
1619
+ "food": "british",
1620
+ "id": "6941",
1621
+ "introduction": "",
1622
+ "location": [
1623
+ 52.20439,
1624
+ 0.11784
1625
+ ],
1626
+ "name": "the cambridge chop house",
1627
+ "phone": "01223359506",
1628
+ "postcode": "cb21sj",
1629
+ "pricerange": "expensive",
1630
+ "signature": "lamb barnsley chop potato and garlic bake greens and gravy",
1631
+ "type": "restaurant"
1632
+ },
1633
+ {
1634
+ "address": "52 Mill Road City Centre",
1635
+ "area": "centre",
1636
+ "food": "asian oriental",
1637
+ "id": "19181",
1638
+ "introduction": "kymmoy is a noodle bar serving a wide variety of chinese thai cuisine for lunch and dinner",
1639
+ "location": [
1640
+ 52.200422,
1641
+ 0.135784
1642
+ ],
1643
+ "name": "kymmoy",
1644
+ "phone": "01223311911",
1645
+ "postcode": "cb12as",
1646
+ "pricerange": "expensive",
1647
+ "type": "restaurant"
1648
+ },
1649
+ {
1650
+ "address": "43 High Street Cherry Hinton Cherry Hinton",
1651
+ "area": "east",
1652
+ "food": "indian",
1653
+ "id": "19198",
1654
+ "location": [
1655
+ 52.186739,
1656
+ 0.173048
1657
+ ],
1658
+ "name": "sitar tandoori",
1659
+ "phone": "01223249955",
1660
+ "postcode": "cb19hx",
1661
+ "pricerange": "expensive",
1662
+ "type": "restaurant"
1663
+ },
1664
+ {
1665
+ "address": "84 Regent Street City Centre",
1666
+ "area": "centre",
1667
+ "food": "mediterranean",
1668
+ "id": "19217",
1669
+ "introduction": "shiraz serves traditional mediterranean cuisine accompanied by an extensive wine list with beers and spirits also available",
1670
+ "location": [
1671
+ 52.200187,
1672
+ 0.126407
1673
+ ],
1674
+ "name": "shiraz restaurant",
1675
+ "phone": "01223307581",
1676
+ "postcode": "cb21dp",
1677
+ "pricerange": "expensive",
1678
+ "type": "restaurant"
1679
+ },
1680
+ {
1681
+ "address": "Midsummer Common",
1682
+ "area": "centre",
1683
+ "food": "british",
1684
+ "id": "508",
1685
+ "introduction": "",
1686
+ "location": [
1687
+ 52.21251,
1688
+ 0.12774
1689
+ ],
1690
+ "name": "midsummer house restaurant",
1691
+ "phone": "01223369299",
1692
+ "postcode": "cb41ha",
1693
+ "pricerange": "expensive",
1694
+ "signature": "seared scallops with truffle apple and celeriac",
1695
+ "type": "restaurant"
1696
+ },
1697
+ {
1698
+ "address": "Bridge Street City Centre",
1699
+ "area": "centre",
1700
+ "food": "french",
1701
+ "id": "19230",
1702
+ "introduction": "cote is a modern french bistro offering some of the classic and simple favourites of french cuisine",
1703
+ "location": [
1704
+ 52.209028,
1705
+ 0.118296
1706
+ ],
1707
+ "name": "cote",
1708
+ "phone": "01223311053",
1709
+ "postcode": "cb21uf",
1710
+ "pricerange": "expensive",
1711
+ "type": "restaurant"
1712
+ },
1713
+ {
1714
+ "address": "32 Bridge Street City Centre",
1715
+ "area": "centre",
1716
+ "food": "italian",
1717
+ "id": "19234",
1718
+ "introduction": "caffe uno is a chain of cafe style restaurants that offer a wide selection of meals and snacks to suit any time of the day including an extensive breakfast menu and choice of hot or cold drinks",
1719
+ "location": [
1720
+ 52.209632,
1721
+ 0.117213
1722
+ ],
1723
+ "name": "caffe uno",
1724
+ "phone": "01223448620",
1725
+ "postcode": "cb21uj",
1726
+ "pricerange": "expensive",
1727
+ "type": "restaurant"
1728
+ },
1729
+ {
1730
+ "address": "17 Hills Road City Centre",
1731
+ "area": "centre",
1732
+ "food": "chinese",
1733
+ "id": "19222",
1734
+ "introduction": "sesame restaurant and bar offers a wide variety of traditional chinese cuisine for lunch or dinner with wifi access and a television screen in the basement",
1735
+ "location": [
1736
+ 52.197154,
1737
+ 0.129511
1738
+ ],
1739
+ "name": "sesame restaurant and bar",
1740
+ "phone": "01223358899",
1741
+ "postcode": "cb21nw",
1742
+ "pricerange": "expensive",
1743
+ "type": "restaurant"
1744
+ },
1745
+ {
1746
+ "address": "24 Green Street City Centre",
1747
+ "area": "centre",
1748
+ "food": "thai",
1749
+ "id": "19236",
1750
+ "introduction": "bangkok city serve a variety of authentic dishes to eat in or take away",
1751
+ "location": [
1752
+ 52.206504,
1753
+ 0.119157
1754
+ ],
1755
+ "name": "bangkok city",
1756
+ "phone": "01223354382",
1757
+ "postcode": "cb23jx",
1758
+ "pricerange": "expensive",
1759
+ "type": "restaurant"
1760
+ }
1761
+ ]
data/raw/UBAR/db/restaurant_db_processed.json ADDED
@@ -0,0 +1,1761 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "location": [
4
+ 52.20103,
5
+ 0.126023
6
+ ],
7
+ "address": "regent street city centre",
8
+ "area": "centre",
9
+ "food": "italian",
10
+ "id": "19210",
11
+ "introduction": "pizza hut is a large chain with restaurant -s nationwide offering convenience pizzas pasta and salads to eat in or take away",
12
+ "name": "pizza hut city centre",
13
+ "phone": "01223323737",
14
+ "postcode": "cb21ab",
15
+ "pricerange": "cheap",
16
+ "type": "restaurant"
17
+ },
18
+ {
19
+ "location": [
20
+ 52.21768,
21
+ 0.224907
22
+ ],
23
+ "address": "finders corner newmarket road",
24
+ "area": "east",
25
+ "food": "international",
26
+ "id": "30650",
27
+ "introduction": "",
28
+ "name": "the missing sock",
29
+ "phone": "01223812660",
30
+ "postcode": "cb259aq",
31
+ "pricerange": "cheap",
32
+ "signature": "african babooti",
33
+ "type": "restaurant"
34
+ },
35
+ {
36
+ "location": [
37
+ 52.200187,
38
+ 0.126407
39
+ ],
40
+ "address": "106 regent street city centre",
41
+ "area": "centre",
42
+ "food": "indian",
43
+ "id": "19214",
44
+ "introduction": "curry garden serves traditional indian and bangladeshi cuisine cooked with fresh produce delivered every day",
45
+ "name": "curry garden",
46
+ "phone": "01223302330",
47
+ "postcode": "cb21dp",
48
+ "pricerange": "expensive",
49
+ "type": "restaurant"
50
+ },
51
+ {
52
+ "location": [
53
+ 52.188528,
54
+ 0.140627
55
+ ],
56
+ "address": "82 cherry hinton road cherry hinton",
57
+ "area": "south",
58
+ "food": "chinese",
59
+ "id": "19192",
60
+ "name": "the good luck chinese food takeaway",
61
+ "phone": "01223244149",
62
+ "postcode": "cb17ag",
63
+ "pricerange": "expensive",
64
+ "type": "restaurant"
65
+ },
66
+ {
67
+ "location": [
68
+ 52.190176,
69
+ 0.13699
70
+ ],
71
+ "address": "g4 cambridge leisure park clifton way cherry hinton",
72
+ "area": "south",
73
+ "food": "italian",
74
+ "id": "19196",
75
+ "introduction": "pizza hut is a large chain with restaurant -s nationwide offering convenience pizzas pasta and salads to eat in or take away",
76
+ "name": "pizza hut cherry hinton",
77
+ "phone": "01223323737",
78
+ "postcode": "cb17dy",
79
+ "pricerange": "moderate",
80
+ "type": "restaurant"
81
+ },
82
+ {
83
+ "location": [
84
+ 52.188747,
85
+ 0.138941
86
+ ],
87
+ "address": "64 cherry hinton road cherry hinton",
88
+ "area": "south",
89
+ "food": "indian",
90
+ "id": "19191",
91
+ "introduction": "taj tandoori serves a variety of indian dishes to eat in or take away catering for private parties of up to 50 guests is available upon request",
92
+ "name": "taj tandoori",
93
+ "phone": "01223412299",
94
+ "postcode": "cb17aa",
95
+ "pricerange": "expensive",
96
+ "type": "restaurant"
97
+ },
98
+ {
99
+ "location": [
100
+ 52.18889,
101
+ 0.13589
102
+ ],
103
+ "address": "152 - 154 hills road",
104
+ "area": "south",
105
+ "food": "modern european",
106
+ "id": "14731",
107
+ "introduction": "",
108
+ "name": "restaurant alimentum",
109
+ "phone": "01223413000",
110
+ "postcode": "cb28pb",
111
+ "pricerange": "moderate",
112
+ "signature": "slowroast sirloin of beef red onion celeriac and garlic",
113
+ "type": "restaurant"
114
+ },
115
+ {
116
+ "location": [
117
+ 52.212992,
118
+ 0.157569
119
+ ],
120
+ "address": "529 newmarket road fen ditton",
121
+ "area": "east",
122
+ "food": "chinese",
123
+ "id": "19273",
124
+ "introduction": "yu garden serves authentic chinese cuisine",
125
+ "name": "yu garden",
126
+ "phone": "01223248882",
127
+ "postcode": "cb58pa",
128
+ "pricerange": "expensive",
129
+ "type": "restaurant"
130
+ },
131
+ {
132
+ "location": [
133
+ 52.205442,
134
+ 0.119706
135
+ ],
136
+ "address": "market hill city centre",
137
+ "area": "centre",
138
+ "food": "italian",
139
+ "id": "19240",
140
+ "name": "stazione restaurant and coffee bar",
141
+ "phone": "01223352607",
142
+ "postcode": "cb23nj",
143
+ "pricerange": "expensive",
144
+ "type": "restaurant"
145
+ },
146
+ {
147
+ "location": [
148
+ 52.213072,
149
+ 0.149771
150
+ ],
151
+ "address": "451 newmarket road fen ditton",
152
+ "area": "east",
153
+ "food": "indian",
154
+ "id": "19270",
155
+ "introduction": "curry prince is a neighbourhood indian restaurant serving authentic cuisine",
156
+ "name": "curry prince",
157
+ "phone": "01223566388",
158
+ "postcode": "cb58jj",
159
+ "pricerange": "moderate",
160
+ "type": "restaurant"
161
+ },
162
+ {
163
+ "location": [
164
+ 52.201743,
165
+ 0.124843
166
+ ],
167
+ "address": "regent street city centre",
168
+ "area": "centre",
169
+ "food": "chinese",
170
+ "id": "19212",
171
+ "introduction": "charlie chan serves a variety of popular chinese dishes at their restaurant",
172
+ "name": "charlie chan",
173
+ "phone": "01223361763",
174
+ "postcode": "cb21db",
175
+ "pricerange": "cheap",
176
+ "type": "restaurant"
177
+ },
178
+ {
179
+ "location": [
180
+ 52.203708,
181
+ 0.119082
182
+ ],
183
+ "address": "free school lane city centre",
184
+ "area": "centre",
185
+ "food": "european",
186
+ "id": "19245",
187
+ "introduction": "eraina serves a variety of drinks and european dishes with influences from france spain italy and greece catering for vegetarians is also provided",
188
+ "name": "eraina",
189
+ "phone": "01223368786",
190
+ "postcode": "cb23rh",
191
+ "pricerange": "expensive",
192
+ "type": "restaurant"
193
+ },
194
+ {
195
+ "location": [
196
+ 52.201743,
197
+ 0.124843
198
+ ],
199
+ "address": "regent street city centre",
200
+ "area": "centre",
201
+ "food": "italian",
202
+ "id": "19213",
203
+ "introduction": "the simple menu and kitchen concept at pizza express has retained its freshly made ideal and you can still watch your pizza being prepared for you",
204
+ "name": "pizza express",
205
+ "phone": "01223324033",
206
+ "postcode": "cb21db",
207
+ "pricerange": "moderate",
208
+ "type": "restaurant"
209
+ },
210
+ {
211
+ "location": [
212
+ 52.20103,
213
+ 0.126023
214
+ ],
215
+ "address": "de vere university arms regent street city centre",
216
+ "area": "centre",
217
+ "food": "british",
218
+ "id": "19211",
219
+ "introduction": "adjoining the de vere university arms restaurant 1 7 is located at the forefront of regent street , and provides a birds eye view to take in the hustle and bustle of the busy city . enjoy beautifully created food which is always complemented by a fine selection of wines in a truly relaxing and contemporary atmosphere",
220
+ "name": "restaurant 1 7",
221
+ "phone": "01223337766",
222
+ "postcode": "cb21ab",
223
+ "pricerange": "moderate",
224
+ "type": "restaurant"
225
+ },
226
+ {
227
+ "location": [
228
+ 52.209028,
229
+ 0.118296
230
+ ],
231
+ "address": "12 bridge street city centre",
232
+ "area": "centre",
233
+ "food": "italian",
234
+ "id": "19229",
235
+ "introduction": "ask is a leading name in the uk casual dining market with over 100 restaurant -s across the uk . ask is the perfect place to relax and enjoy mouthwatering risottos an extended range of hearty al forno dishes and all your favourite pastas pizzas and salads",
236
+ "name": "ask restaurant",
237
+ "phone": "01223364917",
238
+ "postcode": "cb21uf",
239
+ "pricerange": "cheap",
240
+ "type": "restaurant"
241
+ },
242
+ {
243
+ "location": [
244
+ 52.204453,
245
+ 0.118693
246
+ ],
247
+ "address": "11 peas hill city centre",
248
+ "area": "centre",
249
+ "food": "chinese",
250
+ "id": "19242",
251
+ "introduction": "jinling noodle bar serves a wide range of chinese and shanghai dishes reflecting many different flavours and ingredients",
252
+ "name": "jinling noodle bar",
253
+ "phone": "01223566188",
254
+ "postcode": "cb23pp",
255
+ "pricerange": "moderate",
256
+ "type": "restaurant"
257
+ },
258
+ {
259
+ "location": [
260
+ 52.2002,
261
+ 0.1268
262
+ ],
263
+ "address": "83 regent street",
264
+ "area": "centre",
265
+ "food": "modern european",
266
+ "id": "3697",
267
+ "introduction": "de luca cucina bar in the heart of cambridge is a stylish spot to enjoy food , wine , cocktails and coffee all in a vibrant atmosphere . the cocktail bar at the front is perfect for coffee and light meal -s in the day and cocktails in the evening . an open kitchen provides real excitement with head chef darren kiegher and his team preparing simply delicious italian food using locally sourced ingredients .",
268
+ "name": "de luca cucina and bar",
269
+ "phone": "01223356666",
270
+ "postcode": "cb21aw",
271
+ "pricerange": "moderate",
272
+ "signature": "roasted barbary duck breast served with sweet potato wedges and mange tout with a red wine sauce",
273
+ "type": "restaurant"
274
+ },
275
+ {
276
+ "location": [
277
+ 52.202449,
278
+ 0.141062
279
+ ],
280
+ "address": "2 sturton street city centre",
281
+ "area": "centre",
282
+ "food": "gastropub",
283
+ "id": "19188",
284
+ "introduction": "the backstreet bistro is a gastropub with a separate bar area serving a couple of good real ales and a dining room serving modern european food . there is a decked area to sit out in during the summer months",
285
+ "name": "backstreet bistro",
286
+ "phone": "01223306306",
287
+ "postcode": "cb12qa",
288
+ "pricerange": "expensive",
289
+ "type": "restaurant"
290
+ },
291
+ {
292
+ "location": [
293
+ 52.215486,
294
+ 0.111167
295
+ ],
296
+ "address": "68 histon road chesterton",
297
+ "area": "west",
298
+ "food": "indian",
299
+ "id": "19266",
300
+ "introduction": "tandoori palace serve a variety of indian and bangladeshi dishes and can cater for private parties of up to 110 guests upon request",
301
+ "name": "tandoori palace",
302
+ "phone": "01223506055",
303
+ "postcode": "cb43le",
304
+ "pricerange": "expensive",
305
+ "type": "restaurant"
306
+ },
307
+ {
308
+ "location": [
309
+ 52.20025,
310
+ 0.11659
311
+ ],
312
+ "address": "doubletree by hilton cambridge granta place mill lane",
313
+ "area": "centre",
314
+ "food": "modern european",
315
+ "id": "10347",
316
+ "introduction": "",
317
+ "name": "riverside brasserie",
318
+ "phone": "01223259988",
319
+ "postcode": "cb21rt",
320
+ "pricerange": "moderate",
321
+ "type": "restaurant"
322
+ },
323
+ {
324
+ "location": [
325
+ 52.200422,
326
+ 0.135784
327
+ ],
328
+ "address": "74 mill road city centre",
329
+ "area": "centre",
330
+ "food": "indian",
331
+ "id": "19180",
332
+ "introduction": "kohinoor serves a variety of indian and vegetarian dishes at their restaurant a takeaway and delivery service is also available",
333
+ "name": "kohinoor",
334
+ "phone": "01223323639",
335
+ "postcode": "cb12as",
336
+ "pricerange": "cheap",
337
+ "type": "restaurant"
338
+ },
339
+ {
340
+ "location": [
341
+ 52.190176,
342
+ 0.13699
343
+ ],
344
+ "address": "2 g cambridge leisure park cherry hinton road cherry hinton",
345
+ "area": "south",
346
+ "food": "mexican",
347
+ "id": "19194",
348
+ "introduction": "chiquito is a chain of inexpensive tex mex restaurant -s predominantly aimed at tourists . they serve a variety of mexican and north of the border food as well as a range of cocktails",
349
+ "name": "chiquito restaurant bar",
350
+ "phone": "01223400170",
351
+ "postcode": "cb17dy",
352
+ "pricerange": "expensive",
353
+ "type": "restaurant"
354
+ },
355
+ {
356
+ "location": [
357
+ 52.21032,
358
+ 0.11367
359
+ ],
360
+ "address": "21 - 24 northampton road",
361
+ "area": "west",
362
+ "food": "italian",
363
+ "id": "12700",
364
+ "introduction": "",
365
+ "name": "prezzo",
366
+ "phone": "01799521260",
367
+ "postcode": "cb30ad",
368
+ "pricerange": "moderate",
369
+ "type": "restaurant"
370
+ },
371
+ {
372
+ "location": [
373
+ 52.199332,
374
+ 0.138395
375
+ ],
376
+ "address": "88 mill road city centre",
377
+ "area": "centre",
378
+ "food": "chinese",
379
+ "id": "19185",
380
+ "introduction": "rice house serve a variety of popular chinese dishes at their restaurant",
381
+ "name": "rice house",
382
+ "phone": "01223367755",
383
+ "postcode": "cb12bd",
384
+ "pricerange": "cheap",
385
+ "type": "restaurant"
386
+ },
387
+ {
388
+ "location": [
389
+ 52.195416,
390
+ 0.13114
391
+ ],
392
+ "address": "59 hills road city centre",
393
+ "area": "centre",
394
+ "food": "lebanese",
395
+ "id": "19221",
396
+ "name": "ali baba",
397
+ "phone": "01462432565",
398
+ "postcode": "cb21nt",
399
+ "pricerange": "moderate",
400
+ "type": "restaurant"
401
+ },
402
+ {
403
+ "location": [
404
+ 52.202793,
405
+ 0.123488
406
+ ],
407
+ "address": "35 saint andrews street city centre",
408
+ "area": "centre",
409
+ "food": "international",
410
+ "id": "19235",
411
+ "introduction": "the varsity restaurant serves a variety of international and vegetarian dishes and can cater for private parties of up to 40 guests upon request",
412
+ "name": "the varsity restaurant",
413
+ "phone": "01223356060",
414
+ "postcode": "cb23ar",
415
+ "pricerange": "moderate",
416
+ "type": "restaurant"
417
+ },
418
+ {
419
+ "location": [
420
+ 52.207312,
421
+ 0.124201
422
+ ],
423
+ "address": "40270 king street city centre",
424
+ "area": "centre",
425
+ "food": "modern european",
426
+ "id": "19177",
427
+ "introduction": "darrys cookhouse and wine shop is an award winning drinking and dining restaurant and bar in the centre of cambridge",
428
+ "name": "darrys cookhouse and wine shop",
429
+ "phone": "01223505015",
430
+ "postcode": "cb11ln",
431
+ "pricerange": "expensive",
432
+ "type": "restaurant"
433
+ },
434
+ {
435
+ "location": [
436
+ 52.199289,
437
+ 0.13974
438
+ ],
439
+ "address": "mill road city centre",
440
+ "area": "centre",
441
+ "food": "indian",
442
+ "id": "19182",
443
+ "introduction": "the golden curry serves a variety of authentic indian dishes at their fully licensed restaurant",
444
+ "name": "the golden curry",
445
+ "phone": "01223329432",
446
+ "postcode": "cb12az",
447
+ "pricerange": "expensive",
448
+ "type": "restaurant"
449
+ },
450
+ {
451
+ "location": [
452
+ 52.212444,
453
+ 0.112823
454
+ ],
455
+ "address": "71 castle street city centre",
456
+ "area": "west",
457
+ "food": "indian",
458
+ "id": "19249",
459
+ "introduction": "cocum specialises in south indian cuisine using spices meat and vegetables from the kerala region there is also a take away option",
460
+ "name": "cocum",
461
+ "phone": "01223366668",
462
+ "postcode": "cb30ah",
463
+ "pricerange": "expensive",
464
+ "type": "restaurant"
465
+ },
466
+ {
467
+ "location": [
468
+ 52.20608,
469
+ 0.118215
470
+ ],
471
+ "address": "st . michael 's church trinity street city centre",
472
+ "area": "centre",
473
+ "food": "european",
474
+ "id": "19227",
475
+ "introduction": "digby trout is a chain of restaurant -s that are located in many of london 's premier tourist attractions . they serve modern european cuisine and are open for lunch and dinner . situated in st michaels church , michaelhouse cafe serves coffee sandwiches and lunch from a regularly changing menu",
476
+ "name": "michaelhouse cafe",
477
+ "phone": "01223309147",
478
+ "postcode": "cb21su",
479
+ "pricerange": "expensive",
480
+ "type": "restaurant"
481
+ },
482
+ {
483
+ "location": [
484
+ 52.199012,
485
+ 0.113196
486
+ ],
487
+ "address": "37 newnham road newnham",
488
+ "area": "west",
489
+ "food": "indian",
490
+ "id": "19255",
491
+ "introduction": "the rice boat serves an authentic kind of indian cuisine that originates from the villages of kerala where the spice trade originated",
492
+ "name": "rice boat",
493
+ "phone": "01223302800",
494
+ "postcode": "cb39ey",
495
+ "pricerange": "expensive",
496
+ "type": "restaurant"
497
+ },
498
+ {
499
+ "location": [
500
+ 52.19934,
501
+ 0.12146
502
+ ],
503
+ "address": "15 - 19 trumpington street",
504
+ "area": "centre",
505
+ "food": "european",
506
+ "id": "4607",
507
+ "introduction": "",
508
+ "name": "hotel du vin and bistro",
509
+ "phone": "01223227330",
510
+ "postcode": "cb21qa",
511
+ "pricerange": "moderate",
512
+ "signature": "",
513
+ "type": "restaurant"
514
+ },
515
+ {
516
+ "location": [
517
+ 52.212444,
518
+ 0.112823
519
+ ],
520
+ "address": "41518 castle street city centre",
521
+ "area": "west",
522
+ "food": "indian",
523
+ "id": "19250",
524
+ "introduction": "maharajah tandoori restaurant serve a variety of indian and tandoori dishes at their restaurant catering for private parties of up to 40 guests is available upon request",
525
+ "name": "maharajah tandoori restaurant",
526
+ "phone": "01223358399",
527
+ "postcode": "cb30ah",
528
+ "pricerange": "expensive",
529
+ "type": "restaurant"
530
+ },
531
+ {
532
+ "location": [
533
+ 52.20342,
534
+ 0.12171
535
+ ],
536
+ "address": "crowne plaza hotel 20 downing street",
537
+ "area": "centre",
538
+ "food": "international",
539
+ "id": "14742",
540
+ "introduction": "",
541
+ "name": "bloomsbury restaurant",
542
+ "phone": "08719429180",
543
+ "postcode": "cb23dt",
544
+ "pricerange": "moderate",
545
+ "signature": "coconut and red chilli monkfish",
546
+ "type": "restaurant"
547
+ },
548
+ {
549
+ "location": [
550
+ 52.210226,
551
+ 0.115646
552
+ ],
553
+ "address": "17 magdalene street city centre",
554
+ "area": "west",
555
+ "food": "vietnamese",
556
+ "id": "19248",
557
+ "introduction": "thanh binh serve a variety of vietnamese dishes as well as selling an assortment of tea and coffees",
558
+ "name": "thanh binh",
559
+ "phone": "01223362456",
560
+ "postcode": "cb30af",
561
+ "pricerange": "cheap",
562
+ "type": "restaurant"
563
+ },
564
+ {
565
+ "location": [
566
+ 52.20903,
567
+ 0.1183
568
+ ],
569
+ "address": "14 -16 bridge street",
570
+ "area": "centre",
571
+ "food": "spanish",
572
+ "id": "12566",
573
+ "introduction": "la tasca is a spanish tapas restaurant and bar offering over 30 tapas dishes",
574
+ "name": "la tasca",
575
+ "phone": "01223464630",
576
+ "postcode": "cb21uf",
577
+ "pricerange": "moderate",
578
+ "type": "restaurant"
579
+ },
580
+ {
581
+ "location": [
582
+ 52.215311,
583
+ 0.12593
584
+ ],
585
+ "address": "20 milton road chesterton",
586
+ "area": "north",
587
+ "food": "italian",
588
+ "id": "19259",
589
+ "introduction": "da vinci pizzeria serve an extensive range of pizza and italian dishes as well as some vegetarian options a takeaway and delivery service is also available",
590
+ "name": "da vinci pizzeria",
591
+ "phone": "01223351707",
592
+ "postcode": "cb41jy",
593
+ "pricerange": "cheap",
594
+ "type": "restaurant"
595
+ },
596
+ {
597
+ "location": [
598
+ 52.213742,
599
+ 0.1242
600
+ ],
601
+ "address": "22 chesterton road chesterton",
602
+ "area": "north",
603
+ "food": "french",
604
+ "id": "19264",
605
+ "name": "restaurant 2 two",
606
+ "phone": "01223351880",
607
+ "postcode": "cb43ax",
608
+ "pricerange": "expensive",
609
+ "type": "restaurant"
610
+ },
611
+ {
612
+ "location": [
613
+ 52.208055,
614
+ 0.118397
615
+ ],
616
+ "address": "12 st . johns street city centre",
617
+ "area": "centre",
618
+ "food": "chinese",
619
+ "id": "19228",
620
+ "introduction": "ugly duckling serves a variety of chinese dishes to eat in or take away they also offer 10 percent discount on takeaway orders",
621
+ "name": "ugly duckling",
622
+ "postcode": "cb21tw",
623
+ "pricerange": "expensive",
624
+ "type": "restaurant"
625
+ },
626
+ {
627
+ "location": [
628
+ 52.203,
629
+ 0.12375
630
+ ],
631
+ "address": "36 saint andrews street",
632
+ "area": "centre",
633
+ "food": "japanese",
634
+ "id": "12638",
635
+ "introduction": "",
636
+ "name": "wagamama",
637
+ "phone": "01223462354",
638
+ "postcode": "cb23ar",
639
+ "pricerange": "expensive",
640
+ "type": "restaurant"
641
+ },
642
+ {
643
+ "location": [
644
+ 52.204609,
645
+ 0.137976
646
+ ],
647
+ "address": "12 norfolk street city centre",
648
+ "area": "centre",
649
+ "food": "chinese",
650
+ "id": "19186",
651
+ "introduction": "lan hong house serves great value home cooked authentic chinese food with over 2 5 dishes available from the buffet",
652
+ "name": "lan hong house",
653
+ "phone": "01223350420",
654
+ "postcode": "cb12lf",
655
+ "pricerange": "moderate",
656
+ "type": "restaurant"
657
+ },
658
+ {
659
+ "location": [
660
+ 52.19017,
661
+ 0.13699
662
+ ],
663
+ "address": "cambridge leisure park clifton way",
664
+ "area": "south",
665
+ "food": "portuguese",
666
+ "id": "12238",
667
+ "introduction": "it 's nandos",
668
+ "name": "nandos",
669
+ "phone": "01223327908",
670
+ "postcode": "cb17dy",
671
+ "pricerange": "cheap",
672
+ "type": "restaurant"
673
+ },
674
+ {
675
+ "location": [
676
+ 52.1987,
677
+ 0.12578
678
+ ],
679
+ "address": "6 lensfield road",
680
+ "area": "centre",
681
+ "food": "british",
682
+ "id": "13071",
683
+ "introduction": "",
684
+ "name": "the oak bistro",
685
+ "phone": "01223323361",
686
+ "postcode": "cb21eg",
687
+ "pricerange": "moderate",
688
+ "signature": "chargrilled rib eye steak with truffle butter mixed salad and fries",
689
+ "type": "restaurant"
690
+ },
691
+ {
692
+ "location": [
693
+ 52.204387,
694
+ 0.117841
695
+ ],
696
+ "address": "4 kings parade city centre",
697
+ "area": "centre",
698
+ "food": "british",
699
+ "id": "19226",
700
+ "introduction": "the copper kettle serve a variety of english dishes at their restaurant including full english breakfast -s lunches , roast dinner -s and baked potatoes . a takeaway menu is also provided",
701
+ "name": "the copper kettle",
702
+ "phone": "01223365068",
703
+ "postcode": "cb21sj",
704
+ "pricerange": "moderate",
705
+ "type": "restaurant"
706
+ },
707
+ {
708
+ "location": [
709
+ 52.190176,
710
+ 0.13699
711
+ ],
712
+ "address": "cambridge leisure park clifton way cherry hinton",
713
+ "area": "south",
714
+ "food": "chinese",
715
+ "id": "19197",
716
+ "name": "the lucky star",
717
+ "phone": "01223244277",
718
+ "postcode": "cb17dy",
719
+ "pricerange": "cheap",
720
+ "type": "restaurant"
721
+ },
722
+ {
723
+ "location": [
724
+ 52.202598,
725
+ 0.118342
726
+ ],
727
+ "address": "51 trumpington street city centre",
728
+ "area": "centre",
729
+ "food": "british",
730
+ "id": "19224",
731
+ "introduction": "fitzbillies restaurant serves a variety of bistro style lunches , anglo - european a la carte evening meals , as well as teas coffees and cakes throughout the day . catering for private parties is available upon request",
732
+ "name": "fitzbillies restaurant",
733
+ "phone": "01223352500",
734
+ "postcode": "cb21rg",
735
+ "pricerange": "expensive",
736
+ "type": "restaurant"
737
+ },
738
+ {
739
+ "location": [
740
+ 52.200187,
741
+ 0.126407
742
+ ],
743
+ "address": "108 regent street city centre",
744
+ "area": "centre",
745
+ "food": "korean",
746
+ "id": "19216",
747
+ "introduction": "little seoul offer a variety of korean cuisine for lunch and dinner",
748
+ "name": "little seoul",
749
+ "phone": "01223308681",
750
+ "postcode": "cb21dp",
751
+ "pricerange": "expensive",
752
+ "type": "restaurant"
753
+ },
754
+ {
755
+ "location": [
756
+ 52.197349,
757
+ 0.145075
758
+ ],
759
+ "address": "196 mill road city centre",
760
+ "area": "centre",
761
+ "food": "turkish",
762
+ "id": "19189",
763
+ "introduction": "meze is a restaurant and bar that serves tasty and fresh turkish cuisine set in an informal relaxed atmosphere the bar area also serves a wide range of beers wines and spirits",
764
+ "name": "meze bar",
765
+ "postcode": "cb13nf",
766
+ "pricerange": "expensive",
767
+ "type": "restaurant"
768
+ },
769
+ {
770
+ "location": [
771
+ 52.201423,
772
+ 0.116661
773
+ ],
774
+ "address": "40210 millers yard city centre",
775
+ "area": "centre",
776
+ "food": "asian oriental",
777
+ "id": "19225",
778
+ "introduction": "dojo noodle bar serves a variety of japanese chinese vietnamese korean and malaysian dishes to eat in or take away sister restaurant to touzai",
779
+ "name": "dojo noodle bar",
780
+ "phone": "01223363471",
781
+ "postcode": "cb21rq",
782
+ "pricerange": "cheap",
783
+ "type": "restaurant"
784
+ },
785
+ {
786
+ "location": [
787
+ 52.210226,
788
+ 0.115646
789
+ ],
790
+ "address": "15 magdalene street city centre",
791
+ "area": "west",
792
+ "food": "italian",
793
+ "id": "19247",
794
+ "introduction": "la margherita serve a variety of italian and vegetarian dishes at their restaurant",
795
+ "name": "la margherita",
796
+ "phone": "01223315232",
797
+ "postcode": "cb30af",
798
+ "pricerange": "cheap",
799
+ "type": "restaurant"
800
+ },
801
+ {
802
+ "location": [
803
+ 52.207446,
804
+ 0.122788
805
+ ],
806
+ "address": "40428 king street city centre",
807
+ "area": "centre",
808
+ "food": "asian oriental",
809
+ "id": "19175",
810
+ "introduction": "yippee noodle bar serves a variety of oriental and vegetarian dishes at their restaurant they also have a bar area and offer a take away service",
811
+ "name": "yippee noodle bar",
812
+ "phone": "01223518111",
813
+ "postcode": "cb11lh",
814
+ "pricerange": "moderate",
815
+ "type": "restaurant"
816
+ },
817
+ {
818
+ "location": [
819
+ 52.215157,
820
+ 0.125015
821
+ ],
822
+ "address": "7 milton road chesterton",
823
+ "area": "north",
824
+ "food": "indian",
825
+ "id": "19263",
826
+ "name": "the nirala",
827
+ "phone": "01223360966",
828
+ "postcode": "cb41uy",
829
+ "pricerange": "moderate",
830
+ "type": "restaurant"
831
+ },
832
+ {
833
+ "location": [
834
+ 52.204703,
835
+ 0.133238
836
+ ],
837
+ "address": "183 east road city centre",
838
+ "area": "centre",
839
+ "food": "british",
840
+ "id": "19171",
841
+ "introduction": "cotto is a restaurant cafe and bakery all rolled in to 1 . the restaurant upstairs is open for dinner from wednesday to saturday consisting of 1 menu of between 3 to 5 dishes tailored to the day the cafe and bakery offer cakes and other delicacies",
842
+ "name": "cotto",
843
+ "phone": "01223302010",
844
+ "postcode": "cb11bg",
845
+ "pricerange": "moderate",
846
+ "type": "restaurant"
847
+ },
848
+ {
849
+ "location": [
850
+ 52.21031,
851
+ 0.11381
852
+ ],
853
+ "address": "21 - 24 northampton street",
854
+ "area": "west",
855
+ "food": "british",
856
+ "id": "14810",
857
+ "introduction": "",
858
+ "name": "saint johns chop house",
859
+ "phone": "01223353110",
860
+ "postcode": "cb30ad",
861
+ "pricerange": "moderate",
862
+ "signature": "barnsley chop braised potatoes roast celeriac red cabbage and port sauce",
863
+ "type": "restaurant"
864
+ },
865
+ {
866
+ "location": [
867
+ 52.209742,
868
+ 0.146975
869
+ ],
870
+ "address": "cambridge retail park newmarket road fen ditton",
871
+ "area": "east",
872
+ "food": "italian",
873
+ "id": "19275",
874
+ "introduction": "pizza hut is a large chain with restaurant -s nationwide offering convenience pizzas pasta and salads to eat in or take away",
875
+ "name": "pizza hut fen ditton",
876
+ "phone": "01223323737",
877
+ "postcode": "cb58wr",
878
+ "pricerange": "moderate",
879
+ "type": "restaurant"
880
+ },
881
+ {
882
+ "location": [
883
+ 52.198696,
884
+ 0.12578
885
+ ],
886
+ "address": "12 lensfield road city centre",
887
+ "area": "centre",
888
+ "food": "chinese",
889
+ "id": "19219",
890
+ "name": "golden house",
891
+ "phone": "01842753771",
892
+ "postcode": "cb21eg",
893
+ "pricerange": "cheap",
894
+ "type": "restaurant"
895
+ },
896
+ {
897
+ "location": [
898
+ 52.200187,
899
+ 0.126407
900
+ ],
901
+ "address": "86 regent street city centre",
902
+ "area": "centre",
903
+ "food": "asian oriental",
904
+ "id": "19215",
905
+ "introduction": "j restaurant offers a wide variety of sushi noodles and dim sum to eat in or takeaway a home delivery service is also available",
906
+ "name": "j restaurant",
907
+ "phone": "01223307581",
908
+ "postcode": "cb21dp",
909
+ "pricerange": "cheap",
910
+ "type": "restaurant"
911
+ },
912
+ {
913
+ "location": [
914
+ 52.20951,
915
+ 0.11669
916
+ ],
917
+ "address": "33 bridge street",
918
+ "area": "centre",
919
+ "food": "european",
920
+ "id": "6780",
921
+ "introduction": "",
922
+ "name": "galleria",
923
+ "phone": "01223362054",
924
+ "postcode": "cb21uw",
925
+ "pricerange": "moderate",
926
+ "signature": "poached fillets of monkfish in lemongrass with sweet red chilli cream sauce and tiger prawns with leeks and mushrooms served with rice",
927
+ "type": "restaurant"
928
+ },
929
+ {
930
+ "location": [
931
+ 52.204424,
932
+ 0.12046
933
+ ],
934
+ "address": "corn exchange street",
935
+ "area": "centre",
936
+ "food": "gastropub",
937
+ "id": "31390",
938
+ "introduction": "",
939
+ "name": "the cow pizza kitchen and bar",
940
+ "phone": "01223308871",
941
+ "postcode": "cb23qf",
942
+ "pricerange": "moderate",
943
+ "signature": "wasabi spiked hamburger",
944
+ "type": "restaurant"
945
+ },
946
+ {
947
+ "location": [
948
+ 52.199332,
949
+ 0.138395
950
+ ],
951
+ "address": "100 mill road city centre",
952
+ "area": "centre",
953
+ "food": "african",
954
+ "id": "19183",
955
+ "introduction": "bedouin serves algerian cuisine",
956
+ "name": "bedouin",
957
+ "phone": "01223367660",
958
+ "postcode": "cb12bd",
959
+ "pricerange": "expensive",
960
+ "type": "restaurant"
961
+ },
962
+ {
963
+ "location": [
964
+ 52.206098,
965
+ 0.118713
966
+ ],
967
+ "address": "2 rose crescent city centre",
968
+ "area": "centre",
969
+ "food": "mediterranean",
970
+ "id": "19238",
971
+ "introduction": "the gardenia serves a variety of authentic greek and mediterranean dishes at their restaurant catering for private parties of up to 2 5 guests is available upon request",
972
+ "name": "the gardenia",
973
+ "phone": "01223356354",
974
+ "postcode": "cb23ll",
975
+ "pricerange": "cheap",
976
+ "type": "restaurant"
977
+ },
978
+ {
979
+ "location": [
980
+ 52.201116,
981
+ 0.125712
982
+ ],
983
+ "address": "47 - 53 regent street",
984
+ "area": "centre",
985
+ "food": "italian",
986
+ "id": "29652",
987
+ "introduction": "",
988
+ "name": "zizzi cambridge",
989
+ "phone": "01223365599",
990
+ "postcode": "cb21ab",
991
+ "pricerange": "cheap",
992
+ "signature": "piccante rustica pizza , a spicy sausage salami mascarpone and roquito chilli",
993
+ "type": "restaurant"
994
+ },
995
+ {
996
+ "location": [
997
+ 52.212992,
998
+ 0.157569
999
+ ],
1000
+ "address": "newmarket road fen ditton",
1001
+ "area": "east",
1002
+ "food": "indian",
1003
+ "id": "19272",
1004
+ "introduction": "pipasha restaurant serves a variety of indian dishes to eat in or take away a delivery service is also available",
1005
+ "name": "pipasha restaurant",
1006
+ "phone": "01223577786",
1007
+ "postcode": "cb58pa",
1008
+ "pricerange": "expensive",
1009
+ "type": "restaurant"
1010
+ },
1011
+ {
1012
+ "location": [
1013
+ 52.203,
1014
+ 0.12375
1015
+ ],
1016
+ "address": "33 - 34 saint andrews street",
1017
+ "area": "centre",
1018
+ "food": "portuguese",
1019
+ "id": "12237",
1020
+ "introduction": "",
1021
+ "name": "nandos city centre",
1022
+ "phone": "01223327908",
1023
+ "postcode": "cb23ar",
1024
+ "pricerange": "cheap",
1025
+ "type": "restaurant"
1026
+ },
1027
+ {
1028
+ "location": [
1029
+ 52.213853,
1030
+ 0.125509
1031
+ ],
1032
+ "address": "victoria avenue chesterton",
1033
+ "area": "north",
1034
+ "food": "indian",
1035
+ "id": "19257",
1036
+ "name": "royal spice",
1037
+ "phone": "01733553355",
1038
+ "postcode": "cb41eh",
1039
+ "pricerange": "cheap",
1040
+ "type": "restaurant"
1041
+ },
1042
+ {
1043
+ "location": [
1044
+ 52.215311,
1045
+ 0.12593
1046
+ ],
1047
+ "address": "milton road chesterton",
1048
+ "area": "north",
1049
+ "food": "chinese",
1050
+ "id": "19260",
1051
+ "introduction": "a unique treat for all lovers of chinese cuisine . from the spice islands to the food streets of beijing and the finest ocean catch .",
1052
+ "name": "hakka",
1053
+ "phone": "01223568988",
1054
+ "postcode": "cb41jy",
1055
+ "pricerange": "expensive",
1056
+ "type": "restaurant"
1057
+ },
1058
+ {
1059
+ "location": [
1060
+ 52.206098,
1061
+ 0.118713
1062
+ ],
1063
+ "address": "4 - 6 rose crescent",
1064
+ "area": "centre",
1065
+ "food": "spanish",
1066
+ "id": "19237",
1067
+ "introduction": "",
1068
+ "name": "la raza",
1069
+ "phone": "01223464550",
1070
+ "postcode": "cb23ll",
1071
+ "pricerange": "cheap",
1072
+ "signature": "seafood paella",
1073
+ "type": "restaurant"
1074
+ },
1075
+ {
1076
+ "location": [
1077
+ 52.200187,
1078
+ 0.126407
1079
+ ],
1080
+ "address": "72 regent street city centre",
1081
+ "area": "centre",
1082
+ "food": "indian",
1083
+ "id": "19218",
1084
+ "introduction": "the gandhi serves a variety of indian and bangladeshi dishes at their restaurant to eat in or take away . catering for private parties of up to 140 guests is available upon request",
1085
+ "name": "the gandhi",
1086
+ "phone": "01223353942",
1087
+ "postcode": "cb21dp",
1088
+ "pricerange": "cheap",
1089
+ "type": "restaurant"
1090
+ },
1091
+ {
1092
+ "location": [
1093
+ 52.220757,
1094
+ 0.111564
1095
+ ],
1096
+ "address": "191 histon road chesterton",
1097
+ "area": "north",
1098
+ "food": "chinese",
1099
+ "id": "19265",
1100
+ "introduction": "the golden wok serves a variety of traditional chinese meal -s including sweet and sour dishes as well as rice and noodles",
1101
+ "name": "golden wok",
1102
+ "phone": "01223350688",
1103
+ "postcode": "cb43hl",
1104
+ "pricerange": "moderate",
1105
+ "type": "restaurant"
1106
+ },
1107
+ {
1108
+ "location": [
1109
+ 52.215077,
1110
+ 0.112421
1111
+ ],
1112
+ "address": "205 victoria road chesterton",
1113
+ "area": "west",
1114
+ "food": "indian",
1115
+ "id": "19267",
1116
+ "name": "meghna",
1117
+ "phone": "01223727410",
1118
+ "postcode": "cb43lf",
1119
+ "pricerange": "moderate",
1120
+ "type": "restaurant"
1121
+ },
1122
+ {
1123
+ "location": [
1124
+ 52.196862,
1125
+ 0.129248
1126
+ ],
1127
+ "address": "hills road city centre",
1128
+ "area": "centre",
1129
+ "food": "indian",
1130
+ "id": "19220",
1131
+ "introduction": "the saffron brasserie serve a variety of dishes from their contemporary indian and bangladeshi menu . catering for private parties of up to 100 guests is available upon request",
1132
+ "name": "saffron brasserie",
1133
+ "phone": "01223354679",
1134
+ "postcode": "cb21la",
1135
+ "pricerange": "expensive",
1136
+ "type": "restaurant"
1137
+ },
1138
+ {
1139
+ "location": [
1140
+ 52.210013,
1141
+ 0.118007
1142
+ ],
1143
+ "address": "thompsons lane fen ditton",
1144
+ "area": "centre",
1145
+ "food": "mediterranean",
1146
+ "id": "19268",
1147
+ "name": "la mimosa",
1148
+ "phone": "01223362525",
1149
+ "postcode": "cb58aq",
1150
+ "pricerange": "expensive",
1151
+ "type": "restaurant"
1152
+ },
1153
+ {
1154
+ "location": [
1155
+ 52.206111,
1156
+ 0.132969
1157
+ ],
1158
+ "address": "39 burleigh street city centre",
1159
+ "area": "centre",
1160
+ "food": "chinese",
1161
+ "id": "19173",
1162
+ "introduction": "shanghai family restaurant comprises a french cafe on the lower level and a chinese restaurant upstairs",
1163
+ "name": "shanghai family restaurant",
1164
+ "phone": "01223301761",
1165
+ "postcode": "cb11dg",
1166
+ "pricerange": "moderate",
1167
+ "type": "restaurant"
1168
+ },
1169
+ {
1170
+ "location": [
1171
+ 52.200693,
1172
+ 0.119744
1173
+ ],
1174
+ "address": "the little rose 37 trumpington street",
1175
+ "area": "centre",
1176
+ "food": "seafood",
1177
+ "id": "19223",
1178
+ "introduction": "using the freshest seafood from the loch of the same name , loch fyne restaurant -s serve a variety of shellfish and smoked fish all of which are complimented by an extensive wine list . non - seafood dishes are also available",
1179
+ "name": "loch fyne",
1180
+ "phone": "01223362433",
1181
+ "postcode": "cb21qy",
1182
+ "pricerange": "expensive",
1183
+ "type": "restaurant"
1184
+ },
1185
+ {
1186
+ "location": [
1187
+ 52.20143,
1188
+ 0.11664
1189
+ ],
1190
+ "address": "3 - 5 millers yard mill lane",
1191
+ "area": "centre",
1192
+ "food": "indian",
1193
+ "id": "15275",
1194
+ "introduction": "",
1195
+ "name": "mahal of cambridge",
1196
+ "phone": "01223360409",
1197
+ "postcode": "cb21rq",
1198
+ "pricerange": "cheap",
1199
+ "signature": "chicken tikka masala",
1200
+ "type": "restaurant"
1201
+ },
1202
+ {
1203
+ "location": [
1204
+ 52.208252,
1205
+ 0.119957
1206
+ ],
1207
+ "address": "jesus lane fen ditton",
1208
+ "area": "centre",
1209
+ "food": "italian",
1210
+ "id": "19269",
1211
+ "introduction": "the simple menu and kitchen concept at pizza express has retained its freshly made ideal , and you can still watch your pizza being prepared for you . this branch has live jazz music",
1212
+ "name": "pizza express fen ditton",
1213
+ "phone": "01223324033",
1214
+ "postcode": "cb58ba",
1215
+ "pricerange": "moderate",
1216
+ "type": "restaurant"
1217
+ },
1218
+ {
1219
+ "location": [
1220
+ 52.199012,
1221
+ 0.113196
1222
+ ],
1223
+ "address": "35 newnham road newnham",
1224
+ "area": "west",
1225
+ "food": "thai",
1226
+ "id": "19256",
1227
+ "introduction": "sala thong serves a variety of thai dishes at their restaurant catering for private parties of up to 40 guests is available upon request",
1228
+ "name": "sala thong",
1229
+ "phone": "01223323178",
1230
+ "postcode": "cb39ey",
1231
+ "pricerange": "expensive",
1232
+ "type": "restaurant"
1233
+ },
1234
+ {
1235
+ "location": [
1236
+ 52.215157,
1237
+ 0.125015
1238
+ ],
1239
+ "address": "cambridge city football club milton road chesterton",
1240
+ "area": "north",
1241
+ "id": "19262",
1242
+ "introduction": "located in cambridge city football club , city stop restaurant serve a variety of english and italian dishes as well as offering a selection of vegetarian options catering for corporate events and private parties of up to 100 guests is available upon request .",
1243
+ "name": "city stop restaurant",
1244
+ "phone": "01223363270",
1245
+ "postcode": "cb41uy",
1246
+ "pricerange": "expensive",
1247
+ "food": "european",
1248
+ "type": "restaurant"
1249
+ },
1250
+ {
1251
+ "location": [
1252
+ 52.218164,
1253
+ 0.143209
1254
+ ],
1255
+ "address": "169 high street chesterton chesterton",
1256
+ "area": "north",
1257
+ "food": "asian oriental",
1258
+ "id": "19261",
1259
+ "introduction": "saigon city serve vietnamese chinese and thai cuisine to eat in or take away",
1260
+ "name": "saigon city",
1261
+ "phone": "01223356555",
1262
+ "postcode": "cb41nl",
1263
+ "pricerange": "expensive",
1264
+ "type": "restaurant"
1265
+ },
1266
+ {
1267
+ "location": [
1268
+ 52.189484,
1269
+ 0.135465
1270
+ ],
1271
+ "address": "10 homerton street city centre",
1272
+ "area": "south",
1273
+ "food": "chinese",
1274
+ "id": "19246",
1275
+ "introduction": "peking resturant cook from fresh ingredients . they specialise in sichuan and hunan dishes",
1276
+ "name": "peking restaurant",
1277
+ "phone": "01223354755",
1278
+ "postcode": "cb28nx",
1279
+ "pricerange": "expensive",
1280
+ "type": "restaurant"
1281
+ },
1282
+ {
1283
+ "location": [
1284
+ 52.190176,
1285
+ 0.13699
1286
+ ],
1287
+ "address": "cambridge leisure park clifton way cherry hinton",
1288
+ "area": "south",
1289
+ "food": "italian",
1290
+ "id": "19195",
1291
+ "introduction": "frankie and bennys has a traditional 1950s new york feel to it with its original family photographs , traditional wooden furniture and period music . they serve a wide range of authentic american and italian dishes .",
1292
+ "name": "frankie and bennys",
1293
+ "phone": "01223412430",
1294
+ "postcode": "cb17dy",
1295
+ "pricerange": "expensive",
1296
+ "type": "restaurant"
1297
+ },
1298
+ {
1299
+ "location": [
1300
+ 52.22414,
1301
+ 0.09194
1302
+ ],
1303
+ "address": "hotel felix whitehouse lane huntingdon road",
1304
+ "area": "west",
1305
+ "food": "british",
1306
+ "id": "7492",
1307
+ "introduction": "critically acclaimed food in luxurious and stylish surroundings , overlooking the hotel -s lush gardens .",
1308
+ "name": "graffiti",
1309
+ "phone": "01223277977",
1310
+ "postcode": "cb30lx",
1311
+ "pricerange": "expensive",
1312
+ "signature": "panfried fillet of brill tempura of langoustine crushed garden peas shellfish basil nage",
1313
+ "type": "restaurant"
1314
+ },
1315
+ {
1316
+ "location": [
1317
+ 52.199012,
1318
+ 0.113196
1319
+ ],
1320
+ "address": "31 newnham road newnham",
1321
+ "area": "west",
1322
+ "food": "indian",
1323
+ "id": "19254",
1324
+ "introduction": "indian house serve a variety of indian dishes to eat in or take away they also have a selection of english dishes on their menu",
1325
+ "name": "india house",
1326
+ "phone": "01223461661",
1327
+ "postcode": "cb39ey",
1328
+ "pricerange": "expensive",
1329
+ "type": "restaurant"
1330
+ },
1331
+ {
1332
+ "location": [
1333
+ 52.217736,
1334
+ 0.102505
1335
+ ],
1336
+ "address": "cambridge lodge hotel 139 huntingdon road city centre",
1337
+ "area": "west",
1338
+ "food": "european",
1339
+ "id": "19252",
1340
+ "introduction": "located in the cambridge lodge hotel , this restaurant serves a variety of european and vegetarian dishes and can cater for private parties of up to 20 guests upon request .",
1341
+ "name": "cambridge lodge restaurant",
1342
+ "phone": "01223355166",
1343
+ "postcode": "cb30dq",
1344
+ "pricerange": "expensive",
1345
+ "type": "restaurant"
1346
+ },
1347
+ {
1348
+ "location": [
1349
+ 52.212992,
1350
+ 0.157569
1351
+ ],
1352
+ "address": "grafton hotel 619 newmarket road fen ditton",
1353
+ "area": "east",
1354
+ "food": "british",
1355
+ "id": "19271",
1356
+ "introduction": "located in the grafton hotel this restaurant serves a variety of english and vegetarian dishes from their a la carte and carvery menu . they also have a bar area",
1357
+ "name": "grafton hotel restaurant",
1358
+ "phone": "01223241387",
1359
+ "postcode": "cb58pa",
1360
+ "pricerange": "expensive",
1361
+ "type": "restaurant"
1362
+ },
1363
+ {
1364
+ "location": [
1365
+ 52.214531,
1366
+ 0.127298
1367
+ ],
1368
+ "address": "66 chesterton road chesterton",
1369
+ "area": "north",
1370
+ "food": "chinese",
1371
+ "id": "19258",
1372
+ "introduction": "the hotpot serves a variety of chinese dishes at their restaurant and can cater for private parties of up to 5 five guests upon request",
1373
+ "name": "the hotpot",
1374
+ "phone": "01223366552",
1375
+ "postcode": "cb41ep",
1376
+ "pricerange": "expensive",
1377
+ "type": "restaurant"
1378
+ },
1379
+ {
1380
+ "location": [
1381
+ 52.20984,
1382
+ 0.11793
1383
+ ],
1384
+ "address": "quayside off bridge street",
1385
+ "area": "centre",
1386
+ "food": "modern european",
1387
+ "id": "7236",
1388
+ "introduction": "",
1389
+ "name": "the river bar steakhouse and grill",
1390
+ "phone": "01223307030",
1391
+ "postcode": "cb58aq",
1392
+ "pricerange": "cheap",
1393
+ "signature": "lobster mac and cheese",
1394
+ "type": "restaurant"
1395
+ },
1396
+ {
1397
+ "location": [
1398
+ 52.207312,
1399
+ 0.124201
1400
+ ],
1401
+ "address": "54 king street city centre",
1402
+ "area": "centre",
1403
+ "food": "italian",
1404
+ "id": "19176",
1405
+ "introduction": "clowns cafe serve a variety of drinks as well as italian dishes such as pasta ciabatta and salads",
1406
+ "name": "clowns cafe",
1407
+ "phone": "01223355711",
1408
+ "postcode": "cb11ln",
1409
+ "pricerange": "expensive",
1410
+ "type": "restaurant"
1411
+ },
1412
+ {
1413
+ "location": [
1414
+ 52.209632,
1415
+ 0.117213
1416
+ ],
1417
+ "address": "30 bridge street city centre",
1418
+ "area": "centre",
1419
+ "food": "turkish",
1420
+ "id": "19232",
1421
+ "introduction": "anatolia is a basement restaurant that serves a variety of turkish and vegetarian dishes and cater for private parties of up to 80 guests upon request",
1422
+ "name": "anatolia",
1423
+ "phone": "01223362372",
1424
+ "postcode": "cb21uj",
1425
+ "pricerange": "moderate",
1426
+ "type": "restaurant"
1427
+ },
1428
+ {
1429
+ "location": [
1430
+ 52.204609,
1431
+ 0.137976
1432
+ ],
1433
+ "address": "8 norfolk street city centre",
1434
+ "area": "centre",
1435
+ "food": "indian",
1436
+ "id": "19187",
1437
+ "name": "panahar",
1438
+ "phone": "01223355012",
1439
+ "postcode": "cb12lf",
1440
+ "pricerange": "expensive",
1441
+ "type": "restaurant"
1442
+ },
1443
+ {
1444
+ "location": [
1445
+ 52.207702,
1446
+ 0.133982
1447
+ ],
1448
+ "address": "napier street city centre",
1449
+ "area": "centre",
1450
+ "food": "chinese",
1451
+ "id": "19174",
1452
+ "introduction": "tang chinese is a buffet restaurant and bar serving a variety of dishes for lunch and dinner there is also a takeaway menu available",
1453
+ "name": "tang chinese",
1454
+ "phone": "01223357187",
1455
+ "postcode": "cb11hr",
1456
+ "pricerange": "expensive",
1457
+ "type": "restaurant"
1458
+ },
1459
+ {
1460
+ "location": [
1461
+ 52.20683,
1462
+ 0.1192
1463
+ ],
1464
+ "address": "34 - 35 green street",
1465
+ "area": "centre",
1466
+ "food": "gastropub",
1467
+ "id": "12482",
1468
+ "introduction": "slug lettuce is a premium high street bar that serves a wide range of restaurant quality food to suit all occasions and appetites .",
1469
+ "name": "the slug and lettuce",
1470
+ "postcode": "cb23ju",
1471
+ "pricerange": "expensive",
1472
+ "type": "restaurant"
1473
+ },
1474
+ {
1475
+ "location": [
1476
+ 52.209003,
1477
+ 0.118661
1478
+ ],
1479
+ "address": "5 jordans yard bridge street city centre",
1480
+ "area": "centre",
1481
+ "food": "indian",
1482
+ "id": "19231",
1483
+ "introduction": "curry king serve a variety of indian dishes to eat in or take away catering for private parties of up to 40 guests is available upon request",
1484
+ "name": "curry king",
1485
+ "phone": "01223324351",
1486
+ "postcode": "cb21ug",
1487
+ "pricerange": "expensive",
1488
+ "type": "restaurant"
1489
+ },
1490
+ {
1491
+ "location": [
1492
+ 52.214201,
1493
+ 0.108588
1494
+ ],
1495
+ "address": "huntingdon road city centre",
1496
+ "area": "west",
1497
+ "food": "british",
1498
+ "id": "19251",
1499
+ "introduction": "",
1500
+ "name": "travellers rest",
1501
+ "phone": "01223276182",
1502
+ "postcode": "cb30df",
1503
+ "pricerange": "expensive",
1504
+ "type": "restaurant"
1505
+ },
1506
+ {
1507
+ "location": [
1508
+ 52.199332,
1509
+ 0.138395
1510
+ ],
1511
+ "address": "106 mill road city centre",
1512
+ "area": "centre",
1513
+ "food": "indian",
1514
+ "id": "19184",
1515
+ "introduction": "curry queen is the most popular indian restaurant in cambridge serving good indian cuisine including all the usual dishes",
1516
+ "name": "curry queen",
1517
+ "phone": "01223351027",
1518
+ "postcode": "cb12bd",
1519
+ "pricerange": "expensive",
1520
+ "type": "restaurant"
1521
+ },
1522
+ {
1523
+ "location": [
1524
+ 52.196967,
1525
+ 0.149286
1526
+ ],
1527
+ "address": "290 mill road city centre",
1528
+ "area": "east",
1529
+ "food": "gastropub",
1530
+ "id": "19190",
1531
+ "name": "royal standard",
1532
+ "phone": "01223247877",
1533
+ "postcode": "cb13nl",
1534
+ "pricerange": "expensive",
1535
+ "type": "restaurant"
1536
+ },
1537
+ {
1538
+ "location": [
1539
+ 52.211144,
1540
+ 0.163247
1541
+ ],
1542
+ "address": "7 barnwell road fen ditton",
1543
+ "area": "east",
1544
+ "food": "indian",
1545
+ "id": "19274",
1546
+ "introduction": "rajmahal serves traditional indian cuisine accomapnied by a broad wine list with beers and spirits also available",
1547
+ "name": "rajmahal",
1548
+ "phone": "01223244955",
1549
+ "postcode": "cb58rg",
1550
+ "pricerange": "moderate",
1551
+ "type": "restaurant"
1552
+ },
1553
+ {
1554
+ "location": [
1555
+ 52.206111,
1556
+ 0.132969
1557
+ ],
1558
+ "address": "21 burleigh street city centre",
1559
+ "area": "centre",
1560
+ "food": "chinese",
1561
+ "id": "19172",
1562
+ "name": "hk fusion",
1563
+ "phone": "01223355909",
1564
+ "postcode": "cb11dg",
1565
+ "pricerange": "expensive",
1566
+ "type": "restaurant"
1567
+ },
1568
+ {
1569
+ "location": [
1570
+ 52.207312,
1571
+ 0.124201
1572
+ ],
1573
+ "address": "king street city centre",
1574
+ "area": "centre",
1575
+ "food": "turkish",
1576
+ "id": "19178",
1577
+ "introduction": "efes restaurant serve a variety of turkish dishes including kebabs in truly authentic surroundings .",
1578
+ "name": "efes restaurant",
1579
+ "phone": "01223500005",
1580
+ "postcode": "cb11ln",
1581
+ "pricerange": "moderate",
1582
+ "type": "restaurant"
1583
+ },
1584
+ {
1585
+ "location": [
1586
+ 52.20103,
1587
+ 0.126023
1588
+ ],
1589
+ "address": "regent street city centre",
1590
+ "area": "centre",
1591
+ "food": "north american",
1592
+ "id": "19209",
1593
+ "introduction": "gourmet burger kitchen has a trendy interior and , although a bit more expensive than the average high street burger joint , the delicious burgers and other dishes are huge and freshly prepared with large side orders to match . catering for vegetarians is provided",
1594
+ "name": "gourmet burger kitchen",
1595
+ "phone": "01223312598",
1596
+ "postcode": "cb21ab",
1597
+ "pricerange": "expensive",
1598
+ "type": "restaurant"
1599
+ },
1600
+ {
1601
+ "location": [
1602
+ 52.205442,
1603
+ 0.119706
1604
+ ],
1605
+ "address": "12 market hill city centre",
1606
+ "area": "centre",
1607
+ "food": "italian",
1608
+ "id": "19239",
1609
+ "introduction": "don pasquale pizzeria serves an extensive range of pizzas and italian dishes including pasta as well as a selection of beverages . catering for private parties of up to 80 guests is available upon request",
1610
+ "name": "don pasquale pizzeria",
1611
+ "phone": "01223350106",
1612
+ "postcode": "cb23nj",
1613
+ "pricerange": "expensive",
1614
+ "type": "restaurant"
1615
+ },
1616
+ {
1617
+ "location": [
1618
+ 52.20439,
1619
+ 0.11784
1620
+ ],
1621
+ "address": "1 kings parade",
1622
+ "area": "centre",
1623
+ "food": "british",
1624
+ "id": "6941",
1625
+ "introduction": "",
1626
+ "name": "the cambridge chop house",
1627
+ "phone": "01223359506",
1628
+ "postcode": "cb21sj",
1629
+ "pricerange": "expensive",
1630
+ "signature": "lamb barnsley chop potato and garlic bake greens and gravy",
1631
+ "type": "restaurant"
1632
+ },
1633
+ {
1634
+ "location": [
1635
+ 52.200422,
1636
+ 0.135784
1637
+ ],
1638
+ "address": "52 mill road city centre",
1639
+ "area": "centre",
1640
+ "food": "asian oriental",
1641
+ "id": "19181",
1642
+ "introduction": "kymmoy is a noodle bar serving a wide variety of chinese thai cuisine for lunch and dinner",
1643
+ "name": "kymmoy",
1644
+ "phone": "01223311911",
1645
+ "postcode": "cb12as",
1646
+ "pricerange": "expensive",
1647
+ "type": "restaurant"
1648
+ },
1649
+ {
1650
+ "location": [
1651
+ 52.186739,
1652
+ 0.173048
1653
+ ],
1654
+ "address": "43 high street cherry hinton cherry hinton",
1655
+ "area": "east",
1656
+ "food": "indian",
1657
+ "id": "19198",
1658
+ "name": "sitar tandoori",
1659
+ "phone": "01223249955",
1660
+ "postcode": "cb19hx",
1661
+ "pricerange": "expensive",
1662
+ "type": "restaurant"
1663
+ },
1664
+ {
1665
+ "location": [
1666
+ 52.200187,
1667
+ 0.126407
1668
+ ],
1669
+ "address": "84 regent street city centre",
1670
+ "area": "centre",
1671
+ "food": "mediterranean",
1672
+ "id": "19217",
1673
+ "introduction": "shiraz serves traditional mediterranean cuisine accompanied by an extensive wine list with beers and spirits also available",
1674
+ "name": "shiraz restaurant",
1675
+ "phone": "01223307581",
1676
+ "postcode": "cb21dp",
1677
+ "pricerange": "expensive",
1678
+ "type": "restaurant"
1679
+ },
1680
+ {
1681
+ "location": [
1682
+ 52.21251,
1683
+ 0.12774
1684
+ ],
1685
+ "address": "midsummer common",
1686
+ "area": "centre",
1687
+ "food": "british",
1688
+ "id": "508",
1689
+ "introduction": "",
1690
+ "name": "midsummer house restaurant",
1691
+ "phone": "01223369299",
1692
+ "postcode": "cb41 ha",
1693
+ "pricerange": "expensive",
1694
+ "signature": "seared scallops with truffle apple and celeriac",
1695
+ "type": "restaurant"
1696
+ },
1697
+ {
1698
+ "location": [
1699
+ 52.209028,
1700
+ 0.118296
1701
+ ],
1702
+ "address": "bridge street city centre",
1703
+ "area": "centre",
1704
+ "food": "french",
1705
+ "id": "19230",
1706
+ "introduction": "cote is a modern french bistro offering some of the classic and simple favourites of french cuisine",
1707
+ "name": "cote",
1708
+ "phone": "01223311053",
1709
+ "postcode": "cb21uf",
1710
+ "pricerange": "expensive",
1711
+ "type": "restaurant"
1712
+ },
1713
+ {
1714
+ "location": [
1715
+ 52.209632,
1716
+ 0.117213
1717
+ ],
1718
+ "address": "32 bridge street city centre",
1719
+ "area": "centre",
1720
+ "food": "italian",
1721
+ "id": "19234",
1722
+ "introduction": "caffe uno is a chain of cafe style restaurant -s that offer a wide selection of meal -s and snacks to suit any time of the day including an extensive breakfast menu and choice of hot or cold drinks",
1723
+ "name": "caffe uno",
1724
+ "phone": "01223448620",
1725
+ "postcode": "cb21uj",
1726
+ "pricerange": "expensive",
1727
+ "type": "restaurant"
1728
+ },
1729
+ {
1730
+ "location": [
1731
+ 52.197154,
1732
+ 0.129511
1733
+ ],
1734
+ "address": "17 hills road city centre",
1735
+ "area": "centre",
1736
+ "food": "chinese",
1737
+ "id": "19222",
1738
+ "introduction": "sesame restaurant and bar offers a wide variety of traditional chinese cuisine for lunch or dinner with wifi access and a television screen in the basement",
1739
+ "name": "sesame restaurant and bar",
1740
+ "phone": "01223358899",
1741
+ "postcode": "cb21nw",
1742
+ "pricerange": "expensive",
1743
+ "type": "restaurant"
1744
+ },
1745
+ {
1746
+ "location": [
1747
+ 52.206504,
1748
+ 0.119157
1749
+ ],
1750
+ "address": "24 green street city centre",
1751
+ "area": "centre",
1752
+ "food": "thai",
1753
+ "id": "19236",
1754
+ "introduction": "bangkok city serve a variety of authentic dishes to eat in or take away",
1755
+ "name": "bangkok city",
1756
+ "phone": "01223354382",
1757
+ "postcode": "cb23jx",
1758
+ "pricerange": "expensive",
1759
+ "type": "restaurant"
1760
+ }
1761
+ ]
data/raw/UBAR/db/taxi-dbase.db ADDED
File without changes
data/raw/UBAR/db/taxi_db.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "taxi_colors" : ["black","white","red","yellow","blue","grey"],
4
+ "taxi_types": ["toyota","skoda","bmw","honda","ford","audi","lexus","volvo","volkswagen","tesla"],
5
+ "taxi_phone": ["^[0-9]{10}$"]
6
+ }
7
+ ]
data/raw/UBAR/db/taxi_db_processed.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "taxi_colors": [
4
+ "black",
5
+ "white",
6
+ "red",
7
+ "yellow",
8
+ "blue",
9
+ "grey"
10
+ ],
11
+ "taxi_types": [
12
+ "toyota",
13
+ "skoda",
14
+ "bmw",
15
+ "honda",
16
+ "ford",
17
+ "audi",
18
+ "lexus",
19
+ "volvo",
20
+ "volkswagen",
21
+ "tesla"
22
+ ],
23
+ "taxi_phone": [
24
+ "^[0-9]{10}$"
25
+ ]
26
+ }
27
+ ]
data/raw/UBAR/db/train-dbase.db ADDED
Binary file (242 kB). View file
 
data/raw/UBAR/db/train_db.json ADDED
The diff for this file is too large to render. See raw diff
 
data/raw/UBAR/db/train_db_processed.json ADDED
The diff for this file is too large to render. See raw diff
 
data/raw/UBAR/db/value_set.json ADDED
The diff for this file is too large to render. See raw diff
 
data/raw/UBAR/db/value_set_processed.json ADDED
@@ -0,0 +1,2505 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "police": {},
3
+ "taxi": {
4
+ "leave": [
5
+ "02:45",
6
+ "24:45",
7
+ "08:45",
8
+ "16:15",
9
+ "04:45",
10
+ "24:00",
11
+ "12:30",
12
+ "12:00",
13
+ "02:30",
14
+ "19:00",
15
+ "19:45",
16
+ "13:00",
17
+ "22:15",
18
+ "13:45",
19
+ "15:15",
20
+ "01:30",
21
+ "16:45",
22
+ "07:15",
23
+ "20:00",
24
+ "12:15",
25
+ "21:00",
26
+ "17:15",
27
+ "08:00",
28
+ "10:30",
29
+ "21:15",
30
+ "15:00",
31
+ "05:30",
32
+ "13:15",
33
+ "01:15",
34
+ "06:15",
35
+ "01:00",
36
+ "18:30",
37
+ "06:45",
38
+ "06:00",
39
+ "07:45",
40
+ "06:30",
41
+ "17:45",
42
+ "18:15",
43
+ "19:30",
44
+ "24:30",
45
+ "21:30",
46
+ "03:45",
47
+ "21:25",
48
+ "14:30",
49
+ "17:00",
50
+ "14:00",
51
+ "04:30",
52
+ "23:30",
53
+ "03:30",
54
+ "20:15",
55
+ "24:15",
56
+ "02:00",
57
+ "07:00",
58
+ "23:00",
59
+ "08:15",
60
+ "22:00",
61
+ "10:15",
62
+ "16:30",
63
+ "02:15",
64
+ "18:00",
65
+ "14:15",
66
+ "10:00",
67
+ "17:30",
68
+ "15:45",
69
+ "05:45",
70
+ "19:15",
71
+ "20:45",
72
+ "23:45",
73
+ "15:30",
74
+ "13:30",
75
+ "11:45",
76
+ "05:00",
77
+ "03:15",
78
+ "03:20",
79
+ "07:30",
80
+ "23:15",
81
+ "16:00",
82
+ "09:30",
83
+ "after 02:30",
84
+ "11:30",
85
+ "09:45",
86
+ "09:15",
87
+ "09:00",
88
+ "15:25",
89
+ "08:30",
90
+ "14:45",
91
+ "04:00",
92
+ "11:00",
93
+ "22:45",
94
+ "11:15",
95
+ "03:00",
96
+ "04:15",
97
+ "1615",
98
+ "22:30",
99
+ "21:45",
100
+ "after 11:45",
101
+ "05:15",
102
+ "01:45",
103
+ "12:45",
104
+ "10:45",
105
+ "20:30",
106
+ "18:45",
107
+ "thursday",
108
+ "21:04",
109
+ "10:50",
110
+ "after 15:45",
111
+ "300",
112
+ "monday",
113
+ "friday",
114
+ "1"
115
+ ],
116
+ "destination": [
117
+ "express by holiday inn cambridge",
118
+ "dojo noodle bar",
119
+ "wandlebury country park",
120
+ "leverton house",
121
+ "the cambridge chop house",
122
+ "saint john 's college",
123
+ "galleria",
124
+ "churchill college",
125
+ "royal spice",
126
+ "all saints church",
127
+ "nandos city centre",
128
+ "cote",
129
+ "chiquito restaurant bar",
130
+ "saint johns chop house",
131
+ "the nirala",
132
+ "tang chinese",
133
+ "the junction",
134
+ "bangkok city",
135
+ "cambridge university botanic gardens",
136
+ "the lucky star",
137
+ "london liverpool street train station",
138
+ "la raza",
139
+ "soul tree nightclub",
140
+ "the cow pizza kitchen and bar",
141
+ "yippee noodle bar",
142
+ "christ 's college",
143
+ "el shaddai",
144
+ "castle galleries",
145
+ "saint catharine 's college",
146
+ "riverside brasserie",
147
+ "fitzbillies restaurant",
148
+ "cambridge",
149
+ "camb",
150
+ "the golden curry",
151
+ "wagamama",
152
+ "jinling noodle bar",
153
+ "maharajah tandoori restaurant",
154
+ "little saint mary 's church",
155
+ "camboats",
156
+ "cotto",
157
+ "nusha",
158
+ "acorn guest house",
159
+ "frankie and bennys",
160
+ "jesus green outdoor pool",
161
+ "aylesbray lodge guest house",
162
+ "golden wok",
163
+ "charlie chan",
164
+ "country folk museum",
165
+ "huntingdon marriott hotel",
166
+ "meze bar restaurant",
167
+ "vue cinema",
168
+ "adc theatre",
169
+ "rice house",
170
+ "graffiti",
171
+ "saigon city",
172
+ "city stop restaurant",
173
+ "carolina bed and breakfast",
174
+ "cafe jello gallery",
175
+ "little seoul",
176
+ "primavera",
177
+ "kohinoor",
178
+ "the place",
179
+ "loch fyne",
180
+ "rice boat",
181
+ "kings hedges learner pool",
182
+ "the cambridge belfry",
183
+ "cambridge artworks",
184
+ "pizza hut cherry hinton",
185
+ "cambridge train station",
186
+ "sitar tandoori",
187
+ "the gardenia",
188
+ "don pasquale pizzeria",
189
+ "milton country park",
190
+ "hamilton lodge",
191
+ "hobsons house",
192
+ "kirkwood house",
193
+ "archway house",
194
+ "the fitzwilliam museum",
195
+ "alexander bed and breakfast",
196
+ "cambridge museum of technology",
197
+ "midsummer house restaurant",
198
+ "allenbell",
199
+ "hakka",
200
+ "old schools",
201
+ "ashley hotel",
202
+ "de luca cucina and bar",
203
+ "cambridge lodge restaurant",
204
+ "efes restaurant",
205
+ "bedouin",
206
+ "club salsa",
207
+ "bloomsbury restaurant",
208
+ "hk fusion",
209
+ "rajmahal",
210
+ "lynne strover gallery",
211
+ "abbey pool and astroturf pitch",
212
+ "taj tandoori",
213
+ "royal standard",
214
+ "a and b guest house",
215
+ "parkside police station",
216
+ "curry garden",
217
+ "scudamores punting co",
218
+ "the lensfield hotel",
219
+ "the fez club",
220
+ "university arms hotel",
221
+ "la margherita",
222
+ "hotel du vin and bistro",
223
+ "pizza express fen ditton",
224
+ "hughes hall",
225
+ "gonville hotel",
226
+ "the gandhi",
227
+ "sidney sussex college",
228
+ "tenpin",
229
+ "ask",
230
+ "backstreet bistro",
231
+ "nandos",
232
+ "ballare",
233
+ "ali baba",
234
+ "india house",
235
+ "peking restaurant",
236
+ "meghna",
237
+ "the river bar steakhouse and grill",
238
+ "the cambridge punter",
239
+ "pipasha restaurant",
240
+ "prezzo",
241
+ "whale of a time",
242
+ "finches bed and breakfast",
243
+ "avalon",
244
+ "curry prince",
245
+ "da vinci pizzeria",
246
+ "corpus christi",
247
+ "holy trinity church",
248
+ "the varsity restaurant",
249
+ "saffron brasserie",
250
+ "downing college",
251
+ "sesame restaurant and bar",
252
+ "cambridge contemporary art",
253
+ "addenbrookes hospital",
254
+ "williams art and antiques",
255
+ "pembroke college",
256
+ "clare hall",
257
+ "cambridge arts theatre",
258
+ "shanghai family restaurant",
259
+ "king 's college",
260
+ "the cherry hinton village centre",
261
+ "cambridge and county folk museum",
262
+ "the hotpot",
263
+ "bridge guest house",
264
+ "ugly duckling",
265
+ "cocum",
266
+ "stazione restaurant and coffee bar",
267
+ "gourmet burger kitchen",
268
+ "la tasca",
269
+ "shiraz restaurant",
270
+ "byard art",
271
+ "sheep 's green and lammas land park fen causeway",
272
+ "caffe uno",
273
+ "broughton house gallery",
274
+ "the ghandi",
275
+ "kambar",
276
+ "the copper kettle",
277
+ "yu garden",
278
+ "trinity college",
279
+ "birmingham new street train station",
280
+ "funky fun house",
281
+ "eraina",
282
+ "man on the moon concert hall",
283
+ "tandoori palace",
284
+ "magdalene college",
285
+ "worth house",
286
+ "mumford theatre",
287
+ "pizza express",
288
+ "ely train station",
289
+ "lan hong house",
290
+ "mahal of cambridge",
291
+ "pizza hut city centre",
292
+ "golden house",
293
+ "alpha - milton guest house",
294
+ "regency gallery",
295
+ "darrys cookhouse and wine shop",
296
+ "cityroomz",
297
+ "ta",
298
+ "queen 's college",
299
+ "restaurant 1 7",
300
+ "arbury lodge guest house",
301
+ "the cambridge corn exchange",
302
+ "the oak bistro",
303
+ "cambridge county fair next to the city tourist museum",
304
+ "riverboat georgina",
305
+ "stansted airport train station",
306
+ "grafton hotel restaurant",
307
+ "thanh binh",
308
+ "autumn house",
309
+ "restaurant 2 two",
310
+ "jesus college",
311
+ "london kings cross train station",
312
+ "city centre north bed and breakfast",
313
+ "cherry hinton water play",
314
+ "travellers rest",
315
+ "the man on the moon",
316
+ "rosa 's bed and breakfast",
317
+ "the good luck chinese food takeaway",
318
+ "curry king",
319
+ "cambridge book and print gallery",
320
+ "st johns chop house",
321
+ "cherry hinton hall and grounds",
322
+ "anatolia",
323
+ "saint barnabas press gallery",
324
+ "j restaurant",
325
+ "parkside pools",
326
+ "kymmoy",
327
+ "scott polar museum",
328
+ "cineworld cinema",
329
+ "michaelhouse cafe",
330
+ "cambr",
331
+ "restaurant alimentum",
332
+ "zizzi cambridge",
333
+ "not museum of archaeology and anthropologymentioned",
334
+ "gonville and caius college",
335
+ "lovell lodge",
336
+ "fitzwilliam museum",
337
+ "sleeperz hotel",
338
+ "the slug and lettuce",
339
+ "whipple museum of the history of science",
340
+ "broxbourne train station",
341
+ "home from home",
342
+ "museum of archaelogy and anthropology",
343
+ "tandori in cambridge",
344
+ "gastropub",
345
+ "the anatolia",
346
+ "kettle 's yard",
347
+ "nirala",
348
+ "leicester train station",
349
+ "cambridge road church of christ",
350
+ "warkworth house",
351
+ "megna",
352
+ "grou",
353
+ "sala thong",
354
+ "gallery at 12 a high street",
355
+ "maharajah tandoori restaurant4",
356
+ "pizza hut fen ditton",
357
+ "museum of classical archaeology",
358
+ "the regent street city center",
359
+ "gandhi",
360
+ "emmanuel college",
361
+ "tranh binh",
362
+ "wankworth hotel",
363
+ "kambur",
364
+ "the missing sock",
365
+ "panahar",
366
+ "limehouse",
367
+ "finders corner newmarket road",
368
+ "people 's portraits exhibition at girton college",
369
+ "station road",
370
+ "la mimosa",
371
+ "clowns cafe",
372
+ "bishops stortford train station",
373
+ "hotel",
374
+ "nil",
375
+ "kings college",
376
+ "restaurant",
377
+ "attraction",
378
+ "stevenage train station",
379
+ "the galleria",
380
+ "queens ' college",
381
+ "great saint mary 's church",
382
+ "theathre",
383
+ "ruskin gallery",
384
+ "saint barnabas",
385
+ "peterborough train station",
386
+ "cambridge artw2orks",
387
+ "acorn house",
388
+ "ca",
389
+ "clare college",
390
+ "shiraz .",
391
+ "riverboat georginawd",
392
+ "mic",
393
+ "the gallery at 12",
394
+ "the soul tree",
395
+ "finches",
396
+ "london kings cross",
397
+ "bishops stortford"
398
+ ],
399
+ "departure": [
400
+ "christ 's college",
401
+ "kirkwood house",
402
+ "bridge guest house",
403
+ "cineworld cinema",
404
+ "gonville hotel",
405
+ "ashley hotel",
406
+ "arbury lodge guest house",
407
+ "worth house",
408
+ "city centre north bed and breakfast",
409
+ "the lensfield hotel",
410
+ "funky fun house",
411
+ "riverboat georgina",
412
+ "backstreet bistro",
413
+ "the junction",
414
+ "express by holiday inn cambridge",
415
+ "all saints church",
416
+ "sala thong",
417
+ "byard art",
418
+ "london kings cross train station",
419
+ "la raza",
420
+ "alexander bed and breakfast",
421
+ "cityroomz",
422
+ "hamilton lodge",
423
+ "alpha - milton guest house",
424
+ "el shaddai",
425
+ "restaurant alimentum",
426
+ "allenbell",
427
+ "churchill college",
428
+ "clare college",
429
+ "parkside pools",
430
+ "cambridge arts theatre",
431
+ "frankie and bennys",
432
+ "huntingdon marriott hotel",
433
+ "university arms hotel",
434
+ "acorn guest house",
435
+ "soul tree nightclub",
436
+ "ali baba",
437
+ "tandoori palace",
438
+ "saigon city",
439
+ "zizzi cambridge",
440
+ "wagamama",
441
+ "the cambridge belfry",
442
+ "milton country park",
443
+ "a and b guest house",
444
+ "city stop restaurant",
445
+ "grafton hotel restaurant",
446
+ "the man on the moon",
447
+ "king 's college",
448
+ "great saint mary 's church",
449
+ "the oak bistro",
450
+ "club salsa",
451
+ "loch fyne",
452
+ "the place",
453
+ "la mimosa",
454
+ "la margherita",
455
+ "restaurant 2 two",
456
+ "queens ' college",
457
+ "wandlebury country park",
458
+ "kymmoy",
459
+ "magdalene college",
460
+ "royal standard",
461
+ "kings lynn train station",
462
+ "the fez club",
463
+ "jesus green outdoor pool",
464
+ "vue cinema",
465
+ "little saint mary 's church",
466
+ "avalon",
467
+ "aylesbray lodge guest house",
468
+ "chinese city centre",
469
+ "thanh binh",
470
+ "yu garden",
471
+ "finches bed and breakfast",
472
+ "hakka",
473
+ "lovell lodge",
474
+ "kettle 's yard",
475
+ "bloomsbury restaurant",
476
+ "museum of classical archaeology",
477
+ "cherry hinton water play",
478
+ "camboats",
479
+ "pizza hut cherry hinton",
480
+ "abbey pool and astroturf pitch",
481
+ "pizza hut",
482
+ "taj tandoori",
483
+ "kings hedges learner pool",
484
+ "nandos city centre",
485
+ "hobsons house",
486
+ "carolina bed and breakfast",
487
+ "the golden curry",
488
+ "rosa 's bed and breakfast",
489
+ "the river bar steakhouse and grill",
490
+ "cafe jello gallery",
491
+ "the cambridge punter",
492
+ "the byard art museum",
493
+ "archway house",
494
+ "ugly duckling",
495
+ "cherry hinton hall and grounds",
496
+ "addenbrookes hospital",
497
+ "graffiti",
498
+ "cambridge artworks",
499
+ "broughton house gallery",
500
+ "the missing sock",
501
+ "autumn house",
502
+ "stazione restaurant and coffee bar",
503
+ "whale of a time",
504
+ "cambridge lodge restaurant",
505
+ "saint johns chop house",
506
+ "prezzo",
507
+ "rice boat",
508
+ "lan hong house",
509
+ "leverton house",
510
+ "kambar",
511
+ "hotel",
512
+ "museum of archaelogy and anthropology",
513
+ "saint catharine 's college",
514
+ "la tasca",
515
+ "cambridge",
516
+ "downing college",
517
+ "cocum",
518
+ "mumford theatre",
519
+ "cote",
520
+ "golden wok",
521
+ "cambridge university botanic gardens",
522
+ "charlie chan",
523
+ "corpus christi",
524
+ "old schools",
525
+ "cambridge belfry",
526
+ "jinling noodle bar",
527
+ "birmingham new street train station",
528
+ "meze bar restaurant",
529
+ "warkworth house",
530
+ "pizza express",
531
+ "gonville and caius college",
532
+ "cambridge contemporary art",
533
+ "primavera",
534
+ "adc theatre",
535
+ "bedouin",
536
+ "w",
537
+ "trinity college",
538
+ "nusha",
539
+ "the good luck chinese food takeaway",
540
+ "travellers rest",
541
+ "restaurant 1 7",
542
+ "pizza hut fen ditton",
543
+ "ask",
544
+ "cambridge and county folk museum",
545
+ "curry prince",
546
+ "the nirala",
547
+ "pembroke college",
548
+ "golden house",
549
+ "castle galleries",
550
+ "the fitzwilliam museum",
551
+ "galleria",
552
+ "jesus college",
553
+ "curry garden",
554
+ "anatolia",
555
+ "the gandhi",
556
+ "nandos",
557
+ "st . john 's college",
558
+ "clowns cafe",
559
+ "dojo noodle bar",
560
+ "panahar",
561
+ "whipple museum of the history of science",
562
+ "royal spice",
563
+ "clare hall",
564
+ "gallery at 12 a high street",
565
+ "pizza hut city centre",
566
+ "bishops stortford train station",
567
+ "ruskin gallery",
568
+ "sheep 's green and lammas land park fen causeway",
569
+ "home from home",
570
+ "parkside police station",
571
+ "scudamores punting co",
572
+ "the cherry hinton village centre",
573
+ "sesame restaurant and bar",
574
+ "broxbourne train station",
575
+ "sidney sussex college",
576
+ "chiquito restaurant bar",
577
+ "cambridge train station",
578
+ "saffron brasserie",
579
+ "pizza express fen ditton",
580
+ "tenpin",
581
+ "scott polar museum",
582
+ "rice house",
583
+ "caffee uno",
584
+ "cotto",
585
+ "corpus cristi",
586
+ "the varsity restaurant",
587
+ "limehouse",
588
+ "ely train station",
589
+ "hotel du vin and bistro",
590
+ "meghna",
591
+ "the gardenia",
592
+ "emmanuel college",
593
+ "saint barnabas press gallery",
594
+ "rajmahal",
595
+ "lynne strover gallery",
596
+ "cas",
597
+ "riverside brasserie",
598
+ "hughes hall",
599
+ "cherry hinton village center",
600
+ "the lucky star",
601
+ "bangkok city",
602
+ "kohinoor",
603
+ "don pasquale pizzeria",
604
+ "fitzbillies restaurant",
605
+ "acorn house",
606
+ "curry queen",
607
+ "ballare",
608
+ "the cambridge corn exchange",
609
+ "lens",
610
+ "cambridge museum of technology",
611
+ "the cambridge chop house",
612
+ "peterborough train station",
613
+ "london liverpool street",
614
+ "the copper kettle",
615
+ "holy trinity church",
616
+ "the slug and lettuce",
617
+ "williams art and antiques",
618
+ "the avalon",
619
+ "junction theatre",
620
+ "yippee noodle bar",
621
+ "da vinci pizzeria",
622
+ "maharajah tandoori restaurant",
623
+ "darrys cookhouse and wine shop",
624
+ "michaelhouse cafe",
625
+ "tang chinese",
626
+ "peking restaurant",
627
+ "saint john 's college",
628
+ "aylesbray lodge",
629
+ "the alexander bed and breakfast",
630
+ "ely",
631
+ "cambridge belfy",
632
+ "kings college",
633
+ "eraina",
634
+ "people 's portraits exhibition at girton college",
635
+ "gonville",
636
+ "caffe uno",
637
+ "the cow pizza kitchen and bar",
638
+ "mahal of cambridge",
639
+ "lovell ldoge",
640
+ "alyesbray lodge hotel",
641
+ "g",
642
+ "cambridge chop house",
643
+ "j restaurant",
644
+ "172 chestertown road",
645
+ "little seoul",
646
+ "stevenage train station",
647
+ "downing street",
648
+ "gourmet burger kitchen",
649
+ "cambridge towninfo centre",
650
+ "citiroomz",
651
+ "de luca cucina and bar",
652
+ "london liverpool street train station",
653
+ "cinema",
654
+ "museum",
655
+ "shiraz restaurant",
656
+ "clair hall",
657
+ "sitar tandoori",
658
+ "ca",
659
+ "cambridge book and print gallery",
660
+ "norwich train station",
661
+ "home",
662
+ "regency gallery",
663
+ "nstaot mentioned",
664
+ "new england",
665
+ "the hotpot",
666
+ "park",
667
+ "07:15",
668
+ "the allenbell"
669
+ ],
670
+ "arrive": [
671
+ "19:15",
672
+ "15:45",
673
+ "17:15",
674
+ "17:30",
675
+ "17:00",
676
+ "12:30",
677
+ "19:30",
678
+ "12:45",
679
+ "18:00",
680
+ "13:30",
681
+ "13:15",
682
+ "17:45",
683
+ "11:15",
684
+ "14:30",
685
+ "14:45",
686
+ "11:45",
687
+ "09:15",
688
+ "16:45",
689
+ "16:15",
690
+ "01:30",
691
+ "12:15",
692
+ "06:45",
693
+ "01:00",
694
+ "09:30",
695
+ "12:00",
696
+ "11:30",
697
+ "18:30",
698
+ "15:30",
699
+ "18:45",
700
+ "14:00",
701
+ "21:00",
702
+ "15:00",
703
+ "08:15",
704
+ "10:15",
705
+ "19:00",
706
+ "20:15",
707
+ "11:00",
708
+ "15:15",
709
+ "05:15",
710
+ "16:30",
711
+ "21:30",
712
+ "08:00",
713
+ "20:00",
714
+ "20:30",
715
+ "20:45",
716
+ "10:45",
717
+ "13:00",
718
+ "09:00",
719
+ "21:45",
720
+ "16:00",
721
+ "19:45",
722
+ "16,15",
723
+ "06:00",
724
+ "10:30",
725
+ "23:15",
726
+ "13:45",
727
+ "14:15",
728
+ "18:15",
729
+ "04:00",
730
+ "24:45",
731
+ "07:00",
732
+ "04:15",
733
+ "23:00",
734
+ "03:00",
735
+ "02:45",
736
+ "10:00",
737
+ "07:15",
738
+ "24:15",
739
+ "04:45",
740
+ "01:15",
741
+ "06:30",
742
+ "23:30",
743
+ "06:15",
744
+ "21:15",
745
+ "07:30",
746
+ "02:00",
747
+ "22:30",
748
+ "24:00",
749
+ "02:15",
750
+ "03:15",
751
+ "05:30",
752
+ "05:00",
753
+ "1145",
754
+ "03:30",
755
+ "01:45",
756
+ "22:15",
757
+ "03:45",
758
+ "09:45",
759
+ "17:05",
760
+ "1730",
761
+ "02:30",
762
+ "22:00",
763
+ "04:30",
764
+ "1700",
765
+ "24:30",
766
+ "15:23",
767
+ "08:30"
768
+ ],
769
+ "day": [
770
+ "wednesday"
771
+ ]
772
+ },
773
+ "restaurant": {
774
+ "name": [
775
+ "ugly duckling",
776
+ "prezzo",
777
+ "caffe uno",
778
+ "the golden curry",
779
+ "the gandhi",
780
+ "backstreet bistro",
781
+ "galleria",
782
+ "nandos",
783
+ "charlie chan",
784
+ "tandoori palace",
785
+ "the river bar steakhouse and grill",
786
+ "hotel du vin and bistro",
787
+ "fitzbillies restaurant",
788
+ "ali baba",
789
+ "clowns cafe",
790
+ "de luca cucina and bar",
791
+ "cambridge lodge restaurant",
792
+ "curry garden",
793
+ "dojo noodle bar",
794
+ "shanghai family restaurant",
795
+ "the lucky star",
796
+ "hakka",
797
+ "sesame restaurant and bar",
798
+ "golden house",
799
+ "the gardenia",
800
+ "efes restaurant",
801
+ "jinling noodle bar",
802
+ "saigon city",
803
+ "cocum",
804
+ "wagamama",
805
+ "bloomsbury restaurant",
806
+ "saffron brasserie",
807
+ "chiquito restaurant bar",
808
+ "travellers rest",
809
+ "yu garden",
810
+ "stazione restaurant and coffee bar",
811
+ "tang chinese",
812
+ "meze bar",
813
+ "the slug and lettuce",
814
+ "pizza express",
815
+ "da vinci pizzeria",
816
+ "restaurant 2 two",
817
+ "darrys cookhouse and wine shop",
818
+ "hk fusion",
819
+ "nandos city centre",
820
+ "la mimosa",
821
+ "the copper kettle",
822
+ "frankie and bennys",
823
+ "rice house",
824
+ "shiraz restaurant",
825
+ "the missing sock",
826
+ "kohinoor",
827
+ "rajmahal",
828
+ "restaurant 1 7",
829
+ "the good luck chinese food takeaway",
830
+ "midsummer house restaurant",
831
+ "rice boat",
832
+ "thanh binh",
833
+ "j restaurant",
834
+ "the hotpot",
835
+ "taj tandoori",
836
+ "zizzi cambridge",
837
+ "curry prince",
838
+ "the cambridge chop house",
839
+ "curry king",
840
+ "curry queen",
841
+ "the cow pizza kitchen and bar",
842
+ "loch fyne",
843
+ "golden wok",
844
+ "kymmoy",
845
+ "pizza hut cherry hinton",
846
+ "city stop restaurant",
847
+ "la margherita",
848
+ "ask restaurant",
849
+ "saint johns chop house",
850
+ "panahar",
851
+ "pipasha restaurant",
852
+ "grafton hotel restaurant",
853
+ "royal spice",
854
+ "yippee noodle bar",
855
+ "lan hong house",
856
+ "maharajah tandoori restaurant",
857
+ "michaelhouse cafe",
858
+ "anatolia",
859
+ "peking restaurant",
860
+ "cote",
861
+ "riverside brasserie",
862
+ "don pasquale pizzeria",
863
+ "meghna",
864
+ "india house",
865
+ "sala thong",
866
+ "the oak bistro",
867
+ "gourmet burger kitchen",
868
+ "the varsity restaurant",
869
+ "la raza",
870
+ "eraina",
871
+ "restaurant alimentum",
872
+ "graffiti",
873
+ "sitar tandoori",
874
+ "bedouin",
875
+ "cotto",
876
+ "the nirala",
877
+ "royal standard",
878
+ "pizza hut fen ditton",
879
+ "pizza hut city centre",
880
+ "mahal of cambridge",
881
+ "bangkok city",
882
+ "little seoul",
883
+ "la tasca",
884
+ "pizza express fen ditton",
885
+ "meze bar restaurant",
886
+ "indian",
887
+ "do n't care",
888
+ "cambri",
889
+ "copper kettle",
890
+ "charlie",
891
+ "pizza hut",
892
+ "city stop",
893
+ "ba",
894
+ "oak bistro",
895
+ "scudamores punt",
896
+ "lovel",
897
+ "tandoori",
898
+ "no",
899
+ "fi",
900
+ "lev",
901
+ "golden curry",
902
+ "hotpot",
903
+ "ask",
904
+ "worth house",
905
+ "lo",
906
+ "archway",
907
+ "molecular gastonomy",
908
+ "european",
909
+ "anatolia and efes restaurant",
910
+ "nirala",
911
+ "not metioned",
912
+ "cott",
913
+ "cambridge chop house",
914
+ "bridge",
915
+ "lucky star",
916
+ "clu",
917
+ "the",
918
+ "golden house golden house",
919
+ "limehouse",
920
+ "clowns",
921
+ "restaurant",
922
+ "parkside pools",
923
+ "the dojo noodle bar",
924
+ "nusha",
925
+ "hobson house",
926
+ "au",
927
+ "el shaddai",
928
+ "old school",
929
+ "el",
930
+ "cam",
931
+ "yes",
932
+ "gardenia",
933
+ "fin",
934
+ "efes",
935
+ "slug and lettuce",
936
+ "camboats",
937
+ "missing sock",
938
+ "grafton",
939
+ "nus",
940
+ "cambridge lodge",
941
+ "fitzbillies",
942
+ "hamilton lodge",
943
+ "gastropub",
944
+ "funky",
945
+ "cow pizza",
946
+ "ashley",
947
+ "ros",
948
+ "hobso",
949
+ "kitchen and bar",
950
+ "d",
951
+ "cityr",
952
+ "pipasha",
953
+ "seasame restaurant and bar",
954
+ "the alex",
955
+ "hu",
956
+ "1 7",
957
+ "shanghi family restaurant",
958
+ "cambridge be",
959
+ "dif",
960
+ "margherita",
961
+ "ac",
962
+ "bri",
963
+ "india",
964
+ "adden",
965
+ "ian hong house"
966
+ ],
967
+ "area": [
968
+ "west",
969
+ "centre",
970
+ "south",
971
+ "east",
972
+ "north"
973
+ ],
974
+ "pricerange": [
975
+ "cheap",
976
+ "moderate",
977
+ "expensive",
978
+ "do n't care"
979
+ ],
980
+ "food": [
981
+ "portuguese",
982
+ "vietnamese",
983
+ "italian",
984
+ "spanish",
985
+ "turkish",
986
+ "asian oriental",
987
+ "seafood",
988
+ "mexican",
989
+ "modern european",
990
+ "chinese",
991
+ "british",
992
+ "korean",
993
+ "north american",
994
+ "lebanese",
995
+ "mediterranean",
996
+ "international",
997
+ "french",
998
+ "european",
999
+ "japanese",
1000
+ "gastropub",
1001
+ "thai",
1002
+ "african",
1003
+ "indian",
1004
+ "australasian",
1005
+ "australian",
1006
+ "vegetarian",
1007
+ "south indian",
1008
+ "swiss",
1009
+ "crossover",
1010
+ "catalan",
1011
+ "do n't care",
1012
+ "welsh",
1013
+ "tuscan",
1014
+ "new zealand",
1015
+ "molecular gastronomy",
1016
+ "eritrean",
1017
+ "british food",
1018
+ "the americas",
1019
+ "barbeque",
1020
+ "persian",
1021
+ "greek",
1022
+ "belgian",
1023
+ "creative",
1024
+ "jamaican",
1025
+ "scottish",
1026
+ "cuban",
1027
+ "sri lankan",
1028
+ "light bites",
1029
+ "moroccan",
1030
+ "latin american",
1031
+ "basque",
1032
+ "modern global",
1033
+ "halal",
1034
+ "bistro",
1035
+ "unusual",
1036
+ "north indian",
1037
+ "modern eclectic",
1038
+ "danish",
1039
+ "afghan",
1040
+ "world",
1041
+ "northern european",
1042
+ "german",
1043
+ "cantonese",
1044
+ "irish",
1045
+ "romanian",
1046
+ "russian",
1047
+ "english",
1048
+ "corsica",
1049
+ "steakhouse",
1050
+ "hungarian",
1051
+ "singaporean",
1052
+ "austrian",
1053
+ "venetian",
1054
+ "ital",
1055
+ "polynesian",
1056
+ "kosher",
1057
+ "swedish",
1058
+ "scandinavian",
1059
+ "modern american",
1060
+ "christmas",
1061
+ "malaysian",
1062
+ "north african",
1063
+ "brazilian",
1064
+ "canapes",
1065
+ "caribbean",
1066
+ "south african",
1067
+ "traditional",
1068
+ "indonesian",
1069
+ "middle eastern",
1070
+ "fusion",
1071
+ "polish",
1072
+ "asian",
1073
+ "not mentionedc",
1074
+ "afternoon tea",
1075
+ "eastern european",
1076
+ "panasian",
1077
+ "kor",
1078
+ "gastro pub",
1079
+ "american",
1080
+ "pizza",
1081
+ "modern european",
1082
+ "modern english"
1083
+ ],
1084
+ "time": [
1085
+ "19:45",
1086
+ "13:45",
1087
+ "10:15",
1088
+ "19:15",
1089
+ "11:30",
1090
+ "10:30",
1091
+ "18:45",
1092
+ "13:30",
1093
+ "15:00",
1094
+ "11:45",
1095
+ "12:00",
1096
+ "15:15",
1097
+ "16:45",
1098
+ "15:45",
1099
+ "17:15",
1100
+ "19:30",
1101
+ "14:00",
1102
+ "10:45",
1103
+ "17:30",
1104
+ "16:30",
1105
+ "17:00",
1106
+ "12:30",
1107
+ "18:15",
1108
+ "18:00",
1109
+ "20:15",
1110
+ "12:45",
1111
+ "14:15",
1112
+ "13:15",
1113
+ "10:00",
1114
+ "16:00",
1115
+ "19:00",
1116
+ "12:15",
1117
+ "11:00",
1118
+ "11:15",
1119
+ "15:30",
1120
+ "14:30",
1121
+ "18:30",
1122
+ "14:45",
1123
+ "17:45",
1124
+ "09:15",
1125
+ "09:45",
1126
+ "16:15",
1127
+ "13:00",
1128
+ "20:00",
1129
+ "21:00",
1130
+ "20:30",
1131
+ "20:45",
1132
+ "1545",
1133
+ "1745",
1134
+ "09:00",
1135
+ "not given",
1136
+ "do n't care",
1137
+ "13:10",
1138
+ "21:45",
1139
+ "08:45",
1140
+ "09:30"
1141
+ ],
1142
+ "day": [
1143
+ "thursday",
1144
+ "wednesday",
1145
+ "friday",
1146
+ "monday",
1147
+ "sunday",
1148
+ "saturday",
1149
+ "tuesday",
1150
+ "thur",
1151
+ "not given",
1152
+ "w"
1153
+ ],
1154
+ "people": [
1155
+ "2",
1156
+ "3",
1157
+ "1",
1158
+ "5",
1159
+ "6",
1160
+ "4",
1161
+ "7",
1162
+ "8"
1163
+ ]
1164
+ },
1165
+ "attraction": {
1166
+ "name": [
1167
+ "cambridge artworks",
1168
+ "whale of a time",
1169
+ "clare college",
1170
+ "cambridge contemporary art",
1171
+ "churchill college",
1172
+ "primavera",
1173
+ "kings hedges learner pool",
1174
+ "magdalene college",
1175
+ "scott polar museum",
1176
+ "clare hall",
1177
+ "museum of archaelogy and anthropology",
1178
+ "parkside pools",
1179
+ "sheep 's green and lammas land park fen causeway",
1180
+ "trinity college",
1181
+ "cafe jello gallery",
1182
+ "queens ' college",
1183
+ "kettle 's yard",
1184
+ "the man on the moon",
1185
+ "holy trinity church",
1186
+ "great saint mary 's church",
1187
+ "jesus college",
1188
+ "sidney sussex college",
1189
+ "jesus green outdoor pool",
1190
+ "regency gallery",
1191
+ "the junction",
1192
+ "williams art and antiques",
1193
+ "all saints church",
1194
+ "milton country park",
1195
+ "ballare",
1196
+ "people 's portraits exhibition at girton college",
1197
+ "lynne strover gallery",
1198
+ "gonville and caius college",
1199
+ "soul tree nightclub",
1200
+ "scudamores punting co",
1201
+ "vue cinema",
1202
+ "hughes hall",
1203
+ "adc theatre",
1204
+ "saint john 's college",
1205
+ "cambridge arts theatre",
1206
+ "nusha",
1207
+ "saint barnabas press gallery",
1208
+ "the place",
1209
+ "the fez club",
1210
+ "castle galleries",
1211
+ "whipple museum of the history of science",
1212
+ "the cherry hinton village centre",
1213
+ "christ 's college",
1214
+ "ruskin gallery",
1215
+ "old schools",
1216
+ "cambridge book and print gallery",
1217
+ "tenpin",
1218
+ "little saint mary 's church",
1219
+ "abbey pool and astroturf pitch",
1220
+ "the cambridge corn exchange",
1221
+ "cherry hinton hall and grounds",
1222
+ "riverboat georgina",
1223
+ "camboats",
1224
+ "gallery at 12 a high street",
1225
+ "the cambridge punter",
1226
+ "cambridge and county folk museum",
1227
+ "byard art",
1228
+ "the fitzwilliam museum",
1229
+ "club salsa",
1230
+ "kambar",
1231
+ "mumford theatre",
1232
+ "emmanuel college",
1233
+ "broughton house gallery",
1234
+ "corpus christi",
1235
+ "museum of classical archaeology",
1236
+ "pembroke college",
1237
+ "wandlebury country park",
1238
+ "downing college",
1239
+ "king 's college",
1240
+ "saint catharine 's college",
1241
+ "cambridge university botanic gardens",
1242
+ "cambridge museum of technology",
1243
+ "cineworld cinema",
1244
+ "cherry hinton water play",
1245
+ "funky fun house",
1246
+ "do n't care",
1247
+ "no specific location",
1248
+ "cafe jello",
1249
+ "no",
1250
+ "fez club",
1251
+ "cambridge",
1252
+ "carol",
1253
+ "swimming pool",
1254
+ "kirkwood",
1255
+ "univ",
1256
+ "ay",
1257
+ "fitzwilliam museum",
1258
+ "college",
1259
+ "pizz",
1260
+ "worth house",
1261
+ "fi",
1262
+ "free",
1263
+ "aut",
1264
+ "man on the moon",
1265
+ "bo",
1266
+ "all saint 's church",
1267
+ "city",
1268
+ "christ college",
1269
+ "north",
1270
+ "by",
1271
+ "autu",
1272
+ "garde",
1273
+ "s",
1274
+ "caffe uno",
1275
+ "cambridge belf",
1276
+ "old school",
1277
+ "museum",
1278
+ "love",
1279
+ "cambridge corn exchange",
1280
+ "college in the north",
1281
+ "boating",
1282
+ "older churches",
1283
+ "c",
1284
+ "cambridge punter",
1285
+ "queen 's college",
1286
+ "architectural churches",
1287
+ "saint john 's college .",
1288
+ "parkside",
1289
+ "ac",
1290
+ "thanh",
1291
+ "the mumford theatre",
1292
+ "fitzbillies",
1293
+ "home from home",
1294
+ "da v",
1295
+ "cambridge temporary art",
1296
+ "centre",
1297
+ "k",
1298
+ "fitzwilliam",
1299
+ "pizza",
1300
+ "scott polar",
1301
+ "da vinci pizzeria",
1302
+ "broughton",
1303
+ "contemporary art museum",
1304
+ "belf",
1305
+ "school",
1306
+ "corn cambridge exchange",
1307
+ "bangkok city",
1308
+ "bed",
1309
+ "mi"
1310
+ ],
1311
+ "area": [
1312
+ "west",
1313
+ "centre",
1314
+ "south",
1315
+ "east",
1316
+ "north",
1317
+ "do n't care",
1318
+ "cambridge"
1319
+ ],
1320
+ "type": [
1321
+ "entertainment",
1322
+ "multiple sports",
1323
+ "college",
1324
+ "architecture",
1325
+ "swimming pool",
1326
+ "cinema",
1327
+ "nightclub",
1328
+ "park",
1329
+ "theatre",
1330
+ "concert hall",
1331
+ "museum",
1332
+ "boat",
1333
+ "do n't care",
1334
+ "local site",
1335
+ "hotspot",
1336
+ "church",
1337
+ "special"
1338
+ ]
1339
+ },
1340
+ "hotel": {
1341
+ "name": [
1342
+ "cityroomz",
1343
+ "alpha - milton guest house",
1344
+ "archway house",
1345
+ "autumn house",
1346
+ "hamilton lodge",
1347
+ "huntingdon marriott hotel",
1348
+ "hobsons house",
1349
+ "rosa 's bed and breakfast",
1350
+ "warkworth house",
1351
+ "city centre north bed and breakfast",
1352
+ "bridge guest house",
1353
+ "limehouse",
1354
+ "aylesbray lodge guest house",
1355
+ "el shaddai",
1356
+ "acorn guest house",
1357
+ "ashley hotel",
1358
+ "allenbell",
1359
+ "gonville hotel",
1360
+ "arbury lodge guest house",
1361
+ "kirkwood house",
1362
+ "the cambridge belfry",
1363
+ "avalon",
1364
+ "express by holiday inn cambridge",
1365
+ "lovell lodge",
1366
+ "leverton house",
1367
+ "worth house",
1368
+ "finches bed and breakfast",
1369
+ "home from home",
1370
+ "university arms hotel",
1371
+ "alexander bed and breakfast",
1372
+ "a and b guest house",
1373
+ "carolina bed and breakfast",
1374
+ "the lensfield hotel",
1375
+ "wandlebury coutn",
1376
+ "do n't care",
1377
+ "whale",
1378
+ "alp",
1379
+ "cambridge belfry",
1380
+ "gonville",
1381
+ "cambridge",
1382
+ "acorn house",
1383
+ "to",
1384
+ "n",
1385
+ "city center north",
1386
+ "caffe",
1387
+ "express by",
1388
+ "clare",
1389
+ "acorn",
1390
+ "sou",
1391
+ "north bed and breakfast",
1392
+ "a",
1393
+ "lensfield",
1394
+ "city stop rest",
1395
+ "kirkwood",
1396
+ "levert",
1397
+ "anatolia",
1398
+ "huntingdon marriot hotel",
1399
+ "cherr",
1400
+ "huntingd",
1401
+ "nusha",
1402
+ "aylesbray lodge",
1403
+ "royal spice",
1404
+ "la margherit",
1405
+ "hotel",
1406
+ "gall",
1407
+ "city roomz",
1408
+ "alexander",
1409
+ "caridge belfrey",
1410
+ "yes",
1411
+ "me",
1412
+ "nus",
1413
+ "alexander bed & breakfast",
1414
+ "the allenbell .",
1415
+ "the allenbell",
1416
+ "gra",
1417
+ "the",
1418
+ "cambridg",
1419
+ "lensfield hotel",
1420
+ "tandoori palace",
1421
+ "huntingdon hotel",
1422
+ "autumn house .",
1423
+ "doubletree by hilton cambridge",
1424
+ "ca"
1425
+ ],
1426
+ "internet": [
1427
+ "no",
1428
+ "yes",
1429
+ "do n't care"
1430
+ ],
1431
+ "area": [
1432
+ "west",
1433
+ "centre",
1434
+ "south",
1435
+ "east",
1436
+ "north",
1437
+ "do n't care",
1438
+ "southern aylesbray",
1439
+ "cambridge",
1440
+ "el shaddai",
1441
+ "stevenage",
1442
+ "place to be a guest house",
1443
+ "peterborough",
1444
+ "bishops stortford",
1445
+ "cheap"
1446
+ ],
1447
+ "parking": [
1448
+ "no",
1449
+ "yes",
1450
+ "do n't care",
1451
+ "free"
1452
+ ],
1453
+ "stars": [
1454
+ "4",
1455
+ "0",
1456
+ "3",
1457
+ "2",
1458
+ "do n't care",
1459
+ "1",
1460
+ "5"
1461
+ ],
1462
+ "type": [
1463
+ "hotel",
1464
+ "guest house"
1465
+ ],
1466
+ "pricerange": [
1467
+ "cheap",
1468
+ "expensive",
1469
+ "moderate",
1470
+ "do n't care"
1471
+ ],
1472
+ "stay": [
1473
+ "2",
1474
+ "1",
1475
+ "4",
1476
+ "5",
1477
+ "3",
1478
+ "8",
1479
+ "7",
1480
+ "6"
1481
+ ],
1482
+ "day": [
1483
+ "tuesday",
1484
+ "friday",
1485
+ "monday",
1486
+ "wednesday",
1487
+ "saturday",
1488
+ "thursday",
1489
+ "sunday"
1490
+ ],
1491
+ "people": [
1492
+ "6",
1493
+ "1",
1494
+ "3",
1495
+ "5",
1496
+ "4",
1497
+ "2",
1498
+ "8",
1499
+ "7",
1500
+ "3 ."
1501
+ ]
1502
+ },
1503
+ "hospital": {
1504
+ "department": [
1505
+ "theatre admissions unit",
1506
+ "hepatobillary and gastrointestinal surgery regional referral centre",
1507
+ "cardiology and coronary care unit",
1508
+ "medicine for the elderly",
1509
+ "haematology day unit",
1510
+ "oral and maxillofacial surgery and ent",
1511
+ "coronary care unit",
1512
+ "neurosciences",
1513
+ "clinical decisions unit",
1514
+ "lewin stroke and rehabilitation unit",
1515
+ "delivery unit",
1516
+ "transplant unit",
1517
+ "neonatal unit",
1518
+ "gynaecology",
1519
+ "intermediate dependancy area",
1520
+ "respiratory medicine",
1521
+ "cardiology",
1522
+ "emergency department",
1523
+ "major trauma unit",
1524
+ "trauma high dependency unit",
1525
+ "neurology neurosurgery",
1526
+ "john farman intensive care unit",
1527
+ "colorectal surgery",
1528
+ "infectious diseases",
1529
+ "clinical research facility",
1530
+ "neurosciences critical care unit",
1531
+ "haematology",
1532
+ "medical decisions unit",
1533
+ "plastic and vascular surgery plastics",
1534
+ "hepatology",
1535
+ "acute medical assessment unit",
1536
+ "teenage cancer trust unit",
1537
+ "paediatric clinic",
1538
+ "diabetes and endocrinology",
1539
+ "children 's surgical and medicine",
1540
+ "children 's oncology and haematology",
1541
+ "haematology and haematological oncology",
1542
+ "medical short stay unit",
1543
+ "paediatric day unit",
1544
+ "infusion services",
1545
+ "paediatric intensive care unit",
1546
+ "antenatal",
1547
+ "neurology",
1548
+ "transplant high dependency unit",
1549
+ "transitional care",
1550
+ "oncology neurosurgery",
1551
+ "trauma and orthopaedics",
1552
+ "gastroenterology",
1553
+ "oncology",
1554
+ "psychiatry",
1555
+ "cambridge eye unit",
1556
+ "inpatient occupational therapy",
1557
+ "intermediate dependency area",
1558
+ "general medicine and nephrology",
1559
+ "surgery",
1560
+ "postnatal",
1561
+ "urology",
1562
+ "clinical investigation ward",
1563
+ "acute medicine for the elderly",
1564
+ "do n't care",
1565
+ "uro",
1566
+ "gener",
1567
+ "accident"
1568
+ ]
1569
+ },
1570
+ "train": {
1571
+ "departure": [
1572
+ "leicester",
1573
+ "kings lynn",
1574
+ "cambridge",
1575
+ "bishops stortford",
1576
+ "stevenage",
1577
+ "stansted airport",
1578
+ "birmingham new street",
1579
+ "peterborough",
1580
+ "ely",
1581
+ "broxbourne",
1582
+ "london liverpool street",
1583
+ "london kings cross",
1584
+ "norwich",
1585
+ "birmingham",
1586
+ "do n't care",
1587
+ "saint johns",
1588
+ "wandlebury country park",
1589
+ "liecester",
1590
+ "panahar",
1591
+ "cineworld",
1592
+ "stansted",
1593
+ "el shaddai",
1594
+ "lon",
1595
+ "cafe uno",
1596
+ "leicaster",
1597
+ "city hall",
1598
+ "rosa 's bed and breakfast",
1599
+ "norwhich",
1600
+ "cam",
1601
+ "brookshite",
1602
+ "bro",
1603
+ "cambrid",
1604
+ "arbu",
1605
+ "aylesbray lodge guest",
1606
+ "alpha - milton",
1607
+ "a",
1608
+ "london",
1609
+ "hamilton lodge",
1610
+ "duxford",
1611
+ "camboats"
1612
+ ],
1613
+ "day": [
1614
+ "sunday",
1615
+ "monday",
1616
+ "tuesday",
1617
+ "wednesday",
1618
+ "thursday",
1619
+ "friday",
1620
+ "saturday",
1621
+ "do n't care",
1622
+ "fr",
1623
+ "n",
1624
+ "we",
1625
+ "train"
1626
+ ],
1627
+ "arrive": [
1628
+ "10:52",
1629
+ "10:06",
1630
+ "11:07",
1631
+ "12:10",
1632
+ "08:55",
1633
+ "24:54",
1634
+ "14:01",
1635
+ "20:07",
1636
+ "11:35",
1637
+ "24:01",
1638
+ "12:35",
1639
+ "14:54",
1640
+ "11:55",
1641
+ "22:44",
1642
+ "14:43",
1643
+ "23:32",
1644
+ "14:32",
1645
+ "19:52",
1646
+ "14:35",
1647
+ "13:58",
1648
+ "09:27",
1649
+ "19:55",
1650
+ "10:08",
1651
+ "07:24",
1652
+ "24:55",
1653
+ "21:01",
1654
+ "22:23",
1655
+ "21:07",
1656
+ "12:44",
1657
+ "24:23",
1658
+ "16:06",
1659
+ "19:08",
1660
+ "18:07",
1661
+ "15:23",
1662
+ "21:32",
1663
+ "06:24",
1664
+ "12:58",
1665
+ "21:44",
1666
+ "12:55",
1667
+ "23:56",
1668
+ "08:08",
1669
+ "13:27",
1670
+ "09:54",
1671
+ "10:58",
1672
+ "16:08",
1673
+ "06:58",
1674
+ "11:01",
1675
+ "10:07",
1676
+ "18:06",
1677
+ "18:09",
1678
+ "08:32",
1679
+ "06:09",
1680
+ "15:01",
1681
+ "16:23",
1682
+ "01:27",
1683
+ "13:07",
1684
+ "17:56",
1685
+ "18:55",
1686
+ "14:52",
1687
+ "08:43",
1688
+ "16:10",
1689
+ "20:24",
1690
+ "11:58",
1691
+ "17:06",
1692
+ "09:06",
1693
+ "14:24",
1694
+ "07:56",
1695
+ "22:35",
1696
+ "12:54",
1697
+ "07:51",
1698
+ "24:06",
1699
+ "14:58",
1700
+ "11:38",
1701
+ "10:09",
1702
+ "01:44",
1703
+ "06:43",
1704
+ "13:32",
1705
+ "17:51",
1706
+ "16:44",
1707
+ "09:09",
1708
+ "19:35",
1709
+ "12:52",
1710
+ "22:06",
1711
+ "21:55",
1712
+ "15:55",
1713
+ "17:55",
1714
+ "15:44",
1715
+ "12:23",
1716
+ "09:38",
1717
+ "15:54",
1718
+ "23:01",
1719
+ "05:51",
1720
+ "16:24",
1721
+ "05:52",
1722
+ "09:35",
1723
+ "08:44",
1724
+ "08:35",
1725
+ "11:51",
1726
+ "08:06",
1727
+ "10:35",
1728
+ "15:56",
1729
+ "19:38",
1730
+ "23:38",
1731
+ "23:35",
1732
+ "24:09",
1733
+ "23:08",
1734
+ "16:32",
1735
+ "14:09",
1736
+ "18:23",
1737
+ "06:52",
1738
+ "10:01",
1739
+ "18:38",
1740
+ "20:32",
1741
+ "20:09",
1742
+ "09:52",
1743
+ "17:23",
1744
+ "14:10",
1745
+ "08:38",
1746
+ "23:07",
1747
+ "16:43",
1748
+ "14:08",
1749
+ "24:08",
1750
+ "12:09",
1751
+ "18:08",
1752
+ "01:06",
1753
+ "11:23",
1754
+ "24:38",
1755
+ "12:06",
1756
+ "13:23",
1757
+ "15:27",
1758
+ "06:35",
1759
+ "21:27",
1760
+ "23:24",
1761
+ "17:44",
1762
+ "08:52",
1763
+ "19:51",
1764
+ "10:56",
1765
+ "17:32",
1766
+ "21:24",
1767
+ "17:54",
1768
+ "11:56",
1769
+ "01:07",
1770
+ "24:10",
1771
+ "07:54",
1772
+ "13:51",
1773
+ "18:44",
1774
+ "06:54",
1775
+ "22:55",
1776
+ "08:23",
1777
+ "13:38",
1778
+ "08:10",
1779
+ "07:01",
1780
+ "12:38",
1781
+ "22:52",
1782
+ "09:24",
1783
+ "11:52",
1784
+ "22:56",
1785
+ "08:09",
1786
+ "10:55",
1787
+ "01:23",
1788
+ "23:09",
1789
+ "24:43",
1790
+ "10:32",
1791
+ "15:51",
1792
+ "09:44",
1793
+ "21:09",
1794
+ "24:07",
1795
+ "20:06",
1796
+ "19:07",
1797
+ "12:43",
1798
+ "20:56",
1799
+ "22:08",
1800
+ "19:06",
1801
+ "15:52",
1802
+ "20:38",
1803
+ "19:01",
1804
+ "12:32",
1805
+ "13:54",
1806
+ "13:44",
1807
+ "19:58",
1808
+ "19:23",
1809
+ "18:01",
1810
+ "16:35",
1811
+ "08:24",
1812
+ "07:08",
1813
+ "24:24",
1814
+ "16:58",
1815
+ "08:58",
1816
+ "13:55",
1817
+ "07:09",
1818
+ "19:44",
1819
+ "22:10",
1820
+ "17:07",
1821
+ "21:51",
1822
+ "07:58",
1823
+ "19:09",
1824
+ "17:38",
1825
+ "21:35",
1826
+ "06:32",
1827
+ "20:43",
1828
+ "10:38",
1829
+ "11:24",
1830
+ "07:44",
1831
+ "13:09",
1832
+ "14:38",
1833
+ "12:08",
1834
+ "07:38",
1835
+ "18:10",
1836
+ "23:55",
1837
+ "11:27",
1838
+ "10:10",
1839
+ "18:43",
1840
+ "19:24",
1841
+ "11:54",
1842
+ "23:44",
1843
+ "23:52",
1844
+ "14:06",
1845
+ "14:55",
1846
+ "09:07",
1847
+ "16:09",
1848
+ "17:27",
1849
+ "17:24",
1850
+ "23:23",
1851
+ "14:44",
1852
+ "20:58",
1853
+ "21:23",
1854
+ "13:06",
1855
+ "09:51",
1856
+ "11:32",
1857
+ "21:08",
1858
+ "20:44",
1859
+ "22:54",
1860
+ "15:08",
1861
+ "15:58",
1862
+ "24:32",
1863
+ "19:56",
1864
+ "13:08",
1865
+ "13:24",
1866
+ "18:56",
1867
+ "20:52",
1868
+ "12:56",
1869
+ "13:01",
1870
+ "21:06",
1871
+ "17:58",
1872
+ "20:54",
1873
+ "23:06",
1874
+ "17:01",
1875
+ "07:07",
1876
+ "22:32",
1877
+ "15:07",
1878
+ "17:35",
1879
+ "07:52",
1880
+ "11:09",
1881
+ "24:44",
1882
+ "06:08",
1883
+ "22:07",
1884
+ "09:58",
1885
+ "10:44",
1886
+ "16:07",
1887
+ "22:24",
1888
+ "06:10",
1889
+ "12:24",
1890
+ "15:32",
1891
+ "14:56",
1892
+ "13:52",
1893
+ "05:58",
1894
+ "19:27",
1895
+ "17:52",
1896
+ "05:56",
1897
+ "19:32",
1898
+ "18:35",
1899
+ "06:55",
1900
+ "09:32",
1901
+ "06:56",
1902
+ "20:10",
1903
+ "13:35",
1904
+ "16:52",
1905
+ "21:38",
1906
+ "08:07",
1907
+ "13:56",
1908
+ "18:54",
1909
+ "11:44",
1910
+ "09:08",
1911
+ "07:06",
1912
+ "20:55",
1913
+ "20:08",
1914
+ "07:35",
1915
+ "17:08",
1916
+ "16:01",
1917
+ "17:09",
1918
+ "08:56",
1919
+ "06:01",
1920
+ "09:55",
1921
+ "20:35",
1922
+ "22:58",
1923
+ "08:54",
1924
+ "10:24",
1925
+ "11:08",
1926
+ "22:09",
1927
+ "12:01",
1928
+ "22:43",
1929
+ "06:38",
1930
+ "07:27",
1931
+ "09:56",
1932
+ "20:01",
1933
+ "11:06",
1934
+ "16:54",
1935
+ "21:52",
1936
+ "10:54",
1937
+ "23:54",
1938
+ "23:51",
1939
+ "20:23",
1940
+ "16:55",
1941
+ "18:52",
1942
+ "19:54",
1943
+ "10:43",
1944
+ "15:38",
1945
+ "09:01",
1946
+ "21:54",
1947
+ "15:24",
1948
+ "21:58",
1949
+ "12:07",
1950
+ "10:23",
1951
+ "14:07",
1952
+ "07:32",
1953
+ "23:58",
1954
+ "07:55",
1955
+ "21:56",
1956
+ "18:24",
1957
+ "15:09",
1958
+ "14:23",
1959
+ "22:38",
1960
+ "16:56",
1961
+ "15:06",
1962
+ "06:07",
1963
+ "18:58",
1964
+ "08:01",
1965
+ "22:01",
1966
+ "23:27",
1967
+ "18:32",
1968
+ "15:35",
1969
+ "09:23",
1970
+ "02:23",
1971
+ "16:38",
1972
+ "24:35",
1973
+ "19:45",
1974
+ "20:45",
1975
+ "11:30",
1976
+ "14:45",
1977
+ "08:15",
1978
+ "13:45",
1979
+ "08:00",
1980
+ "08:45",
1981
+ "11:00",
1982
+ "11:45",
1983
+ "08:30",
1984
+ "10:45",
1985
+ "05:00",
1986
+ "20:00",
1987
+ "15:15",
1988
+ "11:15",
1989
+ "19:00",
1990
+ "20:15",
1991
+ "16:45",
1992
+ "12:45",
1993
+ "10:15",
1994
+ "21:00",
1995
+ "15:00",
1996
+ "17:15",
1997
+ "14:30",
1998
+ "20:30",
1999
+ "18:15",
2000
+ "12:15",
2001
+ "18:45",
2002
+ "12:00",
2003
+ "10:00",
2004
+ "21:45",
2005
+ "16:15",
2006
+ "14:00",
2007
+ "18:30",
2008
+ "17:45",
2009
+ "13:30",
2010
+ "19:30",
2011
+ "12:30",
2012
+ "09:15",
2013
+ "09:00",
2014
+ "16:00",
2015
+ "23:00",
2016
+ "10:30",
2017
+ "09:30",
2018
+ "16:30",
2019
+ "18:00",
2020
+ "09:45",
2021
+ "15:45",
2022
+ "19:15",
2023
+ "13:00",
2024
+ "17:30",
2025
+ "15:30",
2026
+ "21:15",
2027
+ "13:15",
2028
+ "21:30",
2029
+ "17:00",
2030
+ "14:15",
2031
+ "do n't care",
2032
+ "thursday",
2033
+ "05:30",
2034
+ "07:15",
2035
+ "19:57",
2036
+ "06:30",
2037
+ "07:30",
2038
+ "01:00",
2039
+ "22:00",
2040
+ "1100",
2041
+ "06:15",
2042
+ "23:30",
2043
+ "05:15",
2044
+ "07:45",
2045
+ "05:45",
2046
+ "09,45",
2047
+ "06:45",
2048
+ "tuesday"
2049
+ ],
2050
+ "destination": [
2051
+ "leicester",
2052
+ "kings lynn",
2053
+ "cambridge",
2054
+ "bishops stortford",
2055
+ "stevenage",
2056
+ "stansted airport",
2057
+ "birmingham new street",
2058
+ "peterborough",
2059
+ "ely",
2060
+ "broxbourne",
2061
+ "london liverpool street",
2062
+ "london kings cross",
2063
+ "norwich",
2064
+ "lecester",
2065
+ "bishop stortford",
2066
+ "north",
2067
+ "willi",
2068
+ "curry prince",
2069
+ "bournemouth",
2070
+ "centre",
2071
+ "no",
2072
+ "bishops storford",
2073
+ "city centre north",
2074
+ "taj tandoori",
2075
+ "petersborough",
2076
+ "huntington marriott",
2077
+ "hol",
2078
+ "gonv",
2079
+ "liverpool",
2080
+ "huntingdon marriott hotel",
2081
+ "gourmet burger kitchen",
2082
+ "the copper kettle"
2083
+ ],
2084
+ "leave": [
2085
+ "08:40",
2086
+ "08:24",
2087
+ "15:32",
2088
+ "09:16",
2089
+ "05:54",
2090
+ "10:06",
2091
+ "05:00",
2092
+ "05:34",
2093
+ "15:34",
2094
+ "06:16",
2095
+ "08:21",
2096
+ "23:48",
2097
+ "17:29",
2098
+ "13:00",
2099
+ "22:24",
2100
+ "23:50",
2101
+ "10:11",
2102
+ "10:09",
2103
+ "15:48",
2104
+ "16:36",
2105
+ "21:29",
2106
+ "05:16",
2107
+ "10:19",
2108
+ "13:32",
2109
+ "17:19",
2110
+ "15:11",
2111
+ "16:40",
2112
+ "19:32",
2113
+ "14:01",
2114
+ "15:39",
2115
+ "22:19",
2116
+ "21:19",
2117
+ "09:09",
2118
+ "07:16",
2119
+ "19:35",
2120
+ "09:32",
2121
+ "11:35",
2122
+ "09:21",
2123
+ "22:06",
2124
+ "18:11",
2125
+ "18:21",
2126
+ "05:48",
2127
+ "11:39",
2128
+ "16:48",
2129
+ "20:19",
2130
+ "15:16",
2131
+ "07:09",
2132
+ "07:36",
2133
+ "06:34",
2134
+ "13:11",
2135
+ "13:35",
2136
+ "06:36",
2137
+ "19:09",
2138
+ "21:34",
2139
+ "19:48",
2140
+ "21:36",
2141
+ "15:54",
2142
+ "08:19",
2143
+ "21:40",
2144
+ "23:01",
2145
+ "23:36",
2146
+ "23:29",
2147
+ "13:16",
2148
+ "21:35",
2149
+ "10:36",
2150
+ "16:24",
2151
+ "06:48",
2152
+ "09:35",
2153
+ "06:32",
2154
+ "15:50",
2155
+ "07:40",
2156
+ "07:06",
2157
+ "23:32",
2158
+ "21:16",
2159
+ "13:34",
2160
+ "22:34",
2161
+ "19:29",
2162
+ "13:40",
2163
+ "19:21",
2164
+ "14:32",
2165
+ "19:40",
2166
+ "07:35",
2167
+ "08:16",
2168
+ "10:40",
2169
+ "11:24",
2170
+ "07:19",
2171
+ "06:21",
2172
+ "08:06",
2173
+ "12:21",
2174
+ "05:09",
2175
+ "05:24",
2176
+ "07:00",
2177
+ "10:21",
2178
+ "17:59",
2179
+ "15:17",
2180
+ "09:11",
2181
+ "23:11",
2182
+ "16:19",
2183
+ "23:40",
2184
+ "13:21",
2185
+ "17:09",
2186
+ "21:39",
2187
+ "05:40",
2188
+ "23:35",
2189
+ "11:17",
2190
+ "06:01",
2191
+ "19:00",
2192
+ "05:39",
2193
+ "16:32",
2194
+ "14:09",
2195
+ "18:34",
2196
+ "07:24",
2197
+ "13:09",
2198
+ "08:48",
2199
+ "22:11",
2200
+ "21:01",
2201
+ "05:59",
2202
+ "10:01",
2203
+ "17:17",
2204
+ "20:32",
2205
+ "20:09",
2206
+ "23:39",
2207
+ "17:50",
2208
+ "10:24",
2209
+ "05:17",
2210
+ "07:50",
2211
+ "23:16",
2212
+ "19:24",
2213
+ "15:40",
2214
+ "11:54",
2215
+ "06:40",
2216
+ "13:29",
2217
+ "13:59",
2218
+ "16:06",
2219
+ "15:59",
2220
+ "08:11",
2221
+ "21:11",
2222
+ "15:36",
2223
+ "14:19",
2224
+ "12:09",
2225
+ "06:06",
2226
+ "11:29",
2227
+ "14:06",
2228
+ "22:09",
2229
+ "21:21",
2230
+ "12:01",
2231
+ "21:32",
2232
+ "07:29",
2233
+ "08:36",
2234
+ "18:48",
2235
+ "18:40",
2236
+ "11:50",
2237
+ "14:40",
2238
+ "20:11",
2239
+ "06:24",
2240
+ "20:16",
2241
+ "08:34",
2242
+ "05:50",
2243
+ "09:00",
2244
+ "16:09",
2245
+ "12:06",
2246
+ "11:19",
2247
+ "09:50",
2248
+ "17:24",
2249
+ "11:21",
2250
+ "09:17",
2251
+ "13:39",
2252
+ "20:34",
2253
+ "20:01",
2254
+ "21:59",
2255
+ "11:06",
2256
+ "05:32",
2257
+ "18:16",
2258
+ "22:40",
2259
+ "14:16",
2260
+ "10:16",
2261
+ "11:00",
2262
+ "13:06",
2263
+ "06:11",
2264
+ "23:24",
2265
+ "11:32",
2266
+ "23:54",
2267
+ "22:36",
2268
+ "17:36",
2269
+ "14:34",
2270
+ "05:29",
2271
+ "09:54",
2272
+ "19:59",
2273
+ "09:40",
2274
+ "23:19",
2275
+ "07:11",
2276
+ "19:39",
2277
+ "13:19",
2278
+ "17:32",
2279
+ "21:24",
2280
+ "19:19",
2281
+ "15:19",
2282
+ "13:50",
2283
+ "21:00",
2284
+ "09:36",
2285
+ "05:06",
2286
+ "21:48",
2287
+ "20:40",
2288
+ "20:21",
2289
+ "11:40",
2290
+ "11:01",
2291
+ "21:50",
2292
+ "19:16",
2293
+ "18:06",
2294
+ "05:19",
2295
+ "13:24",
2296
+ "18:09",
2297
+ "13:17",
2298
+ "17:54",
2299
+ "15:00",
2300
+ "09:29",
2301
+ "15:29",
2302
+ "08:32",
2303
+ "11:16",
2304
+ "06:09",
2305
+ "19:54",
2306
+ "05:36",
2307
+ "17:16",
2308
+ "07:34",
2309
+ "17:00",
2310
+ "14:48",
2311
+ "19:50",
2312
+ "05:21",
2313
+ "15:01",
2314
+ "07:54",
2315
+ "09:01",
2316
+ "07:21",
2317
+ "12:11",
2318
+ "22:21",
2319
+ "05:35",
2320
+ "13:01",
2321
+ "12:16",
2322
+ "21:06",
2323
+ "11:48",
2324
+ "14:21",
2325
+ "14:11",
2326
+ "17:40",
2327
+ "21:17",
2328
+ "09:59",
2329
+ "16:21",
2330
+ "15:24",
2331
+ "05:01",
2332
+ "21:54",
2333
+ "19:36",
2334
+ "17:39",
2335
+ "07:32",
2336
+ "07:48",
2337
+ "11:59",
2338
+ "09:34",
2339
+ "15:09",
2340
+ "18:24",
2341
+ "07:01",
2342
+ "07:59",
2343
+ "20:36",
2344
+ "07:39",
2345
+ "23:06",
2346
+ "12:19",
2347
+ "17:01",
2348
+ "09:24",
2349
+ "14:36",
2350
+ "10:48",
2351
+ "11:34",
2352
+ "15:21",
2353
+ "12:24",
2354
+ "19:17",
2355
+ "23:21",
2356
+ "17:11",
2357
+ "07:17",
2358
+ "12:36",
2359
+ "19:34",
2360
+ "08:09",
2361
+ "22:32",
2362
+ "17:35",
2363
+ "20:24",
2364
+ "05:11",
2365
+ "15:06",
2366
+ "20:48",
2367
+ "11:36",
2368
+ "10:34",
2369
+ "17:48",
2370
+ "11:09",
2371
+ "23:09",
2372
+ "13:36",
2373
+ "22:48",
2374
+ "10:32",
2375
+ "09:48",
2376
+ "11:11",
2377
+ "19:11",
2378
+ "16:11",
2379
+ "09:06",
2380
+ "17:06",
2381
+ "12:40",
2382
+ "21:09",
2383
+ "22:16",
2384
+ "12:34",
2385
+ "20:06",
2386
+ "16:01",
2387
+ "18:36",
2388
+ "08:01",
2389
+ "22:01",
2390
+ "16:16",
2391
+ "12:48",
2392
+ "17:21",
2393
+ "23:00",
2394
+ "13:48",
2395
+ "18:32",
2396
+ "14:24",
2397
+ "09:19",
2398
+ "15:35",
2399
+ "19:06",
2400
+ "19:01",
2401
+ "12:32",
2402
+ "13:54",
2403
+ "18:19",
2404
+ "06:19",
2405
+ "17:34",
2406
+ "18:01",
2407
+ "23:17",
2408
+ "16:34",
2409
+ "23:59",
2410
+ "23:34",
2411
+ "09:39",
2412
+ "21:15",
2413
+ "12:45",
2414
+ "19:45",
2415
+ "14:00",
2416
+ "15:15",
2417
+ "10:00",
2418
+ "10:15",
2419
+ "09:15",
2420
+ "19:15",
2421
+ "11:15",
2422
+ "17:45",
2423
+ "14:30",
2424
+ "20:00",
2425
+ "after 09:15",
2426
+ "09:30",
2427
+ "08:15",
2428
+ "20:15",
2429
+ "10:45",
2430
+ "14:45",
2431
+ "17:30",
2432
+ "11:30",
2433
+ "13:45",
2434
+ "12:15",
2435
+ "08:45",
2436
+ "11:45",
2437
+ "18:45",
2438
+ "05:15",
2439
+ "18:00",
2440
+ "16:00",
2441
+ "08:00",
2442
+ "18:30",
2443
+ "21:45",
2444
+ "16:30",
2445
+ "14:15",
2446
+ "16:15",
2447
+ "12:30",
2448
+ "13:30",
2449
+ "02:00",
2450
+ "08:30",
2451
+ "10:30",
2452
+ "15:45",
2453
+ "09:45",
2454
+ "21:30",
2455
+ "06:00",
2456
+ "18:15",
2457
+ "bishops stortford",
2458
+ "07:45",
2459
+ "05:45",
2460
+ "after 11:30",
2461
+ "12:00",
2462
+ "13:15",
2463
+ "20:45",
2464
+ "16:45",
2465
+ "15:30",
2466
+ "17:15",
2467
+ "05:30",
2468
+ "do n't care",
2469
+ "19:30",
2470
+ "06:45",
2471
+ "06:30",
2472
+ "22:00",
2473
+ "0",
2474
+ "21:07",
2475
+ "20:30",
2476
+ "monday",
2477
+ "leicester",
2478
+ "after 08:30",
2479
+ "18:31",
2480
+ "after 19:30",
2481
+ "07:15",
2482
+ "morning",
2483
+ "saturday",
2484
+ "after 16:30",
2485
+ "18:46",
2486
+ "02:30",
2487
+ "thursday"
2488
+ ],
2489
+ "people": [
2490
+ "1",
2491
+ "5",
2492
+ "8",
2493
+ "6",
2494
+ "2",
2495
+ "7",
2496
+ "4",
2497
+ "3",
2498
+ "0",
2499
+ "9",
2500
+ "15",
2501
+ "` 1",
2502
+ "10"
2503
+ ]
2504
+ }
2505
+ }
data/raw/UBAR/multi-woz/README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MultiWOZ Data Preprocessing
2
+ Introduction of the data processing procedure in AAAI 2020 paper "Task-Oriented Dialog Systems that Consider Multiple Appropriate Responses under the Same Context".
3
+
4
+
5
+ ## Data Preprocessing
6
+
7
+ ### Delexicalization
8
+ Delexicalization is the procedure of replacing specific slot values in dialog utterances by placeholders. The goal is to reduce the surface form language variability and improve model's generalization ability.
9
+
10
+ Previous delexicalization methods for MultiWOZ ([Budzianowski et al. 2018](https://arxiv.org/pdf/1810.00278.pdf); [Chen et al. 2019](https://arxiv.org/pdf/1905.12866.pdf)) have a drawback in handling multi-domain slot values. They delexicalize the same slots in different dialog domains such as `phone`, `address`, `name` etc as different tokens, e.g. `<restaurant.phone>` and `<hotel.phone>`, which prevents knowledge sharing through semantically similar slots in different domains and adds extra burdens to the system. We propose the **Domain-Adaptive Delexicalization** to address the problem, by using an identical token to represent the same slot name such as `phone` in different dialog domains. Therefore the expressions in all relevant domains can be used to learn to generate the delexicalized value token.
11
+
12
+ Here is an example of different delexicalization strategies:
13
+
14
+ |||
15
+ |---|---|
16
+ | Original Utterance | U: I want to find a `cheap` restaurant located in the `west`. Give me the phone numebr please. <br> S: `Thanh Binh` meets your criteria. The phone number is `01223362456`. What else can I help? |
17
+ | Classical Delexicalization | U: I want to find a `<restaurant.pricerange>` restaurant located in the `<restaurant.area>`. <br> S: `<restaurant.name>` meets your criteria. The phone number is `<restaurant.phone>`. What else can I help? |
18
+ | Our Domain-Adaptive <br> Delexicalization | U: I want to find a `<pricerange>` restaurant located in the `<area>`. <br> S: `<name>` meets your criteria. The phone number is `<phone>`. What else can I help? |
19
+
20
+
21
+ ### Tokenization
22
+ We use the tokenization tool in spaCy through `spacy.load('en_core_web_sm')`.
23
+
24
+ ### Normalization
25
+ We normalize all the slot names as listed in `ontoloty.py`.
26
+
27
+ Functions for dataset cleaning and normalization are in `clean_dataset.py`.
28
+
29
+ Note that the slot values in databases are also preprocessed via the same procedure.
data/raw/UBAR/multi-woz/mapping.pair ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ it 's it is
2
+ don 't do not
3
+ doesn 't does not
4
+ didn 't did not
5
+ you 'd you would
6
+ you 're you are
7
+ you 'll you will
8
+ i 'm i am
9
+ they 're they are
10
+ that 's that is
11
+ what 's what is
12
+ couldn 't could not
13
+ i 've i have
14
+ we 've we have
15
+ can 't cannot
16
+ i 'd i would
17
+ i 'd i would
18
+ aren 't are not
19
+ isn 't is not
20
+ wasn 't was not
21
+ weren 't were not
22
+ won 't will not
23
+ there 's there is
24
+ there 're there are
25
+ . . .
26
+ restaurants restaurant -s
27
+ hotels hotel -s
28
+ laptops laptop -s
29
+ cheaper cheap -er
30
+ dinners dinner -s
31
+ lunches lunch -s
32
+ breakfasts breakfast -s
33
+ expensively expensive -ly
34
+ moderately moderate -ly
35
+ cheaply cheap -ly
36
+ prices price -s
37
+ places place -s
38
+ venues venue -s
39
+ ranges range -s
40
+ meals meal -s
41
+ locations location -s
42
+ areas area -s
43
+ policies policy -s
44
+ children child -s
45
+ kids kid -s
46
+ kidfriendly kid friendly
47
+ cards card -s
48
+ upmarket expensive
49
+ inpricey cheap
50
+ inches inch -s
51
+ uses use -s
52
+ dimensions dimension -s
53
+ driverange drive range
54
+ includes include -s
55
+ computers computer -s
56
+ machines machine -s
57
+ families family -s
58
+ ratings rating -s
59
+ constraints constraint -s
60
+ pricerange price range
61
+ batteryrating battery rating
62
+ requirements requirement -s
63
+ drives drive -s
64
+ specifications specification -s
65
+ weightrange weight range
66
+ harddrive hard drive
67
+ batterylife battery life
68
+ businesses business -s
69
+ hours hour -s
70
+ one 1
71
+ two 2
72
+ three 3
73
+ four 4
74
+ five 5
75
+ six 6
76
+ seven 7
77
+ eight 8
78
+ nine 9
79
+ ten 10
80
+ eleven 11
81
+ twelve 12
82
+ anywhere any where
83
+ good bye goodbye
data/raw/UBAR/multi-woz/testListFile.json ADDED
@@ -0,0 +1,1000 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MUL0484.json
2
+ PMUL4462.json
3
+ PMUL0320.json
4
+ MUL2155.json
5
+ PMUL0815.json
6
+ PMUL3263.json
7
+ PMUL3672.json
8
+ SNG0423.json
9
+ SNG0296.json
10
+ PMUL0079.json
11
+ PMUL1484.json
12
+ SNG0840.json
13
+ PMUL0089.json
14
+ PMUL2859.json
15
+ PMUL2009.json
16
+ SNG0528.json
17
+ SNG01367.json
18
+ PMUL3858.json
19
+ SNG1076.json
20
+ PMUL2166.json
21
+ PMUL2436.json
22
+ MUL0225.json
23
+ PMUL1966.json
24
+ PMUL4239.json
25
+ SNG01290.json
26
+ SNG0888.json
27
+ SNG1150.json
28
+ MUL2646.json
29
+ PMUL4247.json
30
+ SNG0589.json
31
+ MUL2089.json
32
+ SNG01434.json
33
+ MUL0237.json
34
+ PMUL4125.json
35
+ MUL1588.json
36
+ MUL0432.json
37
+ SNG0253.json
38
+ PMUL4998.json
39
+ PMUL1323.json
40
+ SNG0580.json
41
+ PMUL2719.json
42
+ PMUL3224.json
43
+ PMUL4440.json
44
+ PMUL4840.json
45
+ SNG0081.json
46
+ SNG02172.json
47
+ PMUL0550.json
48
+ PMUL3558.json
49
+ PMUL2275.json
50
+ PMUL3600.json
51
+ SNG0323.json
52
+ MUL0323.json
53
+ MUL1137.json
54
+ MUL2525.json
55
+ MUL0409.json
56
+ SNG01359.json
57
+ PMUL1259.json
58
+ SNG0568.json
59
+ PMUL1374.json
60
+ SNG02315.json
61
+ PMUL3437.json
62
+ MUL0454.json
63
+ MUL1926.json
64
+ PMUL1180.json
65
+ MUL0744.json
66
+ SNG1004.json
67
+ PMUL1412.json
68
+ PMUL0998.json
69
+ PMUL4660.json
70
+ SNG0006.json
71
+ PMUL1755.json
72
+ PMUL0399.json
73
+ PMUL3921.json
74
+ MUL1848.json
75
+ SNG0085.json
76
+ SNG02205.json
77
+ PMUL4880.json
78
+ SNG01153.json
79
+ MUL0537.json
80
+ MUL1555.json
81
+ PMUL0844.json
82
+ PMUL4025.json
83
+ SNG0691.json
84
+ PMUL1002.json
85
+ PMUL4949.json
86
+ MUL1248.json
87
+ MUL1008.json
88
+ PMUL1455.json
89
+ SNG0416.json
90
+ MUL0978.json
91
+ MUL0524.json
92
+ PMUL2953.json
93
+ SNG0832.json
94
+ PMUL4643.json
95
+ PMUL4716.json
96
+ MUL0071.json
97
+ SNG0317.json
98
+ PMUL1477.json
99
+ PMUL1424.json
100
+ PMUL4693.json
101
+ MUL2499.json
102
+ MUL1575.json
103
+ PMUL1173.json
104
+ PMUL1385.json
105
+ PMUL1463.json
106
+ PMUL3309.json
107
+ PMUL0578.json
108
+ PMUL2477.json
109
+ SNG0390.json
110
+ MUL2120.json
111
+ MUL0671.json
112
+ PMUL1320.json
113
+ MUL2410.json
114
+ MUL0197.json
115
+ MUL1811.json
116
+ MUL2269.json
117
+ MUL2053.json
118
+ MUL2146.json
119
+ PMUL2503.json
120
+ MUL0842.json
121
+ MUL1695.json
122
+ PMUL2210.json
123
+ MUL0869.json
124
+ MUL2138.json
125
+ MUL0264.json
126
+ SNG01884.json
127
+ SNG01432.json
128
+ MUL0391.json
129
+ MUL1285.json
130
+ MUL2368.json
131
+ SNG0451.json
132
+ PMUL2636.json
133
+ PMUL3027.json
134
+ PMUL0509.json
135
+ PMUL3044.json
136
+ PMUL1920.json
137
+ PMUL3141.json
138
+ MUL2042.json
139
+ MUL1050.json
140
+ MUL1598.json
141
+ PMUL2634.json
142
+ PMUL1867.json
143
+ MUL0677.json
144
+ PMUL4134.json
145
+ PMUL1266.json
146
+ SNG02153.json
147
+ PMUL2272.json
148
+ MUL1489.json
149
+ PMUL0129.json
150
+ PMUL1978.json
151
+ SNG0571.json
152
+ SNG01608.json
153
+ MUL0496.json
154
+ PMUL1763.json
155
+ MUL1202.json
156
+ MUL0397.json
157
+ PMUL1210.json
158
+ PMUL0573.json
159
+ SNG01353.json
160
+ PMUL1931.json
161
+ SNG0927.json
162
+ PMUL1344.json
163
+ PMUL1788.json
164
+ PMUL1329.json
165
+ SNG01503.json
166
+ PMUL2917.json
167
+ SNG01634.json
168
+ PMUL0566.json
169
+ PMUL3599.json
170
+ MUL2206.json
171
+ SNG0940.json
172
+ PMUL2330.json
173
+ MUL2106.json
174
+ PMUL3424.json
175
+ SNG0733.json
176
+ MUL2365.json
177
+ MUL1569.json
178
+ PMUL1593.json
179
+ PMUL4186.json
180
+ PMUL0006.json
181
+ MUL2442.json
182
+ SNG01692.json
183
+ MUL2130.json
184
+ MUL2193.json
185
+ MUL1661.json
186
+ SNG0617.json
187
+ PMUL1623.json
188
+ PMUL2006.json
189
+ PMUL4368.json
190
+ PMUL1801.json
191
+ SNG0098.json
192
+ PMUL3279.json
193
+ MUL2321.json
194
+ MUL2305.json
195
+ PMUL2882.json
196
+ MUL0798.json
197
+ MUL1627.json
198
+ MUL0073.json
199
+ PMUL4231.json
200
+ PMUL4616.json
201
+ MUL1697.json
202
+ PMUL4842.json
203
+ PMUL0090.json
204
+ PMUL1812.json
205
+ PMUL0713.json
206
+ SNG0456.json
207
+ MUL2569.json
208
+ PMUL2563.json
209
+ MUL1514.json
210
+ SNG0722.json
211
+ MUL2423.json
212
+ MUL1491.json
213
+ PMUL2746.json
214
+ MUL2218.json
215
+ SNG0613.json
216
+ MUL1060.json
217
+ MUL1527.json
218
+ SNG0455.json
219
+ MUL2270.json
220
+ MUL1552.json
221
+ PMUL0919.json
222
+ MUL1376.json
223
+ MUL2294.json
224
+ MUL1649.json
225
+ PMUL0367.json
226
+ PMUL3647.json
227
+ PMUL1462.json
228
+ PMUL1316.json
229
+ PMUL0410.json
230
+ PMUL0864.json
231
+ PMUL1772.json
232
+ MUL0937.json
233
+ PMUL0832.json
234
+ PMUL4317.json
235
+ MUL0814.json
236
+ MUL0148.json
237
+ MUL0260.json
238
+ MUL2664.json
239
+ SNG1042.json
240
+ PMUL4964.json
241
+ PMUL2194.json
242
+ PMUL4048.json
243
+ MUL1110.json
244
+ MUL0785.json
245
+ SNG0008.json
246
+ PMUL1182.json
247
+ MUL2116.json
248
+ PMUL4567.json
249
+ PMUL0204.json
250
+ MUL0354.json
251
+ MUL0018.json
252
+ SNG0095.json
253
+ MUL1045.json
254
+ MUL1883.json
255
+ MUL1958.json
256
+ SNG0792.json
257
+ MUL1515.json
258
+ MUL1633.json
259
+ MUL1935.json
260
+ PMUL3933.json
261
+ PMUL2491.json
262
+ MUL0474.json
263
+ PMUL3778.json
264
+ SNG01403.json
265
+ SNG0715.json
266
+ PMUL4155.json
267
+ PMUL4026.json
268
+ MUL1028.json
269
+ MUL0364.json
270
+ PMUL3734.json
271
+ MUL0089.json
272
+ SNG01936.json
273
+ PMUL3992.json
274
+ MUL1899.json
275
+ PMUL3012.json
276
+ MUL2195.json
277
+ MUL2072.json
278
+ MUL1642.json
279
+ SNG01542.json
280
+ PMUL0692.json
281
+ MUL2275.json
282
+ PMUL0109.json
283
+ PMUL2119.json
284
+ MUL0370.json
285
+ PMUL4077.json
286
+ MUL0466.json
287
+ MUL0212.json
288
+ PMUL2627.json
289
+ PMUL2215.json
290
+ MUL2320.json
291
+ MUL1675.json
292
+ MUL0457.json
293
+ SNG0519.json
294
+ PMUL3304.json
295
+ MUL0233.json
296
+ PMUL1253.json
297
+ MUL0810.json
298
+ SNG0274.json
299
+ PMUL2670.json
300
+ SNG02096.json
301
+ PMUL4255.json
302
+ MUL2439.json
303
+ MUL1612.json
304
+ SNG01775.json
305
+ MUL2281.json
306
+ PMUL3310.json
307
+ MUL0088.json
308
+ SNG0308.json
309
+ PMUL0548.json
310
+ PMUL3803.json
311
+ PMUL3759.json
312
+ SNG01270.json
313
+ PMUL4610.json
314
+ PMUL4946.json
315
+ MUL0690.json
316
+ PMUL3336.json
317
+ MUL2427.json
318
+ PMUL1613.json
319
+ PMUL1067.json
320
+ SNG0354.json
321
+ SNG0692.json
322
+ MUL0844.json
323
+ MUL1620.json
324
+ MUL1351.json
325
+ MUL1803.json
326
+ SNG01937.json
327
+ SNG0735.json
328
+ MUL0035.json
329
+ PMUL4059.json
330
+ SNG0073.json
331
+ MUL1806.json
332
+ MUL1254.json
333
+ MUL0789.json
334
+ MUL1554.json
335
+ PMUL1533.json
336
+ PMUL4229.json
337
+ SNG01262.json
338
+ SNG0466.json
339
+ PMUL4294.json
340
+ MUL2119.json
341
+ MUL0624.json
342
+ PMUL3625.json
343
+ MUL0498.json
344
+ SNG0482.json
345
+ PMUL4603.json
346
+ PMUL1113.json
347
+ PMUL2195.json
348
+ PMUL1949.json
349
+ PMUL3264.json
350
+ MUL1289.json
351
+ SNG02006.json
352
+ MUL0208.json
353
+ MUL0340.json
354
+ MUL0072.json
355
+ SNG0539.json
356
+ SNG01835.json
357
+ MUL2012.json
358
+ MUL1015.json
359
+ PMUL3737.json
360
+ PMUL4325.json
361
+ MUL2466.json
362
+ MUL0371.json
363
+ MUL0469.json
364
+ PMUL0795.json
365
+ MUL0003.json
366
+ SNG0799.json
367
+ MUL0881.json
368
+ SNG01710.json
369
+ PMUL3940.json
370
+ MUL0510.json
371
+ MUL0621.json
372
+ PMUL0012.json
373
+ SNG0659.json
374
+ MUL0230.json
375
+ SNG0767.json
376
+ MUL0528.json
377
+ PMUL1118.json
378
+ MUL2284.json
379
+ MUL0388.json
380
+ SNG0016.json
381
+ SNG1041.json
382
+ SNG0305.json
383
+ PMUL2513.json
384
+ PMUL3834.json
385
+ MUL0841.json
386
+ MUL0912.json
387
+ MUL0450.json
388
+ PMUL1470.json
389
+ PMUL4622.json
390
+ MUL2001.json
391
+ PMUL1183.json
392
+ PMUL0685.json
393
+ SNG1105.json
394
+ PMUL4542.json
395
+ MUL1189.json
396
+ PMUL2146.json
397
+ SNG0256.json
398
+ PMUL1526.json
399
+ PMUL2403.json
400
+ MUL0555.json
401
+ MUL0772.json
402
+ PMUL1172.json
403
+ PMUL4366.json
404
+ SNG01534.json
405
+ MUL0803.json
406
+ PMUL0267.json
407
+ SNG1075.json
408
+ PMUL4001.json
409
+ PMUL1869.json
410
+ SNG0055.json
411
+ PMUL2945.json
412
+ MUL1064.json
413
+ MUL0628.json
414
+ MUL0116.json
415
+ PMUL1537.json
416
+ PMUL1046.json
417
+ MUL0992.json
418
+ MUL1422.json
419
+ MUL0346.json
420
+ PMUL1087.json
421
+ SNG0933.json
422
+ PMUL4644.json
423
+ PMUL3913.json
424
+ PMUL3919.json
425
+ MUL1392.json
426
+ PMUL1844.json
427
+ MUL1596.json
428
+ MUL1478.json
429
+ PMUL2279.json
430
+ SNG0644.json
431
+ PMUL4648.json
432
+ PMUL4122.json
433
+ SNG0391.json
434
+ MUL1836.json
435
+ MUL0822.json
436
+ MUL1211.json
437
+ PMUL3145.json
438
+ PMUL4626.json
439
+ PMUL2437.json
440
+ SNG0721.json
441
+ PMUL1283.json
442
+ PMUL3723.json
443
+ PMUL2457.json
444
+ MUL2491.json
445
+ MUL0738.json
446
+ MUL1076.json
447
+ MUL2609.json
448
+ SNG0964.json
449
+ MUL0638.json
450
+ SNG01492.json
451
+ PMUL4259.json
452
+ PMUL3066.json
453
+ PMUL1809.json
454
+ MUL2376.json
455
+ MUL1753.json
456
+ PMUL0265.json
457
+ MUL1024.json
458
+ SNG01733.json
459
+ MUL1274.json
460
+ PMUL4905.json
461
+ MUL1159.json
462
+ MUL0080.json
463
+ PMUL4140.json
464
+ SNG0078.json
465
+ MUL0843.json
466
+ MUL2567.json
467
+ PMUL2703.json
468
+ SNG01767.json
469
+ PMUL1373.json
470
+ PMUL3815.json
471
+ PMUL0875.json
472
+ PMUL4672.json
473
+ PMUL2778.json
474
+ PMUL3495.json
475
+ MUL2139.json
476
+ PMUL3156.json
477
+ SNG0004.json
478
+ PMUL1521.json
479
+ MUL1638.json
480
+ PMUL0982.json
481
+ MUL2386.json
482
+ PMUL2123.json
483
+ MUL1350.json
484
+ SNG0293.json
485
+ PMUL1105.json
486
+ SNG02018.json
487
+ MUL1212.json
488
+ SNG01332.json
489
+ PMUL1148.json
490
+ SNG0483.json
491
+ PMUL3890.json
492
+ PMUL4356.json
493
+ PMUL3162.json
494
+ SNG01679.json
495
+ MUL2542.json
496
+ PMUL3494.json
497
+ MUL2151.json
498
+ PMUL3239.json
499
+ PMUL3742.json
500
+ PMUL1895.json
501
+ PMUL4362.json
502
+ SNG0781.json
503
+ SNG01538.json
504
+ PMUL1486.json
505
+ PMUL2174.json
506
+ PMUL0095.json
507
+ MUL0316.json
508
+ PMUL2708.json
509
+ SNG0897.json
510
+ PMUL3247.json
511
+ PMUL3523.json
512
+ MUL2359.json
513
+ PMUL3520.json
514
+ MUL2060.json
515
+ MUL2358.json
516
+ PMUL0069.json
517
+ PMUL2869.json
518
+ SNG0661.json
519
+ MUL1838.json
520
+ MUL0831.json
521
+ MUL2405.json
522
+ PMUL0117.json
523
+ PMUL0182.json
524
+ MUL1493.json
525
+ MUL0890.json
526
+ SNG01165.json
527
+ SNG0690.json
528
+ PMUL3423.json
529
+ PMUL4258.json
530
+ MUL0369.json
531
+ MUL0838.json
532
+ SNG1066.json
533
+ PMUL1435.json
534
+ SNG1078.json
535
+ PMUL3957.json
536
+ MUL1240.json
537
+ MUL0947.json
538
+ MUL1606.json
539
+ MUL0594.json
540
+ PMUL1854.json
541
+ SNG0830.json
542
+ PMUL3301.json
543
+ PMUL2286.json
544
+ SNG0898.json
545
+ MUL0682.json
546
+ MUL0990.json
547
+ PMUL4731.json
548
+ SNG01323.json
549
+ SNG0515.json
550
+ SNG1086.json
551
+ SNG01898.json
552
+ PMUL4034.json
553
+ PMUL4504.json
554
+ SNG0678.json
555
+ PMUL2983.json
556
+ SNG0954.json
557
+ MUL2051.json
558
+ PMUL0615.json
559
+ MUL0383.json
560
+ MUL1455.json
561
+ PMUL4054.json
562
+ SNG0892.json
563
+ PMUL3171.json
564
+ PMUL4713.json
565
+ SNG01272.json
566
+ MUL0011.json
567
+ SNG01530.json
568
+ MUL1870.json
569
+ PMUL3946.json
570
+ MUL1828.json
571
+ SNG01686.json
572
+ PMUL1811.json
573
+ MUL2665.json
574
+ SNG0689.json
575
+ PMUL0994.json
576
+ MUL1624.json
577
+ PMUL3328.json
578
+ PMUL1987.json
579
+ MUL1091.json
580
+ MUL0570.json
581
+ PMUL3731.json
582
+ PMUL1944.json
583
+ PMUL0558.json
584
+ PMUL1332.json
585
+ MUL1766.json
586
+ MUL1066.json
587
+ PMUL3668.json
588
+ MUL2086.json
589
+ MUL0760.json
590
+ PMUL3785.json
591
+ SNG0874.json
592
+ PMUL1330.json
593
+ PMUL2980.json
594
+ PMUL0599.json
595
+ MUL0379.json
596
+ SNG01386.json
597
+ PMUL2452.json
598
+ PMUL0745.json
599
+ SNG01943.json
600
+ MUL0761.json
601
+ PMUL2558.json
602
+ MUL0222.json
603
+ PMUL1247.json
604
+ PMUL4515.json
605
+ PMUL3376.json
606
+ PMUL1241.json
607
+ PMUL1136.json
608
+ PMUL0899.json
609
+ MUL1258.json
610
+ SNG0994.json
611
+ PMUL3918.json
612
+ PMUL2483.json
613
+ MUL0286.json
614
+ PMUL3439.json
615
+ PMUL3107.json
616
+ SNG01673.json
617
+ MUL1860.json
618
+ PMUL2704.json
619
+ PMUL1983.json
620
+ SNG0586.json
621
+ MUL1410.json
622
+ SNG0867.json
623
+ MUL1746.json
624
+ MUL2290.json
625
+ PMUL1853.json
626
+ MUL2162.json
627
+ PMUL4131.json
628
+ SNG0412.json
629
+ MUL1692.json
630
+ SNG02240.json
631
+ SNG0742.json
632
+ PMUL1347.json
633
+ SNG01873.json
634
+ SNG0991.json
635
+ PMUL3897.json
636
+ MUL1855.json
637
+ MUL2657.json
638
+ PMUL4011.json
639
+ MUL1342.json
640
+ MUL1986.json
641
+ MUL2137.json
642
+ SNG02198.json
643
+ MUL1739.json
644
+ MUL0309.json
645
+ PMUL1600.json
646
+ MUL2630.json
647
+ SNG0007.json
648
+ SNG0908.json
649
+ PMUL0630.json
650
+ MUL2074.json
651
+ SNG0610.json
652
+ PMUL4343.json
653
+ PMUL2205.json
654
+ MUL1712.json
655
+ PMUL1804.json
656
+ MUL0014.json
657
+ MUL0341.json
658
+ MUL1657.json
659
+ PMUL4641.json
660
+ MUL1077.json
661
+ PMUL4106.json
662
+ MUL0473.json
663
+ PMUL1981.json
664
+ PMUL3283.json
665
+ PMUL3085.json
666
+ MUL1192.json
667
+ PMUL2000.json
668
+ SNG0855.json
669
+ SNG1048.json
670
+ MUL0099.json
671
+ PMUL4306.json
672
+ MUL0941.json
673
+ MUL2317.json
674
+ PMUL4318.json
675
+ SNG01983.json
676
+ PMUL2497.json
677
+ MUL1787.json
678
+ SNG0518.json
679
+ PMUL3976.json
680
+ MUL1466.json
681
+ MUL0845.json
682
+ PMUL4524.json
683
+ PMUL0782.json
684
+ SNG1126.json
685
+ MUL0492.json
686
+ PMUL4432.json
687
+ SNG0338.json
688
+ PMUL2848.json
689
+ MUL1560.json
690
+ MUL0739.json
691
+ MUL1763.json
692
+ PMUL4078.json
693
+ PMUL1657.json
694
+ PMUL1109.json
695
+ SNG01755.json
696
+ MUL0332.json
697
+ MUL0113.json
698
+ MUL1800.json
699
+ PMUL4819.json
700
+ PMUL1779.json
701
+ MUL2432.json
702
+ SNG02207.json
703
+ MUL2658.json
704
+ MUL2099.json
705
+ PMUL0674.json
706
+ MUL1983.json
707
+ MUL1071.json
708
+ PMUL3160.json
709
+ PMUL4044.json
710
+ SNG0280.json
711
+ MUL1664.json
712
+ PMUL3868.json
713
+ SNG0429.json
714
+ PMUL3886.json
715
+ PMUL2756.json
716
+ SNG0701.json
717
+ SNG0755.json
718
+ MUL2225.json
719
+ SNG01907.json
720
+ MUL1833.json
721
+ PMUL3662.json
722
+ PMUL0938.json
723
+ MUL0669.json
724
+ SNG1090.json
725
+ MUL0533.json
726
+ MUL1799.json
727
+ PMUL4636.json
728
+ PMUL2755.json
729
+ SNG01919.json
730
+ PMUL4326.json
731
+ PMUL1273.json
732
+ PMUL1311.json
733
+ PMUL4780.json
734
+ SNG01924.json
735
+ PMUL3127.json
736
+ PMUL3514.json
737
+ SNG0572.json
738
+ MUL2063.json
739
+ PMUL3907.json
740
+ MUL1417.json
741
+ PMUL0441.json
742
+ SNG01683.json
743
+ MUL2122.json
744
+ PMUL1998.json
745
+ SNG0468.json
746
+ MUL0787.json
747
+ SNG1026.json
748
+ MUL2347.json
749
+ PMUL3685.json
750
+ PMUL3275.json
751
+ PMUL0522.json
752
+ PMUL1834.json
753
+ PMUL1232.json
754
+ PMUL1980.json
755
+ MUL2378.json
756
+ PMUL2380.json
757
+ MUL0654.json
758
+ SNG0649.json
759
+ PMUL4800.json
760
+ PMUL3126.json
761
+ PMUL2209.json
762
+ SNG0322.json
763
+ MUL1650.json
764
+ MUL1088.json
765
+ MUL0939.json
766
+ SNG0772.json
767
+ SNG0446.json
768
+ PMUL3748.json
769
+ SNG0611.json
770
+ MUL2204.json
771
+ SNG01155.json
772
+ PMUL4756.json
773
+ PMUL3576.json
774
+ SNG0005.json
775
+ MUL1759.json
776
+ PMUL4958.json
777
+ SNG0547.json
778
+ PMUL4333.json
779
+ SNG0805.json
780
+ MUL2148.json
781
+ PMUL0205.json
782
+ MUL0575.json
783
+ PMUL1256.json
784
+ SNG0477.json
785
+ MUL1901.json
786
+ PMUL3557.json
787
+ PMUL3506.json
788
+ PMUL2898.json
789
+ PMUL4941.json
790
+ PMUL3875.json
791
+ MUL0373.json
792
+ PMUL3465.json
793
+ PMUL0457.json
794
+ MUL0828.json
795
+ MUL0034.json
796
+ MUL2415.json
797
+ SNG01752.json
798
+ PMUL3348.json
799
+ MUL1268.json
800
+ PMUL1284.json
801
+ SNG01797.json
802
+ MUL2457.json
803
+ PMUL3014.json
804
+ MUL1818.json
805
+ MUL1055.json
806
+ MUL1505.json
807
+ MUL0374.json
808
+ MUL2177.json
809
+ PMUL1982.json
810
+ PMUL1420.json
811
+ PMUL4383.json
812
+ PMUL0076.json
813
+ MUL0389.json
814
+ SNG01380.json
815
+ MUL0353.json
816
+ PMUL4388.json
817
+ PMUL1739.json
818
+ PMUL1200.json
819
+ PMUL1276.json
820
+ PMUL0506.json
821
+ PMUL3364.json
822
+ PMUL3425.json
823
+ PMUL2311.json
824
+ MUL0821.json
825
+ PMUL3549.json
826
+ SNG1036.json
827
+ SNG01850.json
828
+ SNG0529.json
829
+ PMUL3663.json
830
+ PMUL3415.json
831
+ PMUL2729.json
832
+ PMUL4911.json
833
+ MUL2686.json
834
+ MUL1228.json
835
+ SNG0983.json
836
+ PMUL1775.json
837
+ SNG0099.json
838
+ PMUL4050.json
839
+ SNG0348.json
840
+ MUL0172.json
841
+ SNG02202.json
842
+ SNG01551.json
843
+ SNG0941.json
844
+ MUL0021.json
845
+ SNG1012.json
846
+ PMUL3521.json
847
+ MUL0901.json
848
+ PMUL1762.json
849
+ MUL2482.json
850
+ MUL0228.json
851
+ MUL0818.json
852
+ SNG0779.json
853
+ MUL0515.json
854
+ PMUL3707.json
855
+ SNG0590.json
856
+ PMUL3596.json
857
+ SNG0797.json
858
+ PMUL4357.json
859
+ PMUL4605.json
860
+ PMUL4303.json
861
+ SNG0069.json
862
+ PMUL0518.json
863
+ MUL2197.json
864
+ PMUL2239.json
865
+ MUL2675.json
866
+ PMUL1883.json
867
+ PMUL2578.json
868
+ MUL1059.json
869
+ PMUL1137.json
870
+ SNG0284.json
871
+ SNG0500.json
872
+ MUL2637.json
873
+ PMUL4234.json
874
+ SNG0600.json
875
+ MUL2009.json
876
+ PMUL0873.json
877
+ MUL0239.json
878
+ SNG0962.json
879
+ PMUL2351.json
880
+ MUL1365.json
881
+ MUL2316.json
882
+ PMUL1036.json
883
+ MUL1117.json
884
+ SNG02319.json
885
+ PMUL4884.json
886
+ PMUL4316.json
887
+ SNG0714.json
888
+ PMUL0048.json
889
+ PMUL3649.json
890
+ SNG0979.json
891
+ MUL1139.json
892
+ MUL2077.json
893
+ PMUL4894.json
894
+ PMUL0286.json
895
+ SNG0782.json
896
+ SNG0448.json
897
+ SNG0531.json
898
+ MUL0896.json
899
+ SNG0345.json
900
+ SNG0061.json
901
+ SNG01940.json
902
+ MUL1276.json
903
+ SNG0822.json
904
+ PMUL4547.json
905
+ SNG0768.json
906
+ MUL1278.json
907
+ MUL0540.json
908
+ PMUL4569.json
909
+ MUL0004.json
910
+ MUL0694.json
911
+ SNG0775.json
912
+ PMUL3158.json
913
+ SNG1016.json
914
+ SNG01784.json
915
+ MUL2523.json
916
+ SNG0289.json
917
+ MUL0536.json
918
+ PMUL2080.json
919
+ PMUL3935.json
920
+ PMUL1370.json
921
+ SNG0459.json
922
+ MUL0144.json
923
+ MUL2301.json
924
+ PMUL0262.json
925
+ PMUL4176.json
926
+ MUL1273.json
927
+ SNG1147.json
928
+ PMUL1952.json
929
+ MUL1475.json
930
+ MUL0613.json
931
+ SNG0866.json
932
+ SNG01366.json
933
+ PMUL3403.json
934
+ PMUL3293.json
935
+ PMUL2433.json
936
+ PMUL2933.json
937
+ SNG0360.json
938
+ MUL0352.json
939
+ PMUL4220.json
940
+ SNG0616.json
941
+ PMUL3708.json
942
+ MUL1690.json
943
+ PMUL0768.json
944
+ PMUL2489.json
945
+ PMUL4224.json
946
+ PMUL2124.json
947
+ MUL1508.json
948
+ PMUL1106.json
949
+ SNG0636.json
950
+ MUL1756.json
951
+ PMUL3688.json
952
+ PMUL1147.json
953
+ PMUL1091.json
954
+ PMUL3217.json
955
+ PMUL0276.json
956
+ MUL1678.json
957
+ SNG0263.json
958
+ SNG01391.json
959
+ PMUL4246.json
960
+ SNG01819.json
961
+ PMUL3931.json
962
+ SNG0803.json
963
+ SNG02342.json
964
+ MUL0849.json
965
+ PMUL3282.json
966
+ PMUL4564.json
967
+ PMUL0732.json
968
+ SNG1091.json
969
+ PMUL1359.json
970
+ MUL1122.json
971
+ MUL1546.json
972
+ MUL0198.json
973
+ PMUL4930.json
974
+ PMUL2362.json
975
+ PMUL1008.json
976
+ PMUL4919.json
977
+ MUL1718.json
978
+ PMUL1342.json
979
+ MUL1898.json
980
+ PMUL4344.json
981
+ MUL1418.json
982
+ SNG0681.json
983
+ SNG0433.json
984
+ SNG0471.json
985
+ MUL1844.json
986
+ SNG1070.json
987
+ SNG01957.json
988
+ MUL1607.json
989
+ MUL0199.json
990
+ MUL0297.json
991
+ PMUL2942.json
992
+ SNG0601.json
993
+ MUL1981.json
994
+ SNG0527.json
995
+ MUL2254.json
996
+ MUL0306.json
997
+ MUL2228.json
998
+ MUL0641.json
999
+ PMUL1194.json
1000
+ MUL0527.json
data/raw/UBAR/multi-woz/valListFile.json ADDED
@@ -0,0 +1,1000 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PMUL0698.json
2
+ PMUL3233.json
3
+ SNG01627.json
4
+ MUL1719.json
5
+ MUL0242.json
6
+ PMUL1072.json
7
+ PMUL3048.json
8
+ PMUL1100.json
9
+ PMUL3979.json
10
+ MUL1409.json
11
+ PMUL4828.json
12
+ SNG0329.json
13
+ PMUL3314.json
14
+ MUL1768.json
15
+ MUL0293.json
16
+ PMUL0420.json
17
+ PMUL0858.json
18
+ MUL1367.json
19
+ MUL1271.json
20
+ PMUL0928.json
21
+ MUL1589.json
22
+ PMUL3200.json
23
+ MUL0398.json
24
+ SNG01735.json
25
+ PMUL4290.json
26
+ SNG0551.json
27
+ MUL2384.json
28
+ SNG01993.json
29
+ PMUL2235.json
30
+ PMUL4075.json
31
+ PMUL0724.json
32
+ MUL2160.json
33
+ PMUL1402.json
34
+ PMUL1152.json
35
+ PMUL1121.json
36
+ SNG02071.json
37
+ PMUL3215.json
38
+ PMUL4833.json
39
+ MUL0344.json
40
+ MUL2418.json
41
+ PMUL1181.json
42
+ MUL1604.json
43
+ PMUL0287.json
44
+ MUL2064.json
45
+ PMUL4581.json
46
+ MUL1888.json
47
+ MUL1603.json
48
+ PMUL1591.json
49
+ MUL2393.json
50
+ MUL0300.json
51
+ PMUL3406.json
52
+ MUL2092.json
53
+ PMUL3428.json
54
+ SNG0899.json
55
+ MUL1503.json
56
+ MUL2470.json
57
+ MUL2361.json
58
+ SNG0759.json
59
+ PMUL0590.json
60
+ SNG01598.json
61
+ MUL0126.json
62
+ MUL1973.json
63
+ PMUL1951.json
64
+ PMUL4993.json
65
+ PMUL2307.json
66
+ MUL1920.json
67
+ SNG01184.json
68
+ MUL0960.json
69
+ MUL2366.json
70
+ PMUL1429.json
71
+ PMUL0564.json
72
+ SNG1049.json
73
+ PMUL4688.json
74
+ SNG02346.json
75
+ MUL0696.json
76
+ MUL0899.json
77
+ PMUL0601.json
78
+ MUL0452.json
79
+ MUL1923.json
80
+ MUL2387.json
81
+ PMUL1635.json
82
+ PMUL2412.json
83
+ PMUL3123.json
84
+ PMUL0508.json
85
+ PMUL1917.json
86
+ SNG0665.json
87
+ SNG0374.json
88
+ PMUL2804.json
89
+ PMUL4612.json
90
+ PMUL4846.json
91
+ MUL0985.json
92
+ PMUL2464.json
93
+ MUL0676.json
94
+ MUL0754.json
95
+ MUL0509.json
96
+ SNG0041.json
97
+ SNG0651.json
98
+ PMUL0529.json
99
+ PMUL3891.json
100
+ MUL2117.json
101
+ MUL2222.json
102
+ PMUL4426.json
103
+ PMUL2713.json
104
+ SNG02221.json
105
+ PMUL2179.json
106
+ MUL1022.json
107
+ PMUL2973.json
108
+ PMUL4359.json
109
+ PMUL1653.json
110
+ PMUL3779.json
111
+ MUL0602.json
112
+ PMUL4687.json
113
+ SNG1046.json
114
+ MUL0559.json
115
+ MUL2372.json
116
+ SNG0807.json
117
+ PMUL1990.json
118
+ PMUL3817.json
119
+ PMUL1620.json
120
+ MUL0142.json
121
+ SNG1143.json
122
+ MUL0425.json
123
+ PMUL1257.json
124
+ MUL0962.json
125
+ MUL1245.json
126
+ PMUL1953.json
127
+ SNG0038.json
128
+ MUL0631.json
129
+ MUL1472.json
130
+ MUL2258.json
131
+ PMUL0759.json
132
+ MUL0791.json
133
+ MUL0627.json
134
+ PMUL0569.json
135
+ MUL0476.json
136
+ MUL1977.json
137
+ MUL0129.json
138
+ PMUL2394.json
139
+ MUL2644.json
140
+ MUL1286.json
141
+ PMUL0032.json
142
+ PMUL1768.json
143
+ PMUL3574.json
144
+ SNG0535.json
145
+ MUL1881.json
146
+ PMUL4414.json
147
+ MUL1347.json
148
+ MUL0773.json
149
+ SNG0939.json
150
+ MUL1415.json
151
+ PMUL3899.json
152
+ MUL0751.json
153
+ SNG1007.json
154
+ MUL2324.json
155
+ PMUL4198.json
156
+ MUL0737.json
157
+ MUL1626.json
158
+ MUL1379.json
159
+ SNG0588.json
160
+ SNG0521.json
161
+ MUL1407.json
162
+ PMUL4826.json
163
+ PMUL3591.json
164
+ MUL2487.json
165
+ PMUL4354.json
166
+ MUL0362.json
167
+ MUL1370.json
168
+ PMUL1393.json
169
+ PMUL0959.json
170
+ SNG0922.json
171
+ PMUL4881.json
172
+ PMUL2617.json
173
+ MUL1652.json
174
+ PMUL4471.json
175
+ MUL2670.json
176
+ PMUL2478.json
177
+ PMUL0729.json
178
+ MUL1647.json
179
+ PMUL2532.json
180
+ MUL2495.json
181
+ PMUL1132.json
182
+ PMUL0623.json
183
+ PMUL3806.json
184
+ PMUL2282.json
185
+ SNG01229.json
186
+ PMUL1579.json
187
+ SNG02105.json
188
+ PMUL3073.json
189
+ PMUL2219.json
190
+ SNG0698.json
191
+ PMUL4719.json
192
+ SNG01903.json
193
+ MUL1837.json
194
+ MUL1426.json
195
+ MUL2291.json
196
+ SNG01586.json
197
+ PMUL3607.json
198
+ PMUL3744.json
199
+ PMUL4431.json
200
+ MUL1900.json
201
+ SNG01777.json
202
+ SNG01609.json
203
+ MUL1078.json
204
+ MUL1125.json
205
+ PMUL1310.json
206
+ PMUL0912.json
207
+ MUL0622.json
208
+ SNG1055.json
209
+ MUL2612.json
210
+ MUL2277.json
211
+ MUL2016.json
212
+ PMUL2894.json
213
+ SNG0900.json
214
+ PMUL2504.json
215
+ SNG01579.json
216
+ PMUL3110.json
217
+ PMUL3169.json
218
+ PMUL3410.json
219
+ MUL2351.json
220
+ MUL1131.json
221
+ SNG1047.json
222
+ PMUL4686.json
223
+ MUL0635.json
224
+ MUL2526.json
225
+ SNG0414.json
226
+ MUL1975.json
227
+ MUL1160.json
228
+ MUL0915.json
229
+ SNG01297.json
230
+ PMUL1408.json
231
+ SNG1011.json
232
+ MUL0625.json
233
+ MUL1995.json
234
+ MUL0663.json
235
+ PMUL0589.json
236
+ PMUL0653.json
237
+ PMUL3702.json
238
+ PMUL3735.json
239
+ PMUL3244.json
240
+ SNG0603.json
241
+ SNG0068.json
242
+ SNG0080.json
243
+ PMUL1968.json
244
+ SNG0299.json
245
+ SNG01595.json
246
+ MUL0675.json
247
+ MUL0681.json
248
+ MUL0673.json
249
+ PMUL1322.json
250
+ SNG0891.json
251
+ MUL1292.json
252
+ PMUL4289.json
253
+ PMUL0512.json
254
+ PMUL1389.json
255
+ PMUL3456.json
256
+ PMUL4939.json
257
+ MUL1341.json
258
+ MUL0426.json
259
+ PMUL0294.json
260
+ MUL2282.json
261
+ MUL2013.json
262
+ PMUL0716.json
263
+ MUL0637.json
264
+ PMUL4711.json
265
+ PMUL1453.json
266
+ PMUL0743.json
267
+ PMUL3362.json
268
+ PMUL0984.json
269
+ MUL2251.json
270
+ MUL1673.json
271
+ PMUL1108.json
272
+ PMUL3002.json
273
+ PMUL1029.json
274
+ PMUL2255.json
275
+ PMUL0605.json
276
+ MUL2041.json
277
+ PMUL0575.json
278
+ SNG0283.json
279
+ PMUL2863.json
280
+ PMUL0936.json
281
+ MUL1381.json
282
+ PMUL0025.json
283
+ MUL1963.json
284
+ MUL2111.json
285
+ PMUL3106.json
286
+ PMUL2711.json
287
+ PMUL2021.json
288
+ PMUL0356.json
289
+ SNG0494.json
290
+ PMUL3888.json
291
+ PMUL1018.json
292
+ MUL1463.json
293
+ MUL0065.json
294
+ PMUL3756.json
295
+ PMUL2204.json
296
+ MUL0878.json
297
+ MUL2389.json
298
+ MUL2000.json
299
+ PMUL1557.json
300
+ MUL1368.json
301
+ MUL1740.json
302
+ PMUL3434.json
303
+ PMUL3072.json
304
+ SNG0934.json
305
+ MUL2640.json
306
+ PMUL2320.json
307
+ PMUL4853.json
308
+ MUL0107.json
309
+ PMUL4287.json
310
+ PMUL4482.json
311
+ MUL0219.json
312
+ PMUL3466.json
313
+ MUL2173.json
314
+ MUL2082.json
315
+ MUL0493.json
316
+ MUL1843.json
317
+ PMUL0010.json
318
+ MUL0386.json
319
+ MUL2096.json
320
+ MUL1564.json
321
+ PMUL3384.json
322
+ PMUL0596.json
323
+ PMUL4588.json
324
+ PMUL0622.json
325
+ MUL0490.json
326
+ SNG0845.json
327
+ PMUL2421.json
328
+ SNG0437.json
329
+ MUL0959.json
330
+ SNG0883.json
331
+ SNG01235.json
332
+ PMUL1791.json
333
+ PMUL1289.json
334
+ PMUL3835.json
335
+ SNG1125.json
336
+ MUL0971.json
337
+ MUL2467.json
338
+ MUL1288.json
339
+ PMUL2386.json
340
+ SNG0344.json
341
+ SNG0896.json
342
+ PMUL3554.json
343
+ SNG0942.json
344
+ PMUL1684.json
345
+ PMUL1892.json
346
+ PMUL0289.json
347
+ MUL2065.json
348
+ SNG0996.json
349
+ MUL2083.json
350
+ PMUL2314.json
351
+ SNG1023.json
352
+ MUL2690.json
353
+ PMUL3332.json
354
+ SNG01934.json
355
+ PMUL4793.json
356
+ PMUL2428.json
357
+ PMUL3537.json
358
+ MUL1854.json
359
+ PMUL2762.json
360
+ SNG01201.json
361
+ MUL1221.json
362
+ MUL0719.json
363
+ PMUL0717.json
364
+ PMUL0400.json
365
+ PMUL0874.json
366
+ PMUL1683.json
367
+ MUL0713.json
368
+ MUL1808.json
369
+ PMUL1063.json
370
+ MUL1967.json
371
+ SNG0650.json
372
+ MUL1976.json
373
+ MUL1450.json
374
+ SNG0542.json
375
+ SNG0913.json
376
+ MUL0338.json
377
+ PMUL3645.json
378
+ SNG0937.json
379
+ MUL1908.json
380
+ SNG01206.json
381
+ SNG0751.json
382
+ SNG01504.json
383
+ PMUL2906.json
384
+ MUL2330.json
385
+ PMUL4120.json
386
+ SNG0018.json
387
+ SNG01172.json
388
+ MUL2263.json
389
+ SNG0314.json
390
+ MUL1256.json
391
+ PMUL4864.json
392
+ PMUL1879.json
393
+ SNG0490.json
394
+ MUL0657.json
395
+ PMUL2383.json
396
+ PMUL0142.json
397
+ PMUL2839.json
398
+ MUL0478.json
399
+ MUL0401.json
400
+ PMUL0543.json
401
+ PMUL1016.json
402
+ PMUL4451.json
403
+ SNG01626.json
404
+ MUL2249.json
405
+ PMUL1831.json
406
+ PMUL4439.json
407
+ PMUL0835.json
408
+ MUL1025.json
409
+ PMUL3665.json
410
+ SNG0565.json
411
+ PMUL2350.json
412
+ PMUL3405.json
413
+ MUL0287.json
414
+ PMUL1057.json
415
+ SNG01630.json
416
+ MUL0135.json
417
+ PMUL3485.json
418
+ PMUL0697.json
419
+ PMUL3396.json
420
+ PMUL3017.json
421
+ MUL1738.json
422
+ SNG0384.json
423
+ PMUL3397.json
424
+ PMUL1159.json
425
+ PMUL1518.json
426
+ PMUL4276.json
427
+ MUL1934.json
428
+ MUL0430.json
429
+ PMUL0348.json
430
+ PMUL4109.json
431
+ MUL0154.json
432
+ MUL1227.json
433
+ PMUL3363.json
434
+ SNG0829.json
435
+ PMUL2623.json
436
+ PMUL1795.json
437
+ PMUL3464.json
438
+ MUL1360.json
439
+ MUL0839.json
440
+ SNG0090.json
441
+ MUL0603.json
442
+ MUL1780.json
443
+ SNG01935.json
444
+ MUL0995.json
445
+ MUL1130.json
446
+ PMUL3634.json
447
+ SNG0893.json
448
+ MUL1651.json
449
+ SNG1122.json
450
+ PMUL3695.json
451
+ SNG01889.json
452
+ MUL0745.json
453
+ MUL1879.json
454
+ PMUL1771.json
455
+ PMUL4053.json
456
+ SNG01317.json
457
+ SNG0554.json
458
+ PMUL4620.json
459
+ MUL1492.json
460
+ MUL0549.json
461
+ PMUL1747.json
462
+ PMUL2792.json
463
+ MUL0187.json
464
+ PMUL3740.json
465
+ MUL1487.json
466
+ MUL1249.json
467
+ PMUL2841.json
468
+ PMUL4814.json
469
+ MUL1457.json
470
+ PMUL1712.json
471
+ SNG0331.json
472
+ MUL2259.json
473
+ SNG0804.json
474
+ PMUL4332.json
475
+ MUL1540.json
476
+ MUL2638.json
477
+ SNG0058.json
478
+ PMUL0555.json
479
+ SNG0030.json
480
+ MUL2341.json
481
+ PMUL3683.json
482
+ SNG0993.json
483
+ PMUL1594.json
484
+ PMUL4877.json
485
+ MUL0731.json
486
+ PMUL4702.json
487
+ MUL1166.json
488
+ PMUL3052.json
489
+ MUL1576.json
490
+ SNG0501.json
491
+ PMUL4976.json
492
+ MUL1762.json
493
+ PMUL4729.json
494
+ PMUL1345.json
495
+ PMUL4424.json
496
+ SNG1043.json
497
+ SNG01684.json
498
+ MUL0178.json
499
+ MUL1916.json
500
+ MUL1549.json
501
+ MUL0311.json
502
+ SNG1069.json
503
+ MUL2574.json
504
+ PMUL4446.json
505
+ PMUL1681.json
506
+ MUL0305.json
507
+ SNG0422.json
508
+ MUL2108.json
509
+ MUL0051.json
510
+ SNG02311.json
511
+ PMUL1211.json
512
+ MUL0598.json
513
+ SNG0771.json
514
+ MUL0707.json
515
+ PMUL0432.json
516
+ MUL0544.json
517
+ SNG02214.json
518
+ PMUL1599.json
519
+ PMUL4314.json
520
+ PMUL1235.json
521
+ MUL0272.json
522
+ SNG1018.json
523
+ SNG0668.json
524
+ PMUL4302.json
525
+ SNG0697.json
526
+ PMUL0036.json
527
+ PMUL2441.json
528
+ SNG1017.json
529
+ SNG01553.json
530
+ SNG01426.json
531
+ PMUL0187.json
532
+ PMUL2301.json
533
+ MUL2344.json
534
+ PMUL4436.json
535
+ MUL0055.json
536
+ MUL1722.json
537
+ MUL0674.json
538
+ PMUL2748.json
539
+ PMUL3630.json
540
+ SNG01804.json
541
+ MUL2289.json
542
+ PMUL2472.json
543
+ MUL2468.json
544
+ PMUL1744.json
545
+ PMUL2757.json
546
+ MUL1590.json
547
+ MUL1146.json
548
+ PMUL2494.json
549
+ SNG0442.json
550
+ SNG0769.json
551
+ SNG01664.json
552
+ MUL0046.json
553
+ SNG1035.json
554
+ PMUL4623.json
555
+ MUL0302.json
556
+ SNG02278.json
557
+ PMUL3392.json
558
+ PMUL0739.json
559
+ PMUL4033.json
560
+ MUL2448.json
561
+ MUL1338.json
562
+ PMUL0689.json
563
+ PMUL3883.json
564
+ PMUL1496.json
565
+ SNG0277.json
566
+ SNG01453.json
567
+ SNG02220.json
568
+ PMUL0083.json
569
+ PMUL3911.json
570
+ PMUL2648.json
571
+ MUL0032.json
572
+ MUL0337.json
573
+ PMUL4592.json
574
+ MUL0095.json
575
+ PMUL4264.json
576
+ PMUL3344.json
577
+ SNG0660.json
578
+ MUL1615.json
579
+ MUL1034.json
580
+ MUL1550.json
581
+ MUL0012.json
582
+ MUL0093.json
583
+ SNG0368.json
584
+ MUL1903.json
585
+ MUL2677.json
586
+ PMUL1881.json
587
+ PMUL3015.json
588
+ MUL2456.json
589
+ PMUL3426.json
590
+ SNG01218.json
591
+ MUL1517.json
592
+ MUL0650.json
593
+ PMUL1142.json
594
+ PMUL4955.json
595
+ PMUL2599.json
596
+ MUL1433.json
597
+ MUL0326.json
598
+ PMUL2807.json
599
+ PMUL0626.json
600
+ SNG01703.json
601
+ MUL0384.json
602
+ PMUL4467.json
603
+ SNG02109.json
604
+ SNG01953.json
605
+ SNG01928.json
606
+ MUL0702.json
607
+ PMUL0515.json
608
+ MUL0806.json
609
+ PMUL1052.json
610
+ MUL0202.json
611
+ PMUL4744.json
612
+ PMUL4126.json
613
+ PMUL1346.json
614
+ SNG01527.json
615
+ MUL1617.json
616
+ MUL1128.json
617
+ MUL1655.json
618
+ PMUL3109.json
619
+ PMUL3050.json
620
+ SNG0017.json
621
+ PMUL3884.json
622
+ MUL2199.json
623
+ SNG0381.json
624
+ SNG0463.json
625
+ MUL2268.json
626
+ PMUL2324.json
627
+ SNG02115.json
628
+ MUL0923.json
629
+ SNG02052.json
630
+ PMUL2075.json
631
+ PMUL4485.json
632
+ PMUL0134.json
633
+ MUL2152.json
634
+ MUL1968.json
635
+ MUL0013.json
636
+ MUL1462.json
637
+ MUL0513.json
638
+ PMUL2248.json
639
+ PMUL1661.json
640
+ PMUL0207.json
641
+ MUL2649.json
642
+ MUL0227.json
643
+ SNG0711.json
644
+ PMUL0690.json
645
+ PMUL4984.json
646
+ PMUL2594.json
647
+ MUL0539.json
648
+ PMUL4707.json
649
+ MUL0651.json
650
+ PMUL3453.json
651
+ PMUL3632.json
652
+ PMUL1451.json
653
+ PMUL1282.json
654
+ PMUL4076.json
655
+ PMUL0863.json
656
+ SNG01523.json
657
+ MUL0512.json
658
+ MUL1042.json
659
+ SNG02029.json
660
+ SNG02121.json
661
+ PMUL0607.json
662
+ PMUL2144.json
663
+ MUL1382.json
664
+ SNG02260.json
665
+ PMUL2763.json
666
+ MUL1044.json
667
+ MUL1531.json
668
+ PMUL0978.json
669
+ PMUL2304.json
670
+ PMUL2259.json
671
+ SNG1119.json
672
+ PMUL2105.json
673
+ PMUL3498.json
674
+ MUL0313.json
675
+ MUL2618.json
676
+ SNG0550.json
677
+ MUL0505.json
678
+ MUL0317.json
679
+ MUL2020.json
680
+ SNG0049.json
681
+ PMUL2585.json
682
+ PMUL4913.json
683
+ PMUL0687.json
684
+ MUL0376.json
685
+ MUL2360.json
686
+ MUL1158.json
687
+ PMUL3324.json
688
+ SNG0684.json
689
+ PMUL0958.json
690
+ PMUL4244.json
691
+ PMUL2718.json
692
+ MUL0418.json
693
+ PMUL1644.json
694
+ MUL0207.json
695
+ PMUL1464.json
696
+ SNG0949.json
697
+ PMUL2844.json
698
+ PMUL4386.json
699
+ PMUL1054.json
700
+ MUL0819.json
701
+ PMUL1517.json
702
+ SNG0846.json
703
+ PMUL4005.json
704
+ PMUL0124.json
705
+ PMUL1722.json
706
+ SNG1085.json
707
+ PMUL0705.json
708
+ MUL0047.json
709
+ SNG1121.json
710
+ SNG1050.json
711
+ MUL1831.json
712
+ PMUL4791.json
713
+ SNG02057.json
714
+ SNG1002.json
715
+ MUL1622.json
716
+ PMUL2724.json
717
+ PMUL4473.json
718
+ SNG0862.json
719
+ MUL0209.json
720
+ PMUL3862.json
721
+ SNG0609.json
722
+ PMUL0571.json
723
+ PMUL4583.json
724
+ PMUL4555.json
725
+ PMUL2385.json
726
+ SNG0019.json
727
+ PMUL2721.json
728
+ PMUL1071.json
729
+ PMUL1274.json
730
+ PMUL4399.json
731
+ SNG01839.json
732
+ MUL0703.json
733
+ PMUL2880.json
734
+ PMUL3174.json
735
+ PMUL2786.json
736
+ MUL0177.json
737
+ MUL0463.json
738
+ PMUL3644.json
739
+ SNG0271.json
740
+ PMUL4060.json
741
+ SNG0889.json
742
+ MUL0082.json
743
+ MUL0445.json
744
+ MUL0871.json
745
+ MUL2683.json
746
+ PMUL2389.json
747
+ MUL2541.json
748
+ SNG0060.json
749
+ PMUL2970.json
750
+ SNG0736.json
751
+ MUL1758.json
752
+ MUL1571.json
753
+ MUL2307.json
754
+ MUL0036.json
755
+ PMUL2661.json
756
+ MUL0706.json
757
+ PMUL2178.json
758
+ PMUL3352.json
759
+ SNG0703.json
760
+ MUL0848.json
761
+ SNG0566.json
762
+ MUL1635.json
763
+ SNG0910.json
764
+ PMUL0740.json
765
+ SNG01196.json
766
+ PMUL2518.json
767
+ SNG01411.json
768
+ MUL2587.json
769
+ PMUL0266.json
770
+ PMUL2338.json
771
+ SNG0386.json
772
+ PMUL2154.json
773
+ PMUL3105.json
774
+ SNG0457.json
775
+ MUL2309.json
776
+ PMUL2747.json
777
+ MUL1476.json
778
+ PMUL3966.json
779
+ PMUL0521.json
780
+ MUL2271.json
781
+ MUL1897.json
782
+ PMUL3923.json
783
+ MUL1167.json
784
+ PMUL2520.json
785
+ SNG1019.json
786
+ SNG0700.json
787
+ MUL0610.json
788
+ PMUL3262.json
789
+ MUL1318.json
790
+ MUL0312.json
791
+ PMUL4850.json
792
+ SNG0497.json
793
+ SNG0907.json
794
+ MUL0957.json
795
+ MUL1133.json
796
+ MUL1453.json
797
+ SNG02296.json
798
+ MUL1419.json
799
+ MUL0571.json
800
+ PMUL4022.json
801
+ PMUL1624.json
802
+ PMUL3820.json
803
+ MUL1904.json
804
+ PMUL3880.json
805
+ MUL1295.json
806
+ PMUL3797.json
807
+ SNG0567.json
808
+ PMUL3166.json
809
+ SNG01320.json
810
+ MUL1858.json
811
+ MUL1500.json
812
+ SNG1106.json
813
+ MUL1247.json
814
+ MUL1297.json
815
+ PMUL3983.json
816
+ PMUL2565.json
817
+ MUL0489.json
818
+ MUL1556.json
819
+ SNG0633.json
820
+ MUL1884.json
821
+ MUL1972.json
822
+ SNG01698.json
823
+ PMUL1318.json
824
+ MUL0182.json
825
+ PMUL4522.json
826
+ MUL2421.json
827
+ PMUL4492.json
828
+ PMUL2968.json
829
+ MUL1162.json
830
+ SNG0406.json
831
+ PMUL4107.json
832
+ PMUL4400.json
833
+ MUL0206.json
834
+ MUL0106.json
835
+ PMUL3497.json
836
+ SNG01227.json
837
+ PMUL3776.json
838
+ PMUL1352.json
839
+ PMUL3470.json
840
+ PMUL4691.json
841
+ PMUL3840.json
842
+ MUL1770.json
843
+ PMUL1615.json
844
+ MUL2688.json
845
+ MUL0229.json
846
+ PMUL3929.json
847
+ PMUL2576.json
848
+ PMUL2780.json
849
+ SNG01996.json
850
+ PMUL2306.json
851
+ SNG0752.json
852
+ MUL0321.json
853
+ MUL2486.json
854
+ MUL1594.json
855
+ SNG1142.json
856
+ MUL2489.json
857
+ MUL1676.json
858
+ PMUL1479.json
859
+ PMUL4438.json
860
+ SNG1071.json
861
+ SNG0084.json
862
+ MUL0348.json
863
+ MUL2223.json
864
+ PMUL2260.json
865
+ MUL2004.json
866
+ MUL0830.json
867
+ MUL1003.json
868
+ MUL0893.json
869
+ MUL0060.json
870
+ MUL2319.json
871
+ SNG01974.json
872
+ MUL0687.json
873
+ PMUL2821.json
874
+ PMUL0318.json
875
+ MUL2615.json
876
+ MUL0368.json
877
+ MUL2097.json
878
+ SNG02077.json
879
+ SNG02274.json
880
+ PMUL1104.json
881
+ PMUL1828.json
882
+ PMUL3974.json
883
+ SNG0843.json
884
+ MUL0580.json
885
+ MUL1663.json
886
+ PMUL4488.json
887
+ MUL2507.json
888
+ PMUL0389.json
889
+ PMUL0574.json
890
+ MUL1126.json
891
+ SNG01284.json
892
+ PMUL1233.json
893
+ PMUL3926.json
894
+ MUL0759.json
895
+ SNG02330.json
896
+ PMUL3928.json
897
+ SNG0968.json
898
+ MUL2699.json
899
+ MUL1636.json
900
+ PMUL2992.json
901
+ PMUL2986.json
902
+ MUL0276.json
903
+ PMUL1721.json
904
+ SNG0770.json
905
+ MUL1357.json
906
+ PMUL2363.json
907
+ SNG0597.json
908
+ PMUL1636.json
909
+ PMUL1186.json
910
+ MUL1821.json
911
+ MUL0049.json
912
+ PMUL3766.json
913
+ MUL0691.json
914
+ SNG02341.json
915
+ SNG0447.json
916
+ MUL0729.json
917
+ SNG0694.json
918
+ SNG01699.json
919
+ PMUL3117.json
920
+ PMUL1692.json
921
+ SNG0730.json
922
+ PMUL2088.json
923
+ MUL0244.json
924
+ PMUL0600.json
925
+ PMUL2368.json
926
+ SNG0783.json
927
+ MUL0933.json
928
+ PMUL1122.json
929
+ PMUL2190.json
930
+ PMUL2492.json
931
+ PMUL2382.json
932
+ SNG02089.json
933
+ SNG0340.json
934
+ PMUL1074.json
935
+ PMUL2274.json
936
+ PMUL2093.json
937
+ PMUL2902.json
938
+ SNG0495.json
939
+ PMUL4902.json
940
+ PMUL3133.json
941
+ MUL0888.json
942
+ MUL1174.json
943
+ PMUL0764.json
944
+ PMUL4554.json
945
+ SNG0475.json
946
+ PMUL3728.json
947
+ SNG02133.json
948
+ PMUL0987.json
949
+ MUL2100.json
950
+ SNG01962.json
951
+ PMUL2469.json
952
+ MUL0827.json
953
+ MUL0039.json
954
+ SNG0856.json
955
+ PMUL3320.json
956
+ MUL2039.json
957
+ PMUL4757.json
958
+ PMUL1133.json
959
+ MUL1971.json
960
+ PMUL4870.json
961
+ SNG0835.json
962
+ MUL0016.json
963
+ MUL2693.json
964
+ SNG01459.json
965
+ PMUL3850.json
966
+ SNG0670.json
967
+ SNG0327.json
968
+ MUL0517.json
969
+ SNG0369.json
970
+ PMUL3378.json
971
+ MUL2067.json
972
+ PMUL4634.json
973
+ PMUL0963.json
974
+ PMUL3379.json
975
+ MUL1988.json
976
+ MUL2184.json
977
+ MUL1873.json
978
+ PMUL3786.json
979
+ MUL2014.json
980
+ PMUL1650.json
981
+ MUL1326.json
982
+ SNG0921.json
983
+ MUL2058.json
984
+ MUL1183.json
985
+ PMUL0720.json
986
+ MUL0448.json
987
+ SNG02276.json
988
+ PMUL1184.json
989
+ MUL1482.json
990
+ PMUL1525.json
991
+ PMUL1140.json
992
+ PMUL0119.json
993
+ PMUL3544.json
994
+ MUL1669.json
995
+ PMUL4029.json
996
+ PMUL2975.json
997
+ SNG01801.json
998
+ PMUL1400.json
999
+ MUL0128.json
1000
+ PMUL0077.json
pytorch_model.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:724109483979f640c334c4dd2320c0c5f45cb4ef52aec15faec5b477fc1acb7b
3
- size 334174941
 
 
 
 
scripts/UBAR_code/interaction/UBAR_interact.py CHANGED
@@ -7,9 +7,9 @@ import string
7
  from omegaconf import OmegaConf
8
  from transformers import GPT2LMHeadModel, GPT2Tokenizer
9
 
10
- from crazyneuraluser.UBAR_code.config import global_config as cfg
11
- from crazyneuraluser.UBAR_code.reader import MultiWozReader
12
- from crazyneuraluser.UBAR_code.db_ops import MultiWozDB
13
 
14
  from typing import List
15
 
@@ -29,8 +29,8 @@ class bcolors:
29
  class UbarSystemModel: # may inherit convlab or not, just like andy's
30
  def __init__(self, name: str, checkpoint_path: str, model_config_path: str):
31
 
32
- self.tokenizer = GPT2Tokenizer.from_pretrained(checkpoint_path)
33
- self.model = GPT2LMHeadModel.from_pretrained(checkpoint_path)
34
  self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
35
  self.name = name
36
  self.turn_domain = ["general"] # returns a list of one string that is the domain e.g. 'taxi'
 
7
  from omegaconf import OmegaConf
8
  from transformers import GPT2LMHeadModel, GPT2Tokenizer
9
 
10
+ from src.crazyneuraluser.UBAR_code.config import global_config as cfg
11
+ from src.crazyneuraluser.UBAR_code.reader import MultiWozReader
12
+ from src.crazyneuraluser.UBAR_code.db_ops import MultiWozDB
13
 
14
  from typing import List
15
 
 
29
  class UbarSystemModel: # may inherit convlab or not, just like andy's
30
  def __init__(self, name: str, checkpoint_path: str, model_config_path: str):
31
 
32
+ self.tokenizer = GPT2Tokenizer.from_pretrained("alistairmcleay/UBAR-distilgpt2")
33
+ self.model = GPT2LMHeadModel.from_pretrained("alistairmcleay/UBAR-distilgpt2")
34
  self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
35
  self.name = name
36
  self.turn_domain = ["general"] # returns a list of one string that is the domain e.g. 'taxi'
scripts/UBAR_code/interaction/config.yaml CHANGED
@@ -1,9 +1,9 @@
1
  model:
2
- path: "./models/UBAR/experiments/distilgpt-2_sd11_lr0.0001_bs16_ga2/epoch50_trloss0.59_gpt2"
3
  goal_update:
4
  finish_inform: "loose" # loose or strict
5
 
6
- schema_path: "scripts/user_model_code/interaction/schema.json"
7
 
8
  decode:
9
  dec_max_len: 1024
@@ -14,10 +14,10 @@ decode:
14
  use_all_previous_context: False
15
 
16
  dbs_path:
17
- "attraction": "data/preprocessed/UBAR/db_processed/attraction_db_processed.json"
18
- "hospital": "data/preprocessed/UBAR/db_processed/hospital_db_processed.json"
19
- "hotel": "data/preprocessed/UBAR/db_processed/hotel_db_processed.json"
20
- "police": "data/preprocessed/UBAR/db_processed/police_db_processed.json"
21
- "restaurant": "data/preprocessed/UBAR/db_processed/restaurant_db_processed.json"
22
- "taxi": "data/preprocessed/UBAR/db_processed/taxi_db_processed.json"
23
- "train": "data/preprocessed/UBAR/db_processed/train_db_processed.json"
 
1
  model:
2
+ path: "./epoch50_trloss0.59_gpt2"
3
  goal_update:
4
  finish_inform: "loose" # loose or strict
5
 
6
+ schema_path: "cambridge-masters-project/scripts/user_model_code/interaction/schema.json"
7
 
8
  decode:
9
  dec_max_len: 1024
 
14
  use_all_previous_context: False
15
 
16
  dbs_path:
17
+ "attraction": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/attraction_db_processed.json"
18
+ "hospital": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/hospital_db_processed.json"
19
+ "hotel": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/hotel_db_processed.json"
20
+ "police": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/police_db_processed.json"
21
+ "restaurant": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/restaurant_db_processed.json"
22
+ "taxi": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/taxi_db_processed.json"
23
+ "train": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/train_db_processed.json"
scripts/simulate_interaction.py CHANGED
@@ -8,17 +8,23 @@ from user_model_code.interaction import multiwoz_interact
8
  from UBAR_code.interaction.UBAR_interact import bcolors
9
 
10
 
 
 
 
 
 
 
11
  def instantiate_agents():
12
 
13
- UBAR_checkpoint_path = "models/UBAR/experiments/distilgpt-2_sd11_lr0.0001_bs16_ga2/epoch50_trloss0.59_gpt2"
14
- user_model_checkpoint_path = "models/user_model/MultiWOZ-full_checkpoint_step340k"
15
 
16
  sys_model = UBAR_interact.UbarSystemModel(
17
- "UBAR_sys_model", UBAR_checkpoint_path, "scripts/UBAR_code/interaction/config.yaml"
18
  )
19
 
20
  user_model = multiwoz_interact.NeuralAgent(
21
- "user", user_model_checkpoint_path, "scripts/user_model_code/interaction/config.yaml"
22
  )
23
 
24
  return sys_model, user_model
@@ -28,24 +34,14 @@ def read_multiwoz_data():
28
  """
29
  Read the multiwoz 2.0 raw data from the .json file
30
  """
31
- raw_mwoz_20_path = "data/raw/UBAR/multi-woz/data.json"
32
  df_raw_mwoz = pd.read_json(raw_mwoz_20_path)
33
  return df_raw_mwoz
34
 
35
 
36
  def load_test_val_lists():
37
- val_list_file = "data/raw/UBAR/multi-woz/valListFile.json"
38
- test_list_file = "data/raw/UBAR/multi-woz/testListFile.json"
39
-
40
- with open(val_list_file, "r") as f:
41
- val_list = f.readlines()
42
- val_list = [x.strip() for x in val_list]
43
-
44
- with open(test_list_file, "r") as f:
45
- test_list = f.readlines()
46
- test_list = [x.strip() for x in test_list]
47
-
48
- return val_list, test_list
49
 
50
 
51
  def main(
@@ -54,9 +50,9 @@ def main(
54
  sys_model, user_model = instantiate_agents()
55
 
56
  # TODO: move hardcoded vars into config file
57
- raw_mwoz_20_path = "data/raw/UBAR/multi-woz/data.json"
58
- user_utterances_out_path = "data/preprocessed/UBAR/user_utterances_from_simulator.txt"
59
- logging_successes_path = "data/preprocessed/UBAR/logging_successes"
60
  sys_model.print_intermediary_info = False
61
  user_model.print_intermediary_info = False
62
 
 
8
  from UBAR_code.interaction.UBAR_interact import bcolors
9
 
10
 
11
+ # from tqdm import tqdm
12
+ from scripts.UBAR_code.interaction import UBAR_interact
13
+ from scripts.user_model_code.interaction import multiwoz_interact
14
+ from scripts.UBAR_code.interaction.UBAR_interact import bcolors
15
+
16
+
17
  def instantiate_agents():
18
 
19
+ UBAR_checkpoint_path = "cambridge-masters-project/epoch50_trloss0.59_gpt2"
20
+ user_model_checkpoint_path = "cambridge-masters-project/MultiWOZ-full_checkpoint_step340k"
21
 
22
  sys_model = UBAR_interact.UbarSystemModel(
23
+ "UBAR_sys_model", UBAR_checkpoint_path, "cambridge-masters-project/scripts/UBAR_code/interaction/config.yaml"
24
  )
25
 
26
  user_model = multiwoz_interact.NeuralAgent(
27
+ "user", user_model_checkpoint_path, "cambridge-masters-project/scripts/user_model_code/interaction/config.yaml"
28
  )
29
 
30
  return sys_model, user_model
 
34
  """
35
  Read the multiwoz 2.0 raw data from the .json file
36
  """
37
+ raw_mwoz_20_path = "cambridge-masters-project/data/raw/UBAR/multi-woz/data.json"
38
  df_raw_mwoz = pd.read_json(raw_mwoz_20_path)
39
  return df_raw_mwoz
40
 
41
 
42
  def load_test_val_lists():
43
+ val_list_file = "cambridge-masters-project/data/raw/UBAR/multi-woz/valListFile.json"
44
+ test_list_file = "cambridge-masters-project/data/raw/UBAR/multi-woz/testListFile.json"
 
 
 
 
 
 
 
 
 
 
45
 
46
 
47
  def main(
 
50
  sys_model, user_model = instantiate_agents()
51
 
52
  # TODO: move hardcoded vars into config file
53
+ raw_mwoz_20_path = "cambridge-masters-project/data/raw/UBAR/multi-woz/data.json"
54
+ user_utterances_out_path = "cambridge-masters-project/data/preprocessed/UBAR/user_utterances_from_simulator.txt"
55
+ logging_successes_path = "cambridge-masters-project/data/preprocessed/UBAR/logging_successes"
56
  sys_model.print_intermediary_info = False
57
  user_model.print_intermediary_info = False
58
 
scripts/user_model_code/interaction/config.yaml CHANGED
@@ -1,9 +1,9 @@
1
  model:
2
- path: "./models/user_model/MultiWOZ-full_checkpoint_step340k"
3
  goal_update:
4
  finish_inform: "loose" # loose or strict
5
 
6
- schema_path: "scripts/user_model_code/interaction/schema.json"
7
 
8
  decode:
9
  dec_max_len: 1024
 
1
  model:
2
+ path: "./MultiWOZ-full_checkpoint_step340k"
3
  goal_update:
4
  finish_inform: "loose" # loose or strict
5
 
6
+ schema_path: "cambridge-masters-project/scripts/user_model_code/interaction/schema.json"
7
 
8
  decode:
9
  dec_max_len: 1024
scripts/user_model_code/interaction/multiwoz_interact.py CHANGED
@@ -111,9 +111,9 @@ class NeuralAgent: # crazyusermodel
111
 
112
  def load_checkpoint_and_tokenizer(self, checkpoint_path: str) -> None:
113
  """Load model checkpoint with the model tokenizer, only for GPT2 for now"""
114
- print("Load model, tokenizer from {}".format(checkpoint_path))
115
- self.tokenizer = GPT2Tokenizer.from_pretrained(checkpoint_path)
116
- self.model = GPT2LMHeadModel.from_pretrained(checkpoint_path)
117
  self.model.to(self.device)
118
 
119
  def set_device(self) -> None:
@@ -921,7 +921,7 @@ def read_multiWOZ_20_goals(file_path, n_goals):
921
 
922
  # Determine relevant keys
923
  for _ in goal.keys():
924
- relevant_goals = {k: v for k, v in goal.items() if v != {} and k != "topic" and k != "message"}
925
  services = [key for key in relevant_goals.keys()]
926
  for service in services:
927
  parsed_goal[service] = relevant_goals[service]
 
111
 
112
  def load_checkpoint_and_tokenizer(self, checkpoint_path: str) -> None:
113
  """Load model checkpoint with the model tokenizer, only for GPT2 for now"""
114
+ # print("Load model, tokenizer from {}".format(checkpoint_path))
115
+ self.tokenizer = GPT2Tokenizer.from_pretrained("alistairmcleay/user-simulator-gpt2")
116
+ self.model = GPT2LMHeadModel.from_pretrained("alistairmcleay/user-simulator-gpt2")
117
  self.model.to(self.device)
118
 
119
  def set_device(self) -> None:
 
921
 
922
  # Determine relevant keys
923
  for _ in goal.keys():
924
+ relevant_goals = {k: v for k, v in goal.items() if v and k != "topic" and k != "message"}
925
  services = [key for key in relevant_goals.keys()]
926
  for service in services:
927
  parsed_goal[service] = relevant_goals[service]
src/crazyneuraluser/UBAR_code/clean_dataset.py CHANGED
@@ -1,7 +1,7 @@
1
  # -*- coding: utf-8 -*-
2
  import re
3
 
4
- from crazyneuraluser.UBAR_code import ontology
5
 
6
 
7
  def my_clean_text(text):
@@ -65,15 +65,11 @@ def clean_text(text):
65
 
66
 
67
  def clean_time(utter):
68
- utter = re.sub(
69
- r"(\d+) ([ap]\.?m)", lambda x: x.group(1) + x.group(2), utter
70
- ) # 9 am -> 9am
71
  utter = re.sub(r"((?<!\d)\d:\d+)(am)?", r"0\1", utter)
72
  utter = re.sub(r"((?<!\d)\d)am", r"0\1:00", utter)
73
  utter = re.sub(r"((?<!\d)\d)pm", lambda x: str(int(x.group(1)) + 12) + ":00", utter)
74
- utter = re.sub(
75
- r"(\d+)(:\d+)pm", lambda x: str(int(x.group(1)) + 12) + x.group(2), utter
76
- )
77
  utter = re.sub(r"(\d+)a\.?m", r"\1", utter)
78
  return utter
79
 
 
1
  # -*- coding: utf-8 -*-
2
  import re
3
 
4
+ from UBAR_code import ontology
5
 
6
 
7
  def my_clean_text(text):
 
65
 
66
 
67
  def clean_time(utter):
68
+ utter = re.sub(r"(\d+) ([ap]\.?m)", lambda x: x.group(1) + x.group(2), utter) # 9 am -> 9am
 
 
69
  utter = re.sub(r"((?<!\d)\d:\d+)(am)?", r"0\1", utter)
70
  utter = re.sub(r"((?<!\d)\d)am", r"0\1:00", utter)
71
  utter = re.sub(r"((?<!\d)\d)pm", lambda x: str(int(x.group(1)) + 12) + ":00", utter)
72
+ utter = re.sub(r"(\d+)(:\d+)pm", lambda x: str(int(x.group(1)) + 12) + x.group(2), utter)
 
 
73
  utter = re.sub(r"(\d+)a\.?m", r"\1", utter)
74
  return utter
75
 
src/crazyneuraluser/UBAR_code/config.py CHANGED
@@ -10,25 +10,29 @@ class _Config:
10
  def _multiwoz_ubar_init(self):
11
  self.gpt_path = "distilgpt2"
12
 
13
- self.vocab_path_train = "./data/preprocessed_gen_usr_utts/UBAR/multi-woz-processed/vocab"
14
  self.vocab_path_eval = None
15
- self.data_path = "./data/preprocessed_gen_usr_utts/UBAR/multi-woz-processed/"
16
  self.data_file = "data_for_ubar.json"
17
- self.dev_list = "data/raw/UBAR/multi-woz/valListFile.json"
18
- self.test_list = "data/raw/UBAR/multi-woz/testListFile.json"
19
  self.dbs = {
20
- "attraction": "data/preprocessed_gen_usr_utts/UBAR/db_processed/attraction_db_processed.json",
21
- "hospital": "data/preprocessed_gen_usr_utts/UBAR/db_processed/hospital_db_processed.json",
22
- "hotel": "data/preprocessed_gen_usr_utts/UBAR/db_processed/hotel_db_processed.json",
23
- "police": "data/preprocessed_gen_usr_utts/UBAR/db_processed/police_db_processed.json",
24
- "restaurant": "data/preprocessed_gen_usr_utts/UBAR/db_processed/restaurant_db_processed.json",
25
- "taxi": "data/preprocessed_gen_usr_utts/UBAR/db_processed/taxi_db_processed.json",
26
- "train": "data/preprocessed_gen_usr_utts/UBAR/db_processed/train_db_processed.json",
27
  }
28
- self.glove_path = "./data/glove/glove.6B.50d.txt"
29
- self.domain_file_path = "data/preprocessed_gen_usr_utts/UBAR/multi-woz-processed/domain_files.json"
30
- self.slot_value_set_path = "data/preprocessed_gen_usr_utts/UBAR/db_processed/value_set_processed.json"
31
- self.multi_acts_path = "data/preprocessed_gen_usr_utts/UBAR/multi-woz-processed/multi_act_mapping_train.json"
 
 
 
 
32
  self.exp_path = "to be generated"
33
  self.log_time = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
34
 
 
10
  def _multiwoz_ubar_init(self):
11
  self.gpt_path = "distilgpt2"
12
 
13
+ self.vocab_path_train = "cambridge-masters-project/data/preprocessed/UBAR/multi-woz-processed/vocab"
14
  self.vocab_path_eval = None
15
+ self.data_path = "cambridge-masters-project/data/preprocessed/UBAR/multi-woz-processed/"
16
  self.data_file = "data_for_ubar.json"
17
+ self.dev_list = "cambridge-masters-project/data/raw/UBAR/multi-woz/valListFile.json"
18
+ self.test_list = "cambridge-masters-project/data/raw/UBAR/multi-woz/testListFile.json"
19
  self.dbs = {
20
+ "attraction": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/attraction_db_processed.json",
21
+ "hospital": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/hospital_db_processed.json",
22
+ "hotel": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/hotel_db_processed.json",
23
+ "police": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/police_db_processed.json",
24
+ "restaurant": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/restaurant_db_processed.json",
25
+ "taxi": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/taxi_db_processed.json",
26
+ "train": "cambridge-masters-project/data/preprocessed/UBAR/db_processed/train_db_processed.json",
27
  }
28
+ self.glove_path = "cambridge-masters-project/data/glove/glove.6B.50d.txt"
29
+ self.domain_file_path = "cambridge-masters-project/data/preprocessed/UBAR/multi-woz-processed/domain_files.json"
30
+ self.slot_value_set_path = (
31
+ "cambridge-masters-project/data/preprocessed/UBAR/db_processed/value_set_processed.json"
32
+ )
33
+ self.multi_acts_path = (
34
+ "cambridge-masters-project/data/preprocessed/UBAR/multi-woz-processed/multi_act_mapping_train.json"
35
+ )
36
  self.exp_path = "to be generated"
37
  self.log_time = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
38
 
src/crazyneuraluser/UBAR_code/db_ops.py CHANGED
@@ -3,7 +3,7 @@ import random
3
  import sqlite3
4
  import string
5
 
6
- from crazyneuraluser.UBAR_code.ontology import all_domains, db_domains
7
 
8
 
9
  class MultiWozDB(object):
 
3
  import sqlite3
4
  import string
5
 
6
+ from .ontology import all_domains, db_domains
7
 
8
 
9
  class MultiWozDB(object):
src/crazyneuraluser/UBAR_code/eval.py CHANGED
@@ -5,9 +5,9 @@ from collections import Counter, OrderedDict
5
 
6
  from nltk.util import ngrams
7
 
8
- from crazyneuraluser.UBAR_code import ontology
9
- from crazyneuraluser.UBAR_code.clean_dataset import clean_slot_values
10
- from crazyneuraluser.UBAR_code.config import global_config as cfg
11
 
12
 
13
  class BLEUScorer(object):
 
5
 
6
  from nltk.util import ngrams
7
 
8
+ from . import ontology
9
+ from .clean_dataset import clean_slot_values
10
+ from .config import global_config as cfg
11
 
12
 
13
  class BLEUScorer(object):
src/crazyneuraluser/UBAR_code/reader.py CHANGED
@@ -10,9 +10,10 @@ import numpy as np
10
  import spacy
11
  from transformers import GPT2Tokenizer
12
 
13
- from crazyneuraluser.UBAR_code import ontology, utils
14
- from crazyneuraluser.UBAR_code.config import global_config as cfg
15
- from crazyneuraluser.UBAR_code.db_ops import MultiWozDB
 
16
 
17
  # from config21 import global_config as cfg
18
 
 
10
  import spacy
11
  from transformers import GPT2Tokenizer
12
 
13
+ from . import ontology
14
+ from . import utils
15
+ from .config import global_config as cfg
16
+ from .db_ops import MultiWozDB
17
 
18
  # from config21 import global_config as cfg
19
 
src/crazyneuraluser/UBAR_code/utils.py CHANGED
@@ -4,7 +4,7 @@ from collections import OrderedDict
4
 
5
  import numpy as np
6
 
7
- from crazyneuraluser.UBAR_code import ontology
8
 
9
 
10
  def py2np(list):
 
4
 
5
  import numpy as np
6
 
7
+ from . import ontology
8
 
9
 
10
  def py2np(list):
us_pytorch_model.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d8809fd1497493343e67ab44f8d9dd898934fbafe3346d4c35e3f1714fd9646d
3
- size 510585849