Spaces:
Running
Running
feat: add data split selection
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- app.py +87 -53
- dataset_tablevqa_vwtq_syn_2d_text/nu-0.txt +25 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-100.txt +30 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1032.txt +68 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1061.txt +30 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1064.txt +64 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1099.txt +40 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1129.txt +18 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1152.txt +29 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1153.txt +42 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1160.txt +22 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-119.txt +27 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1198.txt +21 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-121.txt +23 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1257.txt +44 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1271.txt +66 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1324.txt +68 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1339.txt +17 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1355.txt +86 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1402.txt +26 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1405.txt +23 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1467.txt +28 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1469.txt +24 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1493.txt +58 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1503.txt +26 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1521.txt +52 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1524.txt +87 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1529.txt +27 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1544.txt +30 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1572.txt +21 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1573.txt +28 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1606.txt +29 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1608.txt +32 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1639.txt +34 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1654.txt +33 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1655.txt +27 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1656.txt +38 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1659.txt +36 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1678.txt +30 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-168.txt +90 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1686.txt +26 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1694.txt +37 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1734.txt +40 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1737.txt +64 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1740.txt +19 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1742.txt +21 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1753.txt +29 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1775.txt +25 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-178.txt +64 -0
- dataset_tablevqa_vwtq_syn_2d_text/nu-1789.txt +27 -0
app.py
CHANGED
@@ -20,7 +20,7 @@ def load_json(file_path):
|
|
20 |
return json.load(file)
|
21 |
|
22 |
|
23 |
-
def on_select(evt: gr.SelectData):
|
24 |
item_id = evt.row_value[0]
|
25 |
filename = evt.row_value[1]
|
26 |
|
@@ -28,28 +28,44 @@ def on_select(evt: gr.SelectData):
|
|
28 |
for method in METHOD_LIST:
|
29 |
output_methods.extend(
|
30 |
[
|
31 |
-
|
32 |
-
evaluation_dict[method][filename]["pred"],
|
33 |
-
evaluation_dict[method][filename]["score"] == 1,
|
34 |
]
|
35 |
)
|
36 |
|
37 |
return output_methods + [
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
]
|
42 |
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
def generate_plot(providers, scores):
|
45 |
fig, ax = plt.subplots(figsize=(4, 3))
|
46 |
bars = ax.barh(providers[::-1], scores[::-1])
|
|
|
|
|
|
|
47 |
|
48 |
# Customize plot
|
49 |
ax.set_title("Methods Average Scores")
|
50 |
ax.set_ylabel("Methods")
|
51 |
ax.set_xlabel("Scores")
|
52 |
-
ax.set_xlim(0.
|
53 |
|
54 |
for bar in bars:
|
55 |
width = bar.get_width()
|
@@ -65,58 +81,64 @@ def generate_plot(providers, scores):
|
|
65 |
return fig
|
66 |
|
67 |
|
68 |
-
dataset = load_dataset(path="terryoo/TableVQA-Bench")
|
69 |
-
split_name = "fintabnetqa"
|
70 |
-
|
71 |
evaluation_json_dir = Path("eval_output")
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
data_image = {}
|
77 |
METHOD_LIST = ["text_2d", "text_1d", "html"]
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
"filenames": [],
|
82 |
-
"questions": [],
|
83 |
-
"answers": [],
|
84 |
-
}
|
85 |
evaluation_dict = {}
|
86 |
method_scores = {}
|
87 |
|
88 |
-
for
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
text_2d = f.read()
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
"
|
97 |
-
"
|
98 |
-
"
|
|
|
99 |
}
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
"
|
112 |
-
"
|
|
|
113 |
}
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
|
121 |
with gr.Blocks(
|
122 |
theme=gr.themes.Ocean(
|
@@ -128,6 +150,11 @@ with gr.Blocks(
|
|
128 |
"# 2D Layout-Preserving Text Benchmark\n"
|
129 |
"Dataset: [TableVQA-Bench](https://huggingface.co/datasets/terryoo/TableVQA-Bench)\n"
|
130 |
)
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
gr.Markdown("### File List")
|
133 |
plot_avg = gr.Plot(
|
@@ -135,13 +162,14 @@ with gr.Blocks(
|
|
135 |
value=generate_plot(
|
136 |
providers=METHOD_LIST,
|
137 |
scores=[
|
138 |
-
method_scores[method]
|
|
|
139 |
],
|
140 |
),
|
141 |
container=False,
|
142 |
)
|
143 |
file_list = gr.Dataframe(
|
144 |
-
value=pd.DataFrame(
|
145 |
max_height=300,
|
146 |
show_row_numbers=False,
|
147 |
show_search=True,
|
@@ -192,6 +220,7 @@ with gr.Blocks(
|
|
192 |
|
193 |
file_list.select(
|
194 |
fn=on_select,
|
|
|
195 |
outputs=output_elements +
|
196 |
[
|
197 |
demo_image,
|
@@ -199,4 +228,9 @@ with gr.Blocks(
|
|
199 |
answer_gt
|
200 |
],
|
201 |
)
|
|
|
|
|
|
|
|
|
|
|
202 |
demo.launch()
|
|
|
20 |
return json.load(file)
|
21 |
|
22 |
|
23 |
+
def on_select(evt: gr.SelectData, current_split):
|
24 |
item_id = evt.row_value[0]
|
25 |
filename = evt.row_value[1]
|
26 |
|
|
|
28 |
for method in METHOD_LIST:
|
29 |
output_methods.extend(
|
30 |
[
|
31 |
+
item_by_id_dict[current_split][filename][method],
|
32 |
+
evaluation_dict[current_split][method][filename]["pred"],
|
33 |
+
evaluation_dict[current_split][method][filename]["score"] == 1,
|
34 |
]
|
35 |
)
|
36 |
|
37 |
return output_methods + [
|
38 |
+
item_by_id_dict[current_split][filename]["image"],
|
39 |
+
input_dataframe[current_split]["questions"][item_id],
|
40 |
+
input_dataframe[current_split]["answers"][item_id],
|
41 |
]
|
42 |
|
43 |
|
44 |
+
def on_dataset_change(current_split):
|
45 |
+
# update dataframe, plot based on the selected dataset
|
46 |
+
plot = generate_plot(
|
47 |
+
providers=METHOD_LIST,
|
48 |
+
scores=[
|
49 |
+
method_scores[current_split][method]
|
50 |
+
for method in METHOD_LIST
|
51 |
+
],
|
52 |
+
)
|
53 |
+
dataframe = pd.DataFrame(input_dataframe[current_split])
|
54 |
+
return plot, dataframe
|
55 |
+
|
56 |
+
|
57 |
def generate_plot(providers, scores):
|
58 |
fig, ax = plt.subplots(figsize=(4, 3))
|
59 |
bars = ax.barh(providers[::-1], scores[::-1])
|
60 |
+
|
61 |
+
min_score = min(scores)
|
62 |
+
max_score = max(scores)
|
63 |
|
64 |
# Customize plot
|
65 |
ax.set_title("Methods Average Scores")
|
66 |
ax.set_ylabel("Methods")
|
67 |
ax.set_xlabel("Scores")
|
68 |
+
ax.set_xlim(min_score - 0.1, min(max_score + 0.1, 1.0))
|
69 |
|
70 |
for bar in bars:
|
71 |
width = bar.get_width()
|
|
|
81 |
return fig
|
82 |
|
83 |
|
|
|
|
|
|
|
84 |
evaluation_json_dir = Path("eval_output")
|
85 |
+
dataset = load_dataset(path="terryoo/TableVQA-Bench")
|
86 |
+
SPLIT_NAMES = ["fintabnetqa", "vwtq_syn"]
|
87 |
+
DEFAULT_SPLIT_NAME = "fintabnetqa"
|
|
|
|
|
88 |
METHOD_LIST = ["text_2d", "text_1d", "html"]
|
89 |
|
90 |
+
item_by_id_dict = {}
|
91 |
+
input_dataframe = {}
|
|
|
|
|
|
|
|
|
92 |
evaluation_dict = {}
|
93 |
method_scores = {}
|
94 |
|
95 |
+
for split_name in SPLIT_NAMES:
|
96 |
+
input_text_path = Path(
|
97 |
+
f"dataset_tablevqa_{split_name}_2d_text"
|
98 |
+
)
|
|
|
99 |
|
100 |
+
item_by_id_dict[split_name] = {}
|
101 |
+
input_dataframe[split_name] = {
|
102 |
+
"ids": [],
|
103 |
+
"filenames": [],
|
104 |
+
"questions": [],
|
105 |
+
"answers": [],
|
106 |
}
|
107 |
+
evaluation_dict[split_name] = {}
|
108 |
+
method_scores[split_name] = {}
|
109 |
+
|
110 |
+
for idx, sample in enumerate(dataset[split_name]):
|
111 |
+
sample_id = sample["qa_id"]
|
112 |
+
text_path = input_text_path / f"{sample_id}.txt"
|
113 |
+
with open(text_path, "r") as f:
|
114 |
+
text_2d = f.read()
|
115 |
+
|
116 |
+
item_by_id_dict[split_name][sample_id] = {
|
117 |
+
"text_2d": text_2d,
|
118 |
+
"text_1d": normalize_spaces(text_2d),
|
119 |
+
"image": sample["image"],
|
120 |
+
"html": sample["text_html_table"],
|
121 |
}
|
122 |
+
|
123 |
+
input_dataframe[split_name]["ids"].append(idx)
|
124 |
+
input_dataframe[split_name]["filenames"].append(sample_id)
|
125 |
+
input_dataframe[split_name]["questions"].append(sample["question"])
|
126 |
+
input_dataframe[split_name]["answers"].append(sample["gt"])
|
127 |
+
|
128 |
+
for method in METHOD_LIST:
|
129 |
+
evaluation_json_path = evaluation_json_dir / f"{split_name}_{method}.json"
|
130 |
+
evaluation_data = load_json(evaluation_json_path)
|
131 |
+
evaluation_dict[split_name][method] = {
|
132 |
+
item["qa_id"]: {
|
133 |
+
"pred": item["pred"],
|
134 |
+
"score": item["scores"]["a"],
|
135 |
+
}
|
136 |
+
for item in evaluation_data["instances"]
|
137 |
+
}
|
138 |
+
method_scores[split_name][method] = round(
|
139 |
+
evaluation_data["evaluation_meta"]["average_scores"][0] / 100,
|
140 |
+
2,
|
141 |
+
)
|
142 |
|
143 |
with gr.Blocks(
|
144 |
theme=gr.themes.Ocean(
|
|
|
150 |
"# 2D Layout-Preserving Text Benchmark\n"
|
151 |
"Dataset: [TableVQA-Bench](https://huggingface.co/datasets/terryoo/TableVQA-Bench)\n"
|
152 |
)
|
153 |
+
dataset_name = gr.Dropdown(
|
154 |
+
label="Dataset split",
|
155 |
+
value=DEFAULT_SPLIT_NAME,
|
156 |
+
choices=["fintabnetqa", "vwtq_syn"],
|
157 |
+
)
|
158 |
|
159 |
gr.Markdown("### File List")
|
160 |
plot_avg = gr.Plot(
|
|
|
162 |
value=generate_plot(
|
163 |
providers=METHOD_LIST,
|
164 |
scores=[
|
165 |
+
method_scores[DEFAULT_SPLIT_NAME][method]
|
166 |
+
for method in METHOD_LIST
|
167 |
],
|
168 |
),
|
169 |
container=False,
|
170 |
)
|
171 |
file_list = gr.Dataframe(
|
172 |
+
value=pd.DataFrame(input_dataframe[DEFAULT_SPLIT_NAME]),
|
173 |
max_height=300,
|
174 |
show_row_numbers=False,
|
175 |
show_search=True,
|
|
|
220 |
|
221 |
file_list.select(
|
222 |
fn=on_select,
|
223 |
+
inputs=[dataset_name],
|
224 |
outputs=output_elements +
|
225 |
[
|
226 |
demo_image,
|
|
|
228 |
answer_gt
|
229 |
],
|
230 |
)
|
231 |
+
dataset_name.change(
|
232 |
+
fn=on_dataset_change,
|
233 |
+
inputs=dataset_name,
|
234 |
+
outputs=[plot_avg, file_list],
|
235 |
+
)
|
236 |
demo.launch()
|
dataset_tablevqa_vwtq_syn_2d_text/nu-0.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Cyclist Team Time UCIProTour Foints
|
3 |
+
|
4 |
+
1 Alejandro Valyerde (ES Caisse d'Epargne 5h 29'10"
|
5 |
+
P)
|
6 |
+
|
7 |
+
2 Alexandr KolobneyRU Team CSC Saxo Bank s.t. 30
|
8 |
+
S)
|
9 |
+
3 Dayide Rebellin (ITA) Gerolsteiner s.t. 25
|
10 |
+
|
11 |
+
Paolo Bettini (ITA) QuickStep s,t. 20
|
12 |
+
|
13 |
+
5 Franco Pellizotti (ITA) Liquigas s,t. 15
|
14 |
+
|
15 |
+
6 Denis Menchoy (RUS) Rabobank s.t. 11
|
16 |
+
Samuel Sanchez (ESP)
|
17 |
+
7 Euskaltel-Euskadi s.t. 7
|
18 |
+
8 Stephane Goubert FR Ag2r-La Mondiale 5
|
19 |
+
+2
|
20 |
+
A)
|
21 |
+
9 Haimar Zubeldia (ESP) Euskaltel-Euskadi +2" 3
|
22 |
+
|
23 |
+
10 Dayid Moncoutie FRA Cofidis + 2"
|
24 |
+
|
25 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-100.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Player No. Nationality Position Years for Jazz School/Club Te
|
3 |
+
am
|
4 |
+
|
5 |
+
|
6 |
+
Jim Farmer 30 United States Guard 1988-89 Alabama
|
7 |
+
|
8 |
+
Derrick Favors 15 United States Forward 2011-present Georgia Tech
|
9 |
+
|
10 |
+
Kyrylo Fesenko 44 Ukraine Center 2007-11 Cherkasy Mon
|
11 |
+
Reys(Ukraine)
|
12 |
+
|
13 |
+
|
14 |
+
Derek Fisher 2 United States Guard 2006-2007 Arkansas-Little
|
15 |
+
Rock
|
16 |
+
|
17 |
+
Greg Foster 44 United States Center/Forwar 1995-99 UTEP
|
18 |
+
d
|
19 |
+
|
20 |
+
|
21 |
+
Bernie Fryer 25 United States Guard 1975-76 BYU
|
22 |
+
|
23 |
+
Todd Fuller 52 United States Center 1998-99 North Carolina
|
24 |
+
State
|
25 |
+
|
26 |
+
Terry Furlow 25 United States Guard/Forwar 1979-80
|
27 |
+
Michigan State
|
28 |
+
d
|
29 |
+
|
30 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1032.txt
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Pair Name Country Time Time behind
|
3 |
+
19 Shani Davis United States 1:08.89
|
4 |
+
|
5 |
+
20 Joey Cheek United States 1:09.16 +0.27
|
6 |
+
21 Erben Wennemars Netherlands 1:09.32 +0.43
|
7 |
+
Lee Kyouhyuk
|
8 |
+
4 20 South Korea 1:09.37 +0.48
|
9 |
+
5 21 Jan Bos Netherlands 1:09.42 +0.53
|
10 |
+
6 4 Chad Hedrick United States 1:09.45 +0.56
|
11 |
+
|
12 |
+
7 16 Yevgeny Lalenkov Russia 1:09.46 +0.57
|
13 |
+
8 18 Stefan Croothuis Netherlands 1:09.57 +0.68
|
14 |
+
9 18 Casey FitzRandolp United States 1:09.59 +0.70
|
15 |
+
h
|
16 |
+
|
17 |
+
10 6 Dmitry Dorofeyev Russia 1:09.74 +0.85
|
18 |
+
11 19 Jeremy Wotherspo Canada 1:09.76 +0.87
|
19 |
+
on
|
20 |
+
12 Beorn Nijenhuis Netherlands 1:09.85 +0.96
|
21 |
+
9
|
22 |
+
13 4 Konrad Niedzwied Poland 1:09.95 +1.06
|
23 |
+
zki
|
24 |
+
14 16 Mikael Flygind Lar Norway 1:10.13 +1.24
|
25 |
+
sen
|
26 |
+
15 13 Alexey Proshin Russia 1:10.14 +1.25
|
27 |
+
|
28 |
+
16 7 Francois-Olivier Ro Canada 1:10.20 +1.31
|
29 |
+
berge
|
30 |
+
17 11 Choi Jae-bong South Korea 1:10.23 +1.34
|
31 |
+
18 12 Petter Andersen Norway 1:10.38 +1.38
|
32 |
+
|
33 |
+
19 17 Denny Morrison Canada 1:10.44 +1.44
|
34 |
+
20 15 Yusuke Imai Japan 1:10.48 +1.59
|
35 |
+
21 Aleksandr Kibalko 1:10.50 +1.61
|
36 |
+
15 Russia
|
37 |
+
22 10 Lee Kang-seok South Korea 1:10.52 +1.63
|
38 |
+
23 14 Even Wetten Norway 1:10.57 +1.68
|
39 |
+
|
40 |
+
24 17 Mun Jun South Korea 1:10.66 +1.77
|
41 |
+
25 10 Janne Hanninen Finland 1:10.83 +1.94
|
42 |
+
26 2 Mika Poutala Finland 1:11.03 +2.14
|
43 |
+
|
44 |
+
27 14 Takaharu Nakajim Japan 1:11.10 +2.21
|
45 |
+
a
|
46 |
+
28 3 Takahiro Ushiyam Japan 1:11.21 +2.32
|
47 |
+
a
|
48 |
+
29 12 Steven Elm Canada 1:11.36 +2.47
|
49 |
+
|
50 |
+
30 Maurizio Carnino Italy 1:11.44 +2.55
|
51 |
+
31 1 Pekka Koskela Finland 1:11.45 +2.56
|
52 |
+
32 Keiichiro Nagashi Japan 1:11.78 +2.89
|
53 |
+
ma
|
54 |
+
1
|
55 |
+
33 An Weijiang China 1:11.80 +2.91
|
56 |
+
34 1 Yu Fengtong China 1:11.90 +3.01
|
57 |
+
7 China 1:12.29 +3.40
|
58 |
+
35 ZhangZhongqi
|
59 |
+
36 Aleksandr Zhigin Kazakhstan 1:12.36 +3.47
|
60 |
+
37 9 Risto Rosendahl Finland 1:12.60 +3.71
|
61 |
+
5 Lu Zhuo 1:12.69 +3.80
|
62 |
+
38 China
|
63 |
+
5 Maciej Ustynowicz Poland DQ
|
64 |
+
2 Ermanno loriatti Italy DQ
|
65 |
+
|
66 |
+
6 Erik Zachrisson Sweden DQ
|
67 |
+
|
68 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1061.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Competition Venue Position Event Notes
|
3 |
+
2007 Pan Arab Games 4th 200m 20.94NR
|
4 |
+
Cairo,Egypt
|
5 |
+
2008 Asian Indoor Cham Doha,Qatar 4th 60 m 6.81
|
6 |
+
pionships
|
7 |
+
2008 World Indoor Cham Valencia,Spain 28th (h) 60m 6.88
|
8 |
+
pionships
|
9 |
+
2008 7th
|
10 |
+
World Junior Cham Bydgoszcz,Poland 200 m 21.10
|
11 |
+
pionships
|
12 |
+
2008 Olympic Games Beijing, China 40th (h) 200m 21.00
|
13 |
+
2009 Asian Indoor Game Hanoi,Vietnam 4th 60m 6.72(NR
|
14 |
+
S
|
15 |
+
|
16 |
+
2009 World Championshi Berlin, Germany 25th (qf 200 m 20.97
|
17 |
+
ps
|
18 |
+
2009 Asian Championshi Guangzhou,China 1st 200 m 21.07
|
19 |
+
ps
|
20 |
+
2010 Asian Games Guangzhou,China 3rd 200m 20.83
|
21 |
+
|
22 |
+
2011 Asian Championshi Kobe,Jpan 3rd 200 m 20.97
|
23 |
+
ps
|
24 |
+
2011 World Championshi Daegu,South Kore 48th h) 200 m 21.45
|
25 |
+
ps a
|
26 |
+
2011 Pan Arab Games Doha,Qatar 5th 100 m 21.59
|
27 |
+
|
28 |
+
2011 Pan Arab Games Doha,Qatar 3rd 4x100 m 40.15
|
29 |
+
|
30 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1064.txt
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Pick # Player Position Nationality NHL team College/junior/
|
3 |
+
club team
|
4 |
+
148 Dan McFall Defence United States
|
5 |
+
Winnipeg JetsBuffalo Jr. Sabr
|
6 |
+
es (NAJHL)
|
7 |
+
149 Rick Zombo Defence United States Detroit Red Wi Austin Maveri
|
8 |
+
ngs cks (USHL)
|
9 |
+
150 Tony Arima Left Wing Finland Colorado Rocki Jokerit (Finlan
|
10 |
+
es d)
|
11 |
+
|
12 |
+
151 Denis Dore Right Wing Canada Hartford Whal Chicoutimi Sa
|
13 |
+
ers gueneens (QM
|
14 |
+
JHL)
|
15 |
+
152 Gaetan Duche Left Wing Canada Washington C Quebec Remp
|
16 |
+
sne apitals arts (QMJHL)
|
17 |
+
|
18 |
+
153 Richard Turme Defence Canada Toronto Maple Shawinigan Ca
|
19 |
+
1 Leafs taractes (QMJ
|
20 |
+
HL)
|
21 |
+
154 Mitch Lamour Centre Canada Pittsburgh Pen Oshawa Gener
|
22 |
+
eux guins als (OMJHL)
|
23 |
+
|
24 |
+
155 Mike Sturgeon Defence Canada Edmonton Oil Kelowna Buck
|
25 |
+
ers aroos (BCJHL)
|
26 |
+
156 Ari Lahteenma Right Wing Finland New York Ran HIFK (Finland)
|
27 |
+
ki gers
|
28 |
+
157 Petri Skriko Finland Vancouver Can Saipa (Finlan
|
29 |
+
Right Wing
|
30 |
+
ucks d)
|
31 |
+
158 Andre Cote Right Wing Canada Quebec Nordi Quebec Remp
|
32 |
+
ques arts (QMJHL)
|
33 |
+
159 Johan Mellstro Left Wing Sweden Chicago Black Falun (Swede
|
34 |
+
m Hawks n)
|
35 |
+
|
36 |
+
160 Kari Kanervo Centre Finland Minnesota Nor TPS (Finland)
|
37 |
+
th Stars
|
38 |
+
161 Armel Parisee Defence Canada Boston Bruins Chicoutimi Sa
|
39 |
+
gueneens (QM
|
40 |
+
JHL)
|
41 |
+
|
42 |
+
162 Dale DeGray Defence Canada Calgary Flame Oshawa Gener
|
43 |
+
s als (OMJHL)
|
44 |
+
163 Steve Taylor Left Wing United States Philadelphia F Providence Col
|
45 |
+
lyers lege (ECAC)
|
46 |
+
164 Gates Orlando Centre Canada Buffalo Sabres Providence Col
|
47 |
+
|
48 |
+
lege (ECAC)
|
49 |
+
165 Dan Brennan Left Wing Canada Los Angeles Ki University of
|
50 |
+
ngs North Dakota
|
51 |
+
(WCHA)
|
52 |
+
166 Paul Gess Left Wing United States Montreal Cana Bloomington J
|
53 |
+
diens efferson High
|
54 |
+
School (USHS-
|
55 |
+
|
56 |
+
MN)
|
57 |
+
167 Alain Vigneaul Defence Canada St. Louis Blues Trois-Rivieres
|
58 |
+
t Draveurs (QMJ
|
59 |
+
HL)
|
60 |
+
168 Bill Dowd Defence Canada New York Islan Ottawa 67's (O
|
61 |
+
|
62 |
+
ders MJHL)
|
63 |
+
|
64 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1099.txt
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Language 2001 census[1] (total p1991 censuslndian Cen1991 censuslndian Cen
|
3 |
+
opulation1,004.59millsus [2] (total populati sus [2] (total populati
|
4 |
+
ion) on 838.14million) on 838.14million)
|
5 |
+
Speakers Speakers Percentage
|
6 |
+
Hindi 422,048,642 337,272,114 40.0% 336 M
|
7 |
+
Bengali 230,000,000 200,595,738 28.30% 320M
|
8 |
+
Punjabi 130,000,000 100,017,615 20.87% 113 M
|
9 |
+
Telugu 70,002,856 65,595,738 8.30% 70 M
|
10 |
+
Marathi 71,936,894 62,481,681 7.45% 68.0 M
|
11 |
+
Tamil 60,793,814 53,006,368 6.32% 66.0 M
|
12 |
+
|
13 |
+
Urdu 51,536,111 43,406,932 5.18% 60.3 M
|
14 |
+
Gujarati 46,091,617 40,673,814 4.85% 46.1 M
|
15 |
+
Kannada 37,924,011 32,753,676 3.91% 40.3 M
|
16 |
+
Malayalam 33,066,392 30,377,176 3.62% 35.7 M
|
17 |
+
Oriya 33,017,446 28,061,313 3.35% 32.3M
|
18 |
+
Sindhi 25,535.485 25,122,848 0.248% 32.3 M
|
19 |
+
Nepali 23,017,446 28,061,313 3.35% 32.3M
|
20 |
+
Sinhalese 19,017,446 28,061,313 3.35% 32.3M
|
21 |
+
Assamese 13,168,484 13,079,696 1.56% 15.4M
|
22 |
+
Maithili 12,179,122 1.18%
|
23 |
+
Bhili/Bhilodi 9,582,957 5,572,308 0.665%
|
24 |
+
Santali 6,469,600 5,216,325 0.622%
|
25 |
+
|
26 |
+
Kashmiri 5,527,698 0.54%
|
27 |
+
Condi 2,713,790 2,124,852 0.253%
|
28 |
+
Konkani 2,489,015 1,760,607 0.210%
|
29 |
+
Dogri 2,282,589[dubious-di 0.22%
|
30 |
+
scuss]
|
31 |
+
Khandeshi 2,075,258 0.21%
|
32 |
+
Kurukh 1,751,489 0.17% 1,426,618 0.170%
|
33 |
+
Tulu 1,722,768 0.17% 1,552,259 0.185%
|
34 |
+
Meitei (Manipuri) 1,466,705** 0.14% 1,270,216 0.151%
|
35 |
+
Bodo 1,350,478 0.13% 1,221,881 0.146%
|
36 |
+
Khasi 1,128,575 0.112%
|
37 |
+
Mundari 1,061,352 0.105%
|
38 |
+
Ho 1,042,724 0.103%
|
39 |
+
|
40 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1129.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Player From Transfer Fee million Year
|
3 |
+
s)
|
4 |
+
|
5 |
+
1. Neymar Santos FC 86.0 2013
|
6 |
+
|
7 |
+
2. Cesc Fabregas Arsenal 29+5(variables) 2011
|
8 |
+
3. Alexis Sanchez 26+11add ons) 2011
|
9 |
+
Udinese
|
10 |
+
4. Javier Mascherano Liverpool 26.8 2010
|
11 |
+
|
12 |
+
5. Alex Song Arsenal 19.0 2012
|
13 |
+
|
14 |
+
6. Jordi Alba Valencia 14.0 2012
|
15 |
+
|
16 |
+
7. Adriano Sevilla 13.5 2010
|
17 |
+
|
18 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1152.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Period Live births per y Deaths per year Natural change CBR* CDR* NC* TFR* IMR*
|
3 |
+
ear per year
|
4 |
+
|
5 |
+
1950-1955 139000 66000 74000 52.6 24.8 27.8 6.86 174
|
6 |
+
|
7 |
+
1955-1960 164000 76000 88000 53.8 24.9 29.0 6.96 171
|
8 |
+
|
9 |
+
1960-1965 195000 89000 105000 55.5 25.5 30.1 7.13 167
|
10 |
+
|
11 |
+
1965-1970 229000 105000 124000 56.2 25.8 30.4 7.32 164
|
12 |
+
|
13 |
+
1970-1975 263000 121000 142000 55.8 25.6 30.2 7.52 162
|
14 |
+
|
15 |
+
1975-1980 301000 138000 164000 55.1 25.1 29.9 7.63 161
|
16 |
+
|
17 |
+
1980-1985 350000 157000 193000 55.4 24.8 30.6 7.76 159
|
18 |
+
|
19 |
+
1985-1990 406000 179000 227000 55.9 24.6 31.3 7.81 155
|
20 |
+
|
21 |
+
1990-1995 471000 192000 279000 55.5 22.7 32.8 7.78 146
|
22 |
+
|
23 |
+
1995-2000 538000 194000 344000 53.5 19.3 34.2 7.60 131
|
24 |
+
|
25 |
+
2000-2005 614000 194000 420000 51.3 16.2 35.1 7.40 113
|
26 |
+
|
27 |
+
2005-2010 705000 196000 509000 49.5 13.8 35.7 7.19 96
|
28 |
+
|
29 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1153.txt
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Subject Robot's Name Who? When? Where? Occupation
|
3 |
+
Solar System Cosmo-Bot Copernicus 1531 Poland Cosmonaut
|
4 |
+
|
5 |
+
Olympics Rhonda Robot Greeks 776 B.C. Greece Beauty queen
|
6 |
+
Basketball Danny Defrost-Bot James Naismith 1891 United States Snowman
|
7 |
+
Nursing Dr.Bug-Bot Florence Nightengale 1860 England Doctor
|
8 |
+
|
9 |
+
Scuba Gear Flip the High-Diving Ro Jacques Cousteau 1946 France Diver
|
10 |
+
bot
|
11 |
+
Helicopter Amelia Air-Bot Leonardo da Vinci 1483 Italy Pilot
|
12 |
+
Corn Flakes Chef Boy-Robot William Kellogg 1894 Battle Creek, Michigan Cook
|
13 |
+
1898
|
14 |
+
Radium Miss Battery-Bot Marie Curie France Battery Lady
|
15 |
+
Chewing Gum Bubble-Bot Mayans 400 Mexico Bubble Man
|
16 |
+
Painting Pierro-Bot Stone-Age Humans 35,000 B.C. Europe Clown/Artist
|
17 |
+
Slide the Heavy-Metal Ro Thomas Edison 1877 Rock Star
|
18 |
+
Phonograph New Jersey
|
19 |
+
bot
|
20 |
+
Paper Noshi Origami Ts'ai Lun 105 China Origami Maker
|
21 |
+
Round Earth Vasco da Robot Ferdinand Magellan 1522 Spain Early Sailor
|
22 |
+
Dynamite Robby Robot Alfred Nobel 1866 Sweden Prankster
|
23 |
+
|
24 |
+
Microscope Slobot Antonie van Leeuwenhoe 1674 The Netherlands Dirty Person
|
25 |
+
k
|
26 |
+
Writing Eraser-Bot Sumerians 3,500B.C. Middle East Pencil Man
|
27 |
+
Sausage Sock-Bot Babylonians 3,000B.C. Middle East Sock Man
|
28 |
+
Booster-Bot 1816 Rocket Man
|
29 |
+
Bicycle Karl von Drais Germany
|
30 |
+
Wheel Rollin'Road-Bot Sumerians 3,000B.C. Middle East Race Starter
|
31 |
+
Germs Roast-Bot Louis Pasteur 1865 France Firefghter
|
32 |
+
Oswald the Mailman Rob Australia Mailman
|
33 |
+
Boomerang Aborigines 40,000 years ago
|
34 |
+
ot
|
35 |
+
Coins Verna the Vend-Bot Lydians 600 B.C. Turkey Vending Machine
|
36 |
+
Tools Hank the Handyman Rob Stone-Age Humans 21/2 million years ago Africa Mechanic
|
37 |
+
ot
|
38 |
+
Saxophone Bongo-Bot the Six-Arme Antoine-Joseph Sax 1846 France Six-Armed Drum Player
|
39 |
+
d Robot
|
40 |
+
Toilet Brunwella the Bombshell Minoans 2000B.C. Crete Demolisher
|
41 |
+
|
42 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1160.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Competition Venue Position Event Notes
|
3 |
+
2000 Discus throw 59.51m
|
4 |
+
World Junior Champio Santiago, Chile 1st
|
5 |
+
nships
|
6 |
+
2003 All-Africa Games Abuja,Nigeria 5th Shot put 17.76 m
|
7 |
+
2003 All-Africa Games Abuja,Nigeria 2nd Discus throw 62.86m
|
8 |
+
|
9 |
+
2004 African Championship Brazzaville,Republic of 2nd Discus throw 63.50m
|
10 |
+
S the Congo
|
11 |
+
2004 Olympic Games Athens, Greece 8th Discus throw 62.58m
|
12 |
+
|
13 |
+
2006 Commonwealth Game Melbourne,Australia 7th Shot put 18.44m
|
14 |
+
S
|
15 |
+
2006 Commonwealth Game Melbourne,Australia 4th Discus throw 60.99m
|
16 |
+
S
|
17 |
+
|
18 |
+
2007 All-Africa Games Algiers,Algeria 3rd Discus throw 57.79m
|
19 |
+
2008 African Championship Addis Ababa, Ethiopia 2nd Discus throw 56.98m
|
20 |
+
S
|
21 |
+
|
22 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-119.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Tie no Hometeam Score Away team Date Attendance
|
3 |
+
11 Rochdale 2-0 Coventry City 25 January 2003
|
4 |
+
2 Southampton 1-1 Millwall 25 January 2003 23,809
|
5 |
+
Replay Millwall 1-2 Southampton 5February 2003 10,197
|
6 |
+
3 Watford 1-0 West Bromwich Albion 25 January 2003 16,975
|
7 |
+
|
8 |
+
4 Walsall 2-0 Wimbledon 25 January 2003 6,693
|
9 |
+
5 Gillingham 1-1 Leeds United 25 January 2003 11,093
|
10 |
+
Replay LeedsUnited 2-1 Gillingham 4February 2003 29,359
|
11 |
+
6 Blackburn Rovers 3-3 Sunderland 25 January 2003 14,315
|
12 |
+
Replay Sunderland 2-2 Blackburn Rovers 5February 2003 15,745
|
13 |
+
7 Wolverhampton Wandere 4-1 LeicesterCity 25 January 2003 28,164
|
14 |
+
rs
|
15 |
+
8 Shrewsbury Town 0-4 Chelsea 26 January 2003 7,950
|
16 |
+
9 Sheffield United 4-3 IpswichTown 25 January 2003 12,757
|
17 |
+
10 Fulham 3-0 CharltonAthletic 26 January 2003 12,203
|
18 |
+
11 Brentford 0-3 Burnley 25 January 2003 9,563
|
19 |
+
12 Manchester United 6-0 West Ham United 26January 2003 67,181
|
20 |
+
Norwich City Dagenham &Redbridge 25 January 2003
|
21 |
+
13 1-0 21,164
|
22 |
+
14 Crystal Palace 0-0 Liverpool 26 January 2003 26,054
|
23 |
+
Replay Liverpool 0-2 Crystal Palace 5February 2003 35,109
|
24 |
+
15 FarnboroughTown 1-5 Arsenal 25 January 2003 35,108
|
25 |
+
16 Stoke City 3-0 Bournemouth 26 January 2003 12,004
|
26 |
+
|
27 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1198.txt
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Competition Venue Position Event Notes
|
3 |
+
|
4 |
+
2001 World Youth Champi Debrecen, Hungary 4th 400m
|
5 |
+
onships
|
6 |
+
2002 Asian Games Busan, South Korea 2nd 4x400m relay
|
7 |
+
|
8 |
+
2005 Asian Championship Incheon,South Korea 2nd 4x400 m relay
|
9 |
+
S
|
10 |
+
Universiade 6th
|
11 |
+
2005 Izmir,Turkey 4x400m relay
|
12 |
+
2006 Asian Games Doha,Qatar 2nd 4x400m relay
|
13 |
+
|
14 |
+
2006 Asian Games Doha,Qatar 1st 400m
|
15 |
+
2006 World Cup Athens, Greece 7th 400m
|
16 |
+
|
17 |
+
2007 Universiade Bangkok, Thailand 1st 400m
|
18 |
+
Universiade
|
19 |
+
2011 Shenzhen, China 400m DQ
|
20 |
+
|
21 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-121.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Nation Gold Silver Bronze Total
|
3 |
+
|
4 |
+
1 France 11 5 3 19
|
5 |
+
|
6 |
+
2 Greece 6 7 6 19
|
7 |
+
|
8 |
+
3 Yugoslavia 3 2 11 6
|
9 |
+
|
10 |
+
4 Spain 1 5 5 11
|
11 |
+
|
12 |
+
5 Morocco 1 1 0 2
|
13 |
+
|
14 |
+
5 Turkey 1 1 2
|
15 |
+
|
16 |
+
7 0 11 7 8
|
17 |
+
Egypt
|
18 |
+
0
|
19 |
+
8 Tunisia 1 0 11
|
20 |
+
|
21 |
+
Totaal Totaal 23 23 22 68
|
22 |
+
|
23 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1257.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Team Stadium Capacity City/Area
|
3 |
+
|
4 |
+
Bradford Bulls (2014 seaso Provident Stadium 127,000 Bradford, West Yorkshire
|
5 |
+
(n)
|
6 |
+
|
7 |
+
Castleford Tigers (2014 seas/The Wish Communications |11,750 Castleford, West Yorkshire
|
8 |
+
(on) Stadium
|
9 |
+
Catalans Dragons (2014 sea Stade Gilbert Brutus 14,000 Perpignan,Pyrenees-Orien
|
10 |
+
|
11 |
+
(son) tales,France
|
12 |
+
Huddersfield Giants (2014 s John Smith's Stadium 124,544 Huddersfield, West Yorkshi
|
13 |
+
|
14 |
+
(eason) Ire
|
15 |
+
Hull (2014 season) Kingston Communications |25,404 Kingston upon Hull, East R
|
16 |
+
Stadium iding of Yorkshire
|
17 |
+
|
18 |
+
Hull Kingston Rovers (2014 MS3 Craven Park 9,471 Kingston upon Hull, East R
|
19 |
+
(season) iding of Yorkshire
|
20 |
+
|
21 |
+
Leeds Rhinos (2014 season) Headingley Carnegie Stadiu |22,250 Leeds, West Yorkshire
|
22 |
+
Im
|
23 |
+
|
24 |
+
London Broncos (2014 seas Twickenham Stoop 12,700 Twickenham,London
|
25 |
+
(on)
|
26 |
+
|
27 |
+
Salford City Reds (2014 seasSalford City Stadium 12,000 Salford, Greater Mancheste
|
28 |
+
(on) r
|
29 |
+
St Helens RLFC(2014 seaso Langtree Park St Helens, Merseyside
|
30 |
+
18,000
|
31 |
+
(n)
|
32 |
+
Wakefield Trinity Wildcats |Rapid Solicitors Stadium 11,000 Wakefield,West Yorkshire
|
33 |
+
|
34 |
+
2014 season)
|
35 |
+
Warrington Wolves (2014 seHalliwell Jones Stadium 15,500 Warrington, Cheshire
|
36 |
+
|
37 |
+
|ason)
|
38 |
+
Widnes Vikings (2014 seaso|The Select Security Stadiu 13,500 Widnes, Cheshire, England
|
39 |
+
(n) Im
|
40 |
+
|
41 |
+
Wigan Warriors (2014 seas DW Stadium 25,138 Wigan, Greater Manchester
|
42 |
+
(on)
|
43 |
+
|
44 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1271.txt
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
SI no Name of the Starting from Ending with Number of pa Sung by
|
3 |
+
prabandham surams
|
4 |
+
|
5 |
+
1 Periazhvar Th 1 473 473 Periyalvar
|
6 |
+
irumozhi
|
7 |
+
2 Thiruppavai 474 503 30 Aandaal
|
8 |
+
|
9 |
+
3 Nachiar Tirum 504 646 143 Aandaal
|
10 |
+
ozhi
|
11 |
+
4 Perumal Thiru 647 751 105 Kulasekara al
|
12 |
+
mozhi var
|
13 |
+
|
14 |
+
5 Thiruchchand 752 871 120 Thirumalisai a
|
15 |
+
a Viruththam Ivar
|
16 |
+
6 Thirumalai 872 916 45 Thondaradipp
|
17 |
+
odi alvar
|
18 |
+
|
19 |
+
7 Thiruppalliyez 917 926 10 Thondaradipp
|
20 |
+
huchchi odi alvar
|
21 |
+
8 936
|
22 |
+
Amalanadhi p 927 10 Thiruppaan al
|
23 |
+
iran var
|
24 |
+
9 Kanni Nun Sir 937 947 11 Madhurakavi
|
25 |
+
uththambu Alvar
|
26 |
+
|
27 |
+
10 Peria Thirumo 948 2031 1084 Thirumangai
|
28 |
+
zhi alvar
|
29 |
+
11 Kurun Thanda 2032 2051 20 Thirumangai
|
30 |
+
gam alvar
|
31 |
+
|
32 |
+
12 Nedum Than 2052 2081 30 Thirumangai
|
33 |
+
dagam alvar
|
34 |
+
13 Mudhal Thiruv 2082 2181 100 Poigai Alvar
|
35 |
+
andhadhi
|
36 |
+
|
37 |
+
14 Irandam Thiru 2182 2281 100 Bhoothathalv
|
38 |
+
vandhadhi ar
|
39 |
+
15 Moonram Thir 2282 2381 100 Peyalvar
|
40 |
+
uvandhadhi
|
41 |
+
|
42 |
+
16 Naanmugan T 2382 2477 96 Thirumalisai a
|
43 |
+
hiruvandhadh Ivar
|
44 |
+
i
|
45 |
+
17 Thiruviruththa 2478 2577 100 Nammalvar
|
46 |
+
m
|
47 |
+
|
48 |
+
18 Thiruvasiriya 2578 2584 7 Nammalvar
|
49 |
+
m
|
50 |
+
19 Peria Thiruva 2585 2671 87 Nammalvar
|
51 |
+
ndhadhi
|
52 |
+
|
53 |
+
20 Thiruvezhukk 2672 2672 1 Thirumangai
|
54 |
+
urrirukkai alvar
|
55 |
+
Siriya Thirum 2673 2673 1 Thirumangai
|
56 |
+
21 adal alvar
|
57 |
+
|
58 |
+
22 Peria Thiruma 2674 2674 1 Thirumangai
|
59 |
+
dal alvar
|
60 |
+
|
61 |
+
23 Thiruvay Moz 2674 3776 1102 Nammalvar
|
62 |
+
hi
|
63 |
+
Total number 3776
|
64 |
+
of pasurams
|
65 |
+
|
66 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1324.txt
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Date Opponent Score Result Record
|
3 |
+
|
4 |
+
May 22 Seattle 75-64 Win 1-0
|
5 |
+
May 24 @Phoenix 69-62 Win 2-0
|
6 |
+
|
7 |
+
May 30 Connecticut 83-91 Loss 2-1
|
8 |
+
|
9 |
+
June1 @Minnesota 64-68 (OT) Loss 2-2
|
10 |
+
June3 Phoenix 66-51 Win 3-2
|
11 |
+
|
12 |
+
June6 @ Charlotte 58-69 Loss 3-3
|
13 |
+
|
14 |
+
June7 @ Connecticut 58-65 Loss 3-4
|
15 |
+
June10 Sacramento 71-66 Win 4-4
|
16 |
+
|
17 |
+
June14 @Phoenix 61-76 Loss 4-5
|
18 |
+
June17 @Minnesota Win
|
19 |
+
77-68 5-5
|
20 |
+
June 20 @San Antonio 69-76 Loss 5-6
|
21 |
+
|
22 |
+
June 21 Cleveland 63-62 Win 6-6
|
23 |
+
Los Angeles 62-71 Loss 6-7
|
24 |
+
June 24
|
25 |
+
June 28 San Antonio 64-49 Win 7-7
|
26 |
+
|
27 |
+
July1 Minnesota 71-69 Win 8-7
|
28 |
+
Julys Washington 76-54 Win 9-7
|
29 |
+
|
30 |
+
July8 Indiana 60-56 Win 10-7
|
31 |
+
|
32 |
+
July 15 @Seattle 55-69 Loss 10-8
|
33 |
+
July18 @ Los Angeles 79-74 Win 11-8
|
34 |
+
|
35 |
+
July 19 @Sacramento 74-71 Win 12-8
|
36 |
+
|
37 |
+
July 26 New York 61-53 Win 13-8
|
38 |
+
July 29 Minnesota 73-58 Win 14-8
|
39 |
+
|
40 |
+
August1 @ San Antonio 53-63 Loss 14-9
|
41 |
+
San Antonio Win
|
42 |
+
August 2 64-55 15-9
|
43 |
+
August 5 Sacramento 74-47 Win 16-9
|
44 |
+
|
45 |
+
August7 @Indiana 68-55 Win 17-9
|
46 |
+
August 8 @Detroit 66-56 Win 18-9
|
47 |
+
|
48 |
+
August10 Phoenix 69-46 Win 19-9
|
49 |
+
|
50 |
+
August16 Los Angeles 63-64 Loss 19-10
|
51 |
+
August18 @ New York 64-67 Loss 19-11
|
52 |
+
|
53 |
+
August19 Seattle 52-47 Win 20-11
|
54 |
+
|
55 |
+
August 21 @Sacramento 52-64 Loss 20-12
|
56 |
+
August 23 @Seattle 64-71 Loss 20-13
|
57 |
+
|
58 |
+
August 25 @ Los Angeles 64-67 Loss 20-14
|
59 |
+
@Sacramento
|
60 |
+
August 29 (First Round, Gam 59-65 Loss 0-1
|
61 |
+
e1)
|
62 |
+
August 31First Round,Gam Sacramento 69-48 Win 1-1
|
63 |
+
e2)
|
64 |
+
|
65 |
+
September 2 (First Round,G Sacramento 68-70 Loss 1-2
|
66 |
+
ame3)
|
67 |
+
|
68 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1339.txt
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Binary Octal Decimal Hexadecimal Glyph
|
3 |
+
00110000 060 48 30 O
|
4 |
+
|
5 |
+
00110001 061 49 31 1
|
6 |
+
00110010 062 50 32 2
|
7 |
+
00110011 063 51 33 3
|
8 |
+
00110100 52 34 4
|
9 |
+
064
|
10 |
+
00110101 065 53 35 5
|
11 |
+
00110110 066 54 36 6
|
12 |
+
00110111 067 55 37 7
|
13 |
+
|
14 |
+
00111000 070 56 38 8
|
15 |
+
00111001 071 57 39 9
|
16 |
+
|
17 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1355.txt
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Result Award Film
|
3 |
+
|
4 |
+
1989 Won Bronze Wrangler Theatric Young Guns
|
5 |
+
al Motion Picture
|
6 |
+
|
7 |
+
1999 Nominated SAG Award Outstanding Being John Malkovich
|
8 |
+
Performance by a Cast in
|
9 |
+
|
10 |
+
a Theatrical Motion Pictu
|
11 |
+
re
|
12 |
+
|
13 |
+
1999 Nominated Online Film Critics Societ Being John Malkovich
|
14 |
+
y Award for Best Cast
|
15 |
+
|
16 |
+
2001 Nominated ALMA Award Outstandin Spin City
|
17 |
+
g Actor in a Television Ser
|
18 |
+
ies
|
19 |
+
|
20 |
+
2002 Nominated ALMA Award Outstandin Spin City
|
21 |
+
g Actor in a Television Ser
|
22 |
+
|
23 |
+
ies
|
24 |
+
|
25 |
+
2002 Won Golden Globe Award Best Spin City
|
26 |
+
Performance by an Actor i
|
27 |
+
n a Television Series-Mu
|
28 |
+
sical or Comedy
|
29 |
+
|
30 |
+
2002 Nominated Kids'Choice Awards Favo Two and a Half Men
|
31 |
+
rite Television Actor
|
32 |
+
|
33 |
+
2005 Nominated SAG Award Outstanding Two and a Half Men
|
34 |
+
Performance by a Male Ac
|
35 |
+
|
36 |
+
tor in a Comedy Series
|
37 |
+
|
38 |
+
2005 Nominated Golden Globe Award for B Two and a Half Men
|
39 |
+
est Actor-Television Seri
|
40 |
+
es Musical or Comedy
|
41 |
+
|
42 |
+
2006 Won Golden Icon Award Best A Two and a Half Men
|
43 |
+
ctor-Comedy Series
|
44 |
+
|
45 |
+
2006 Nominated Emmy Award for Outstan Two and a Half Men
|
46 |
+
ding Lead Actor - Comedy
|
47 |
+
|
48 |
+
Series
|
49 |
+
Golden Globe Award for B
|
50 |
+
2006 Nominated Two and a Half Men
|
51 |
+
est Actor-Television Seri
|
52 |
+
es Musical or Comedy
|
53 |
+
|
54 |
+
2007 Nominated People's Choice Award Fa
|
55 |
+
vorite Male TV Star
|
56 |
+
|
57 |
+
2007 Nominated Teen Choice Award Choic Two and a Half Men
|
58 |
+
e TV Actor: Comedy
|
59 |
+
|
60 |
+
2007 Nominated Emmy Award for Outstan Two and a Half Men
|
61 |
+
ding Lead Actor -Comedy
|
62 |
+
|
63 |
+
Series
|
64 |
+
|
65 |
+
2008 Nominated People's Choice Award Fa
|
66 |
+
vorite Male TV Star
|
67 |
+
|
68 |
+
2008 Nominated Teen Choice Awards Choi Two and a Half Men
|
69 |
+
ce TV Actor:Comedy
|
70 |
+
|
71 |
+
2008 Nominated Outstanding Lead Actor- Two and a Half Men
|
72 |
+
Comedy Series
|
73 |
+
|
74 |
+
2008 Won ALMA Award Outstandin Two and a Half Men
|
75 |
+
g Actor in a Comedy Telev
|
76 |
+
|
77 |
+
ision Series
|
78 |
+
|
79 |
+
2010 Nominated SAG Award Outstanding Two and a Half Men
|
80 |
+
Performance by a Male Ac
|
81 |
+
tor in a Comedy Series
|
82 |
+
|
83 |
+
2012 Won WWE Slammy Award Top WWE Raw
|
84 |
+
Social Media Ambassador
|
85 |
+
|
86 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1402.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Position Sail Number Yacht State/Country Yacht Type LOA (Metres) skipper Elapsed Time d:h
|
3 |
+
h:mm:ss
|
4 |
+
|
5 |
+
1 US27 Sayonara. USA Farr ILC Maxi 24.13 Larry Ellison 2:19:03:32
|
6 |
+
|
7 |
+
2 C1 Brindabella NSW Jutson79 24.07 George Snow 2:21:55:06
|
8 |
+
|
9 |
+
3 YC1000 Ausmaid SA Farr47 14.24 Kevan Pearce 3:06:02:29
|
10 |
+
|
11 |
+
4 AUS70 Ragamuffin NSW Farr 50 15.15 Syd Fischer 3:06:11:29
|
12 |
+
5 COK1 Nokia CI Farr Ketch Maxi 25.20 David witt 3:09:19:00
|
13 |
+
|
14 |
+
6 SM1 Fudge VIC Elliot 56 17.07 Peter Hansen 3:11:00:26
|
15 |
+
|
16 |
+
7 6606 Quest NSW Nelson Marek 46 14.12 Bob Steel 3:14:41:28
|
17 |
+
|
18 |
+
8 9090 Industrial Quest OLD Nelson Marek 43 13.11 Kevin Miller 3:14:58:46
|
19 |
+
|
20 |
+
9 4826 AspectComputin NSW Ra.dford 16.5 Sloo 16.50 David Pescud 3:15:28:24
|
21 |
+
P
|
22 |
+
|
23 |
+
10 8338 AFR Midnight Ra. NSW Hick35 10.66 Ed Psaltis Bob Th 3:16:04:40
|
24 |
+
mbler omas
|
25 |
+
|
26 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1405.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Name Nationality Time Notes Points
|
3 |
+
|
4 |
+
1 Adam Kszczot Poland 1:46.50 12
|
5 |
+
2 Jeff Lastennet France 1:46.70 11
|
6 |
+
|
7 |
+
3 Gareth Warburton Great Britaino 1:46.95 SB 10
|
8 |
+
4 Mario Scapini Italy 1:47.20 PB 9
|
9 |
+
|
10 |
+
5 Anis Ananenka Belarus 1:47.29 8
|
11 |
+
6 Oleh Kayafa Ukraine 1:47.42 7
|
12 |
+
|
13 |
+
7 Joni Jaako Sweden 1:47.61 SB 6
|
14 |
+
8 Robin Schembera Germany 1:47.79 5
|
15 |
+
|
16 |
+
9 Ivan Tukhtachev Russia 1:48.27 SB 4
|
17 |
+
10 Antonio Manuel Rei Spain 1:48.56 3
|
18 |
+
na
|
19 |
+
|
20 |
+
11 Antonio Rodrigues Portugal 1:50.45 2
|
21 |
+
12 Milan Kocourek Czech Republic 1:59.28 1
|
22 |
+
|
23 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1467.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Week Date Opponent Result Attendance
|
3 |
+
1 September 4, 1988 at Detroit Lions L31-17 31,075
|
4 |
+
2 September 11, 1988 New Orleans Saints L 29-21 48,901
|
5 |
+
W34-17 60,168
|
6 |
+
3 September 18, 1988|at San Francisco 49
|
7 |
+
ers
|
8 |
+
4 September 25, 1988|at Dallas Cowboys L 26-20 39,702
|
9 |
+
5 October 2, 1988 Seattle Seahawks L31-20 28,619
|
10 |
+
6 October 9,1988 Los Angeles Rams L33-0 30,852
|
11 |
+
7 October 16, 1988 at Denver Broncos L 30-14 75,287
|
12 |
+
8 October 23, 1988 New York Giants L 23-16 45,092
|
13 |
+
9 October 30, 1988 at Philadelphia Eag. W27-24 60,091
|
14 |
+
es
|
15 |
+
10 November 6, 1988 Green Bay Packers W20-0 29,952
|
16 |
+
|
17 |
+
11 November 13, 1988 San Diego Chargers L10-7 26,329
|
18 |
+
12 November 20, 1988|at Los Angeles Raid W12-6 40,967
|
19 |
+
ers
|
20 |
+
13 November 27, 1988Tanpa Bay Buccan W17-10 14,020
|
21 |
+
eers
|
22 |
+
14 December 4, 1988 San Francisco49ers L13-3 44,048
|
23 |
+
15 December 11, 1988 at Los Angeles Ram|L 22-7 42,828
|
24 |
+
S
|
25 |
+
16 December 18, 1988 Jat New Orleans Sai |L 10-9 60,566
|
26 |
+
nts
|
27 |
+
|
28 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1469.txt
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Pick # NFL Team Player Position College
|
3 |
+
1 Baltimore Colts (Lot George Shaw Quarterback
|
4 |
+
Oregon
|
5 |
+
tery bonus pick)
|
6 |
+
2 Chicago Cardinals Max Boydston End Oklahoma
|
7 |
+
3 Baltimore Colts Alan Ameche Fullback Wisconsin
|
8 |
+
|
9 |
+
4 Washington Redski Ralph Guglielmi Quarterback Notre Dame
|
10 |
+
ns
|
11 |
+
5 Green Bay Packers Tom Bettis Guard Purdue
|
12 |
+
6 Pittsburgh Steelers Frank Varrichione Tackle Notre Dame
|
13 |
+
|
14 |
+
7 Los Angeles Rams Larry Morris Center Georgia Tech
|
15 |
+
8 New York Giants Joe Heap Halfback Notre Dame
|
16 |
+
9 Philadelphia Eagles Dick Bielski Fullback Maryland
|
17 |
+
|
18 |
+
10 San Francisco 49ers Dickey Moegle Halfback Rice
|
19 |
+
11 Chicago Bears Ron Drzewiecki Halfback Marquette
|
20 |
+
|
21 |
+
12 Detroit Lions Dave Middleton Halfback Auburn
|
22 |
+
13 Cleveland Browns Kurt Burris Center Oklahoma
|
23 |
+
|
24 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1493.txt
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Stage Date Route Terrain Length Winner Race leader
|
3 |
+
1 30 June Paris - Caen Plain stage 208 km (129 mi) Alfred Haemerlinck Alfred Haemerlinck
|
4 |
+
(BEL) (BEL)
|
5 |
+
|
6 |
+
2 1 July Caen - Dinan Plain stage 212 km (132 mi) Max Bulla (AUT) Max Bulla (AUT)
|
7 |
+
3 2 July Dinan-Brest Plain stage 206 km (128 mi) Fabio Battesini IT Leon Le Calvez (FR
|
8 |
+
A) A)
|
9 |
+
4 3 July Brest - Vannes Plain stage 211 km (131 mi) Andre Godinat (FR Rafaele di Paco (IT
|
10 |
+
A) A)
|
11 |
+
5 4 July Vannes - Les Sables Plain stage 202 km (126 mi) Charles Pelissier (F Charles Pelissier (F
|
12 |
+
d'Olonne RA) RA) Rafaele di Paco
|
13 |
+
(ITA)
|
14 |
+
6 Les Sables d'Olonne Plain stage 338 km (210 mi) Alfred Haemerlinck Rafaele di Paco (IT
|
15 |
+
5 July Bordeaux (BEL) A)
|
16 |
+
|
17 |
+
7 6 July Bordeaux - Bayonn Plain stage 180 km (110 mi) Gerard Loncke (BE Rafaele di Paco (IT
|
18 |
+
e A)
|
19 |
+
L)
|
20 |
+
8 7 July Bayonne - Pau Plain stage 106 km (66 mi) Charles Pelissier (F Charles Pelissier (F
|
21 |
+
RA) RA)
|
22 |
+
9 8 July Pau - Luchon Stage with mountai 231 km (144 mi) Antonin Magne (FR Antonin Magne (FR
|
23 |
+
n(s) A) A)
|
24 |
+
10 10 July Luchon - Perpignan Stage with mountai 322 km (200 mi) Rafaele di Paco (IT Antonin Magne (FR
|
25 |
+
n(s) A) A)
|
26 |
+
11 12 July Perpignan - Montpe Plain stage 164 km (102 mi) Rafaele di Paco (IT Antonin Magne (FR
|
27 |
+
llier
|
28 |
+
A) A)
|
29 |
+
12 13 July Montpellier - Marse Plain stage 207 km (129 mi) Max Bulla (AUT) Antonin Magne (FR
|
30 |
+
ille A)
|
31 |
+
13 14 July Marseille - Cannes Plain stage 181 km (112 mi) Charles Pelissier (F Antonin Magne (FR
|
32 |
+
RA) A)
|
33 |
+
14 15 July Cannes - Nice Stage with mountai 132 km (82 mi) Eugenio Gestri (ITA) Antonin Magne (FR
|
34 |
+
n(s) A)
|
35 |
+
15 Nice - Gap Stage with mountai 233 km (145 mi) Jef Demuysere (BE Antonin Magne (FR
|
36 |
+
17 July n(s) L) A)
|
37 |
+
16 18 July Gap - Grenoble Stage with mountai 102 km (63 mi) Charles Pelissier (F Antonin Magne (FR
|
38 |
+
n(s) RA) A)
|
39 |
+
17 19 July Grenoble-Aix-les-B Stage with mountai 230 km (140 mi) Max Bulla (AUT) Antonin Magne (FR
|
40 |
+
ains n(s) A)
|
41 |
+
18 20 July Aix-les-Bains-Evia Stage with mountai 204 km (127 mi) Jef Demuysere (BE Antonin Magne (FR
|
42 |
+
n n(s) L) A)
|
43 |
+
19 21 July Evian - Belfort Stage with mountai 282 km (175 mi) Rafaele di Paco (IT Antonin Magne (FR
|
44 |
+
n(s) A) A)
|
45 |
+
Andre Leducq (FRA)A Antonin Magne (FR
|
46 |
+
20 22 July Belfort - Colmar Stage with mountai 209 km (130 mi) A)
|
47 |
+
n(s)
|
48 |
+
21 23 July Colmar - Metz Plain stage 192 km (119 mi) Rafaele di Paco (IT Antonin Magne (FR
|
49 |
+
A) A)
|
50 |
+
22 24 July Metz - Charleville Plain stage 159 km (99 mi) Raffaele di Paco (IT Antonin Magne (FR
|
51 |
+
A) A)
|
52 |
+
23 25 July Charleville -- Malo-lePlain stage 271 km (168 mi) Gaston Rebry (BEL) Antonin Magne (FR
|
53 |
+
s-Bains A)
|
54 |
+
24 313 km (194 mi) Charles Pelissier (F Antonin Magne (FR
|
55 |
+
26 July Malo-les-Bains - ParPlain stage
|
56 |
+
is RA) A)
|
57 |
+
|
58 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1503.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Season Club Competition Games Goals
|
3 |
+
|
4 |
+
2002/03 RAEC Mons Jupiler League 19 0
|
5 |
+
2003/04 RAEC Mons Jupiler League 23 0
|
6 |
+
|
7 |
+
2004/05 KSV Roeselare Belgian Second 29 1
|
8 |
+
Division
|
9 |
+
|
10 |
+
2005/06 KSV Roeselare Jupiler League 26 0
|
11 |
+
|
12 |
+
2006/07 KSV Roeselare Jupiler League 29 1
|
13 |
+
2007/08 KSV Roeselare Jupiler League 25 0
|
14 |
+
|
15 |
+
2008/09 Excelsior Mouscr Jupiler League 31 1
|
16 |
+
on
|
17 |
+
|
18 |
+
2009/10 Excelsior Mouscr Jupiler League 14 1
|
19 |
+
on
|
20 |
+
|
21 |
+
2009/10 Gyori ETO FC Soproni Liga 1 0
|
22 |
+
2010/11 Kortrijk Jupiler League 0 0
|
23 |
+
|
24 |
+
Totaal 278 4
|
25 |
+
|
26 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1521.txt
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Record Finish Manager Playoffs
|
3 |
+
|
4 |
+
1961 68-86 6th Tommy Heath/Bill We none
|
5 |
+
rle
|
6 |
+
1962 77-76 5th Irv Noren none
|
7 |
+
|
8 |
+
1963 81-77 4th Irv Noren
|
9 |
+
|
10 |
+
1964 60-98 10th Bob Lemon
|
11 |
+
1965 75-72 6th(t) George Case
|
12 |
+
|
13 |
+
1966 63-84 10th George Case
|
14 |
+
|
15 |
+
1967 60-87 12th Wayne Terwilliger
|
16 |
+
1968 78-69 3rd Bill Adair
|
17 |
+
|
18 |
+
1969 74-72 4th Chuck Tanner
|
19 |
+
|
20 |
+
1970 98-48 1st Chuck Tanner Lost League Finals
|
21 |
+
1971 73-73 4th(t) Bill Adair
|
22 |
+
|
23 |
+
1972 74-74 5th Rocky Bridges
|
24 |
+
1973 70-74 Rocky Bridges /Warre
|
25 |
+
5th n Hacker /Roy Hartsfiel
|
26 |
+
d
|
27 |
+
|
28 |
+
1974 67-77 6th Roy Hartsfield
|
29 |
+
|
30 |
+
1975 88-56 1st Roy Hartsfield League Champs
|
31 |
+
1976 77-68 2nd Roy Hartsfield League Champs
|
32 |
+
|
33 |
+
1977 79-67 2nd Dick Phillips Lost League Finals
|
34 |
+
|
35 |
+
1978 56-82 8th Dick Phillips
|
36 |
+
1979 72-76 8th Dick Phillips Lost League Finals
|
37 |
+
|
38 |
+
1980 76-65 5th Doug Rader Lost League Finals
|
39 |
+
|
40 |
+
1981 72-65 3rd(t) Doug Rader Lost in 1st round
|
41 |
+
1982 73-71 5th Doug Rader
|
42 |
+
|
43 |
+
1983 72-71 5th Tom Trebelhorn
|
44 |
+
|
45 |
+
1984 87-53 1st Tommy Sandt Lost League Finals
|
46 |
+
1985 84-59 1st Tommy Sandt Lost in 1st round
|
47 |
+
|
48 |
+
1986 65-79 9th Tommy Sandt
|
49 |
+
|
50 |
+
1987 65-75 9th Bob Bailey
|
51 |
+
|
52 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1524.txt
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Film Film Date
|
3 |
+
|
4 |
+
Kodachrome film 16 mm, daylight (AsA 10) &T 1935-1962
|
5 |
+
ype A (ASA 16)
|
6 |
+
|
7 |
+
Kodachrome film 8 mm, daylight (AsA 10) & T 1936-1962
|
8 |
+
|
9 |
+
ype A (ASA 16)
|
10 |
+
Kodachrome film 35 mm and 828, daylight & 1936-1962
|
11 |
+
|
12 |
+
Type A
|
13 |
+
|
14 |
+
Kodachrome Professional fil daylight (ASA 8) and Type B 1938-1951
|
15 |
+
m (sheets) (ASA 10)
|
16 |
+
|
17 |
+
Kodachrome film 35 mm and 828, Type F (AS 1955-1962
|
18 |
+
A 12)
|
19 |
+
|
20 |
+
Kodachrome Professional fil 35 mm, Type A (ASA 16) 1956-1962
|
21 |
+
m
|
22 |
+
|
23 |
+
Kodak Color Print Material Type D (slide duping film) 1955-1957
|
24 |
+
|
25 |
+
Kodachrome Il film 16 mm, daylight (ASA 25) an 1961-1974
|
26 |
+
d Type A (ASA 40)
|
27 |
+
|
28 |
+
Kodachrome ll film 8 mm, daylight (AsA 25) an 1961-1974
|
29 |
+
|
30 |
+
d Type A (ASA 40)
|
31 |
+
|
32 |
+
Kodachrome ll film S-8, Type A (ASA 40) 1965-1974
|
33 |
+
|
34 |
+
Kodachrome ll film 35 mm and 828, daylight (A 1961-1974
|
35 |
+
SA 25/early)ASA 64/late)
|
36 |
+
|
37 |
+
Kodachrome ll film Professional, 35 mm, Type A 1962-1978
|
38 |
+
(ASA 40)
|
39 |
+
|
40 |
+
Kodachrome-X film 35 mm (ASA 64) 1962-1974
|
41 |
+
|
42 |
+
Kodachrome-X film 126 format 1963-1974
|
43 |
+
|
44 |
+
Kodachrome-x film 110 format 1972-1974
|
45 |
+
|
46 |
+
Kodachrome 25 film 35 mm, daylight 1974-2001
|
47 |
+
|
48 |
+
Kodachrome 25 film Movie film, 16 mm, daylight 1974-2002
|
49 |
+
|
50 |
+
Kodachrome 25 film Movie film, 8 mm, daylight 1974-1992
|
51 |
+
|
52 |
+
Kodachrome 25 film Professional film,35 mm,da 1983-1999
|
53 |
+
|
54 |
+
ylight
|
55 |
+
Kodachrome 40 film 1978-1997
|
56 |
+
35 mm, Type A
|
57 |
+
Kodachrome 40 film Movie film, 16 mm, Type A 1974-2006
|
58 |
+
|
59 |
+
Kodachrome 40 film Movie film, S-8, Type A 1974-2005
|
60 |
+
|
61 |
+
Kodachrome 40 film Sound Movie film, S-8, Type 1974-1998
|
62 |
+
A
|
63 |
+
|
64 |
+
Kodachrome 40 film 1974-1992
|
65 |
+
Movie film, 8 mm, Type A
|
66 |
+
|
67 |
+
Kodachrome 64 35 mm, daylight 1974-2009
|
68 |
+
1974-1993
|
69 |
+
Kodachrome 64 126 format, daylight
|
70 |
+
|
71 |
+
Kodachrome 64 110 format, daylight 1974-1987
|
72 |
+
|
73 |
+
Kodachrome 64 Professional film, 35 mm, da 1983-2009
|
74 |
+
ylight
|
75 |
+
|
76 |
+
Kodachrome 64 Professional film, daylight, 12 1986-1996
|
77 |
+
O format
|
78 |
+
|
79 |
+
Kodachrome 200 Professional film, 35 mm, da 1986-2004
|
80 |
+
ylight
|
81 |
+
|
82 |
+
Kodachrome 200 35 mm, daylight 1988-2007
|
83 |
+
|
84 |
+
Cine-Chrome40A Double Regular 8 mm, tungs 2003-2006
|
85 |
+
ten
|
86 |
+
|
87 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1529.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Nation Gold Silver Bronze Total
|
3 |
+
|
4 |
+
1. Brazil 21 9 12 42
|
5 |
+
|
6 |
+
2. United States 9 3 6 18
|
7 |
+
|
8 |
+
3. China 1 9 8 18
|
9 |
+
|
10 |
+
4. Australia 1 1 1 3
|
11 |
+
Netherlands 3
|
12 |
+
4. 1 1 1
|
13 |
+
6. Estonia 1 0 0 1
|
14 |
+
|
15 |
+
7. Germany 0 5 1 6
|
16 |
+
|
17 |
+
8. Russia 0 2 3 5
|
18 |
+
|
19 |
+
9. Argentina 0 2 0 2
|
20 |
+
|
21 |
+
10. Switzerland 0 1 1 2
|
22 |
+
|
23 |
+
11. Norway 0 1 0 1
|
24 |
+
|
25 |
+
12. Austria 0 1 1
|
26 |
+
|
27 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1544.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Country Box Office Year Box office from na
|
3 |
+
tional films
|
4 |
+
|
5 |
+
1 Canada/United Stat $10.8 billion 2012
|
6 |
+
es
|
7 |
+
|
8 |
+
2 China $3.6 billion 2013 59% (2013)
|
9 |
+
3 2013 61%
|
10 |
+
Japan $1.88 billion (2013)
|
11 |
+
4 United Kingdom $1.7 billion 2012 36.1% (2011)
|
12 |
+
|
13 |
+
5 France $1.7 billion 2012 33.3% (2013)
|
14 |
+
|
15 |
+
6 South Korea $1.47 billion 2013 59.7% (2013)
|
16 |
+
|
17 |
+
7 India $1.4 billion 2012
|
18 |
+
|
19 |
+
8 Germany $1.3 billion 2012
|
20 |
+
9 Russia $1.2 billion 2012
|
21 |
+
|
22 |
+
10 Australia $1.2 billion 2012 4.1% (2011)
|
23 |
+
|
24 |
+
11 Italy $0.84 billion 2013 30% (2013)
|
25 |
+
|
26 |
+
12 Brazil $0.72 billion 2013 17% (2013)
|
27 |
+
|
28 |
+
World $34.7 billion 2012
|
29 |
+
|
30 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1572.txt
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Team1 Agg. Team2 1st leg 2nd leg
|
3 |
+
|
4 |
+
Tauro F.C. 5-0 America Managua 5-0 0-0
|
5 |
+
|
6 |
+
Deportivo Saprissa 8-2 Real Esteli 4-1 4-1
|
7 |
+
|
8 |
+
L.D.Alajuelense 11-1 C.D.Plaza Amador 4-1 7-0
|
9 |
+
|
10 |
+
|
11 |
+
Duurly's 0-8 C.D.Luis Angel Firpo 0-4 0-4
|
12 |
+
|
13 |
+
Real C.D.Espana 6-0 Acros Real Verdes 5-0 1-0
|
14 |
+
|
15 |
+
CSD Municipal 3-6 Alianza F.C. 2-5 1-1
|
16 |
+
|
17 |
+
C.D.Motagua 2-2 CSD Comunicaciones 1-1 1-1
|
18 |
+
|
19 |
+
C.D.Motagua 0-1(Replay) CSD Comunicaciones
|
20 |
+
|
21 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1573.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Calsign Area served Frequency Band Fate Freq currently Purpose
|
3 |
+
7CAE Hobart 092.1 FM Changed call to 7THE 7THE Community
|
4 |
+
ca.1980
|
5 |
+
7DY Derby AM Moved to Scottsdale 7SD Commercial
|
6 |
+
and changed call to 7
|
7 |
+
SD in 1954
|
8 |
+
7EX Launxeston 1008 AM Moved to FM in 2008 silent Commercial
|
9 |
+
as7EXX
|
10 |
+
7HO Hobart 0864 AM Moved to FM in 1990 7RPH Commercial
|
11 |
+
as7HHO
|
12 |
+
7HT Hobart 1080 AM Moved to FM in 1998 7TAB (HPON) Commercial
|
13 |
+
as7XX
|
14 |
+
7LA Launceston 1098 AM Moved to FM in 2008 silent Commercial
|
15 |
+
as7LAA
|
16 |
+
7NT Launxeston 0711 AM Moved to FM in 2006, silent National
|
17 |
+
retained call
|
18 |
+
7QN Queerstown 0630 AM Moved to FM in 1991. 7RN National
|
19 |
+
retained call
|
20 |
+
7QT Queerstown 0837 AM Changed call to 7XSi 7XS Commercial
|
21 |
+
n 1988
|
22 |
+
7UV Uiverstone AM Moved to Devonport 7AD Commercial
|
23 |
+
and changed call to 7
|
24 |
+
AD in 1940
|
25 |
+
TZL Hobart 0603 AM Changed call to 7RN i 7RN National
|
26 |
+
n 1991
|
27 |
+
|
28 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1606.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Position Player Transferred From Date
|
3 |
+
|
4 |
+
GK Fajar Sarib Geylang United 1 January 2010
|
5 |
+
|
6 |
+
GK Hafez Mawasi Balestier Khalsa 1 January 2010
|
7 |
+
|
8 |
+
DF Winston Yap Sengkang Punggol 1 January 2010
|
9 |
+
|
10 |
+
DF Kazuki Yoshino Albirex Niigata (s) 1 January 2010
|
11 |
+
|
12 |
+
DF Sahairi Ramri Balestier Khalsa 1 January 2010
|
13 |
+
|
14 |
+
|
15 |
+
MF Syed Karim SAFFC 1 January 2010
|
16 |
+
|
17 |
+
MF Mohd Noor Ali Geylang United 1 January 2010
|
18 |
+
|
19 |
+
MF Guntur Djafril SAFFC 1 January 2010
|
20 |
+
|
21 |
+
MF Sazali Salleh Sengkang Punggol 1 January 2010
|
22 |
+
|
23 |
+
FW Laakkad Abdelhadi Free Transfer 1 January 2010
|
24 |
+
|
25 |
+
FW Rizawan Abdullah Balestier Khalsa 1 January 2010
|
26 |
+
|
27 |
+
MF Rachid Lajane Raja Al Hoceima 26 February 2010
|
28 |
+
|
29 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1608.txt
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Season Date Location Discipline Place
|
3 |
+
2012 2 Dec 2011 Lake Louise, Canada Downhill 2nd
|
4 |
+
|
5 |
+
2012 28 Jan 2012 St.Moritz, Switzerl Downhill 3rd
|
6 |
+
and
|
7 |
+
2012 4 Feb 2012 Garmisch, GermanyDownhill 3rd
|
8 |
+
|
9 |
+
2012 5 Feb 2012 Garmisch, Germany Super-G 3rd
|
10 |
+
2012 26 Feb 2012 Bansko, Bulgaria Super-G 2nd
|
11 |
+
|
12 |
+
2013 3O Nov 2012 Lake Louise, CanadaDownhill 3rd
|
13 |
+
2013 1Mar 2013 Garmisch, Germany Super-G 1st
|
14 |
+
2014 29Nov 2013 Beaver Creek,USA Downhill 2nd
|
15 |
+
|
16 |
+
2014 1Dec2013 Beaver Creek,USA Giant slalom 3rd
|
17 |
+
2014 7Dec 2013 Lake Louise, CanadaDownhill 2nd
|
18 |
+
8Dec 2013
|
19 |
+
2014 Lake Louise, Canada Super-G 2nd
|
20 |
+
2014 14 Dec 2013 St.Moritz,Switzerl Super-G 1st
|
21 |
+
and
|
22 |
+
22Dec 2013 Giant slalom
|
23 |
+
2014 Val-d'Isere,France 1st
|
24 |
+
2014 24 Jan 2014 Cortina d'Ampezzo, Downhill 2nd
|
25 |
+
Italy
|
26 |
+
Downhill
|
27 |
+
2014 25 Jan 2014 Cortina d'Ampezzo, 3rd
|
28 |
+
Italy
|
29 |
+
2014 26 Jan 2014 Cortina d'Ampezzo, Super-G 2nd
|
30 |
+
Italy
|
31 |
+
|
32 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1639.txt
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Total pas Passenge Domestic Internati Internati CIS Aircraft L Cargo (to
|
3 |
+
|
4 |
+
sengers r Change onal (tota onal (non andings nnes)
|
5 |
+
1) -CIS)
|
6 |
+
|
7 |
+
2000 930 251 +2% 698957 231 294 155898 75 396 8619 18 344
|
8 |
+
|
9 |
+
2001 1028295 +10,5% 733022 295273 186861 108 412 9 062 22 178
|
10 |
+
|
11 |
+
2002 1182815 +15,0% 793295 389520 239461 150059 10 162 20153
|
12 |
+
|
13 |
+
2003 1335757 +12,9% 879665 456092 297 421 158671 10092 18054
|
14 |
+
|
15 |
+
2004 1 553 628 +16,3% 972 287 581341 429049 152 292 11816 20457
|
16 |
+
|
17 |
+
2005 1566792 +0,8% 1 006 422 560370 429790 130580 11877 11545
|
18 |
+
|
19 |
+
2006 1764 948 +12,7% 1128489 636 459 488954 147505 13 289 15519
|
20 |
+
|
21 |
+
2007 2345097 +32,9% 1486888 858209 683092 175117 16767 16965
|
22 |
+
|
23 |
+
2008 2 529 395 +7,8% 1523102 1006293 815124 191169 16407 17142
|
24 |
+
|
25 |
+
2009 2169 136 -14,2% 1290639 878497 727718 150779 13798 13585
|
26 |
+
|
27 |
+
2010 2 748 919 +26,7% 1 529 245 1219674 1017509 202 165 15989 22 946
|
28 |
+
3 355 883 1 856 948 314164
|
29 |
+
2011 +22,1% 1 498 935 1184771 20142 24890
|
30 |
+
2012 3783069 +12.7% 1934016 1849053 439668 21 728 25866
|
31 |
+
1 448 765
|
32 |
+
2013 4 293 002 +13.5% 2180227 2 112 775 25 728 27 800
|
33 |
+
|
34 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1654.txt
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Model Denomination Metal composition Dimensions
|
3 |
+
|
4 |
+
1992 Re-establishment of kroon, 2 100 krooni .900 silver 23 grams (0.81 oz)36 millime
|
5 |
+
8 August 1992 tres (1.4 in)
|
6 |
+
|
7 |
+
1996 Atlanta Olympics, 100th an 100 krooni .925 silver 25 grams (0.88 oz)38 millime
|
8 |
+
niversary of Modern Olympi tres (1.5 in)
|
9 |
+
|
10 |
+
ad
|
11 |
+
|
12 |
+
1998 80th anniversary of declarati 100 krooni .925 silver 25 grams (0.88 oz)38 millime
|
13 |
+
on of Independence, 191819 tres (1.5 in)
|
14 |
+
98
|
15 |
+
|
16 |
+
1992 Re-establishment of Krooni 10 krooni .925 silver 25 grams (0.88 oz)38 millime
|
17 |
+
currency tres (1.5 in)
|
18 |
+
|
19 |
+
1992 Barcelona Olympics 10 krooni .925 silver 25 grams (0.88 oz)38 millime
|
20 |
+
tres (1.5 in)
|
21 |
+
|
22 |
+
1998 80th anniversary of declarati 10 krooni .925 silver 25 grams (0.88 oz)38 millime
|
23 |
+
|
24 |
+
on of Independence, 191819 tres (1.5 in)
|
25 |
+
98
|
26 |
+
|
27 |
+
2002 370th anniversary of the fou 10 krooni .925 silver 25 grams (0.88 oz)38 millime
|
28 |
+
nding of Tartu University tres (1.5 in)
|
29 |
+
|
30 |
+
2004 The Flag of Estonia 2004 10 krooni .925 silver 25 grams (0.88 oz)38 millime
|
31 |
+
tres (1.5 in)
|
32 |
+
|
33 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1655.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Week Date Opponent Result Attendance
|
3 |
+
1 September 6,1981 at Los Angeles Rams W27-20 63,198
|
4 |
+
September 13,1981 at Cleveland Browns W9-3 79,483
|
5 |
+
2
|
6 |
+
3 September 20,1981 Miami Dolphins L16-10 47,379
|
7 |
+
4 September 27,1981 at New York Jets L33-17 50,309
|
8 |
+
5 October 4,1981 Cincinnati Bengals W17-10 44,350
|
9 |
+
6 October 11,1981 Seattle Seahawks W35-17 42,671
|
10 |
+
7 October 18,1981 at New England Pat L38-10 60,474
|
11 |
+
riots
|
12 |
+
October 26,1981
|
13 |
+
8 at Pittsburgh SteelersL26-13 52,732
|
14 |
+
9 November 1,1981 at Cincinnati BengalL34-21 54,736
|
15 |
+
S
|
16 |
+
10 November 8,1981 Oakland Raiders W17-16 45,519
|
17 |
+
11 November 15,1981 at Kansas City Chief L23-10 73,984
|
18 |
+
S
|
19 |
+
12 November22,1981 New Orleans Saints L27-24 49,581
|
20 |
+
November 29,1981 Atlanta Falcons L31-27
|
21 |
+
13 40,201
|
22 |
+
14 December 3,1981 Cleveland Browns W17-13 44,502
|
23 |
+
15 December 13,1981 at San Francisco 49e L28-6 55,707
|
24 |
+
rs
|
25 |
+
16 December 20,1981 Pittsburgh Steelers W21-20 41,056
|
26 |
+
|
27 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1656.txt
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Time Wind Auto Athlete Nationality Locationof race Date
|
3 |
+
Andy Stanfield United States Philadelphia,United Sta May 26,1951
|
4 |
+
20.6y tes
|
5 |
+
|
6 |
+
20.6 Andy Stanfield United States Los Angeles United Stat June 28,1952
|
7 |
+
es
|
8 |
+
20.6 0.0 Thane Baker United States Bakersfield, United Stat June 23, 1956
|
9 |
+
es
|
10 |
+
|
11 |
+
20.6 20.75 Bobby Morrow United States Melbourne,Australia November27,1956
|
12 |
+
20.6 Manfred Germar West Germany Wuppertal, Germany October1,1958
|
13 |
+
-1.6 United States Berkeley,United States March 19,1960
|
14 |
+
20.6y Ray Norton
|
15 |
+
20.6 Ray Norton United States Philadelphia United Sta April 30,1960
|
16 |
+
tes
|
17 |
+
20.5y Peter Radford United Kingdom Wolverhampton,Unite May 28, 1960
|
18 |
+
d Kingdom
|
19 |
+
|
20 |
+
20.5 0.0 20.75 Stone Johnson United States Stanford, United States July2,1960
|
21 |
+
20.5 0.0 Ray Norton United States Stanford United States July2,1960
|
22 |
+
|
23 |
+
20.5 20.65 Livio Berruti Italy Rome, Italy September3,1960
|
24 |
+
20.5 20.62 Livio Berruti Italy Rome, Italy September3,1960
|
25 |
+
-1.1 20.67 United States Walnut, United States June 23,1962
|
26 |
+
20.5y Paul Drayton
|
27 |
+
20.3y 0.1 Henry Carr United States Tempe, United States March 23,1963
|
28 |
+
20.2y 0.5 Henry Carr United States Tempe, United States April41964
|
29 |
+
|
30 |
+
20.0y 0.0 Tommie Smith United States Sacramento,United Stat June11,1968
|
31 |
+
es
|
32 |
+
19.8A 0.9 19.83A Tommie Smith United States Mexico City,Mexico October16,1968
|
33 |
+
|
34 |
+
19.8A 0.9 19.86A Donald Quarrie Jamaica Cali, Colombia August 3,1971
|
35 |
+
19.8+ 1.3 Donald Quarrie Jamaica Eugene Oregon United June 7,1975
|
36 |
+
States
|
37 |
+
|
38 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1659.txt
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Category Examples Cancers Gene functions
|
3 |
+
|
4 |
+
Growth factors, or mitogens c-Sis glioblastomas, fibrosarcomas, induces cell proliferation.
|
5 |
+
osteosarcomas, breast carcino
|
6 |
+
mas, and melanomas
|
7 |
+
Receptor tyrosine kinases epidermal growth factor recept Breast cancer, gastrointestinal transduce signals for cell growt
|
8 |
+
or (EGFR)platelet-derived gro stromal tumours,non-small-cel h and differentiation.
|
9 |
+
wth factor receptor (PDGFR),an l lung cancer and pancreatic ca
|
10 |
+
d vascular endothelial growthf ncer
|
11 |
+
actor receptor (VEGFR),HER2/n
|
12 |
+
eu
|
13 |
+
|
14 |
+
Cytoplasmic tyrosine kinases Src-family,Syk-ZAP-70 family, colorectal and breast cancers, mediate the responses to,andt
|
15 |
+
and BTK family of tyrosine kina melanomas, ovarian cancers,g he activation receptors of cell p
|
16 |
+
ses,the Abl gene in CML-Phila astric cancers, head and neck c roliferation, migration, different
|
17 |
+
delphia chromosome ancers, pancreatice cancer, lun iation, and survival
|
18 |
+
g cancer, brain cancers, and blo
|
19 |
+
od cancers
|
20 |
+
|
21 |
+
Cytoplasmic Serine/threonine k Raf kinase, and cyclin-depende malignant melanoma,papillary Involved in organism developm
|
22 |
+
inases and their regulatory sub nt kinases (through overexpres thyroid cancer, colorectal cance ent, cell cycle regulation, cell p
|
23 |
+
units sion). r, and ovarian cancer roliferation, differentiation,cell
|
24 |
+
s survival, and apoptosis
|
25 |
+
|
26 |
+
Regulatory GTPases Ras protein adenocarcinomas of the pancre involved in signalling a major p
|
27 |
+
as and colon, thyroid tumors,a
|
28 |
+
athway leading to cell prolifera
|
29 |
+
nd myeloid leukemia tion.
|
30 |
+
Transcription factors myc gene malignant T-cell lymphomas an -They regulate transcription of
|
31 |
+
d acute myleoid leukemias,bre genes that induce cell proliferat
|
32 |
+
ast cancer, pancreatic cancer,r ion.
|
33 |
+
etinoblastoma, and small cell
|
34 |
+
ung cancer
|
35 |
+
|
36 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1678.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Injuries (US $000) Deaths (age <15) CPSC toy safety fun Toy sales (Us $ Billi
|
3 |
+
ding (Us$ Millions) ons)
|
4 |
+
|
5 |
+
1994 154
|
6 |
+
1995 139
|
7 |
+
|
8 |
+
1996 130
|
9 |
+
1997 141
|
10 |
+
|
11 |
+
1998 153 14
|
12 |
+
1999 16 13.6
|
13 |
+
152
|
14 |
+
2000 191 17 12.0
|
15 |
+
|
16 |
+
2001 255 25 12.4
|
17 |
+
2002 212 13 12.2 21.3
|
18 |
+
|
19 |
+
2003 206 11 12.8 20.7
|
20 |
+
2004 210 16 11.5 22.4
|
21 |
+
|
22 |
+
2005 202 (estimate) 20 11.0 22.2
|
23 |
+
2006 no data 22 no data* 22.3
|
24 |
+
|
25 |
+
2007 no data 22 no data
|
26 |
+
19
|
27 |
+
2008 no data no data
|
28 |
+
2009 no data 12 no data
|
29 |
+
|
30 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-168.txt
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Olympics Athlete Judge (Official) Coach Language
|
3 |
+
|
4 |
+
1920 Summer Olympics Victor Boin
|
5 |
+
|
6 |
+
1924 Winter Olympics Camille Mandrillon
|
7 |
+
|
8 |
+
1924 Summer Olympics Geo Andre French.
|
9 |
+
|
10 |
+
1928 Winter Olympics Hans Eidenbenz
|
11 |
+
|
12 |
+
1928 Summer Olympics Harry Denis
|
13 |
+
1932 Winter Olympics Jack Shea
|
14 |
+
|
15 |
+
1932 Summer Olympics George Calnan English
|
16 |
+
|
17 |
+
1936 Winter Olympics Willy Bogner, Sr.
|
18 |
+
|
19 |
+
1936 Summer Olympics Rudolf Ismayr
|
20 |
+
|
21 |
+
1948 Winter Olympics Bibi Torriani
|
22 |
+
|
23 |
+
1948 Summer Olympics Donald Finlay English
|
24 |
+
|
25 |
+
1952 Winter Olympics Torbjorn Falkanger
|
26 |
+
|
27 |
+
1952 Summer Olympics Heikki Savolainen
|
28 |
+
|
29 |
+
1956 Winter Olympics Giuliana Minuzzo
|
30 |
+
John Landy (Melbourne) H
|
31 |
+
1956 Summer Olympics English/Swedish
|
32 |
+
enri Saint Cyr (Stockholm)
|
33 |
+
1960Winter Olympics Carol Heiss
|
34 |
+
|
35 |
+
1960 Summer Olympics Adolfo Consolini
|
36 |
+
|
37 |
+
1964 Winter Olympics Paul Aste German
|
38 |
+
|
39 |
+
1964 Summer Olympics Takashi Ono Japanese
|
40 |
+
|
41 |
+
1968 Winter Olympics Leo Lacroix French
|
42 |
+
|
43 |
+
1968 Summer Olympics Pablo Garrido Spanish
|
44 |
+
|
45 |
+
1972 Winter Olympics Keiichi Suzuki Fumio Asaki Japanese
|
46 |
+
|
47 |
+
1972 Summer Olympics Heidi Schuller Heinz Pollay German
|
48 |
+
Werner Delle Karth
|
49 |
+
1976 Winter Olympics Willy Kostinger German
|
50 |
+
1976 Summer Olympics Pierre St.-Jean Maurice Fauget French (St.-Jean)/English F
|
51 |
+
auget)
|
52 |
+
|
53 |
+
1980 Winter Olympics Eric Heiden Terry McDermott English
|
54 |
+
|
55 |
+
1980 Summer Olympics Nikolai Andrianov Alexander Medved Russian
|
56 |
+
|
57 |
+
1984 Winter Olympics Bojan Krizaj Dragan Perovic Serbo-Croatian
|
58 |
+
|
59 |
+
1984 Summer Olympics Edwin Moses Sharon Weber English
|
60 |
+
|
61 |
+
1988 Winter Olympics Pierre Harvey Suzanna Morrow-Francis English
|
62 |
+
|
63 |
+
1988 Summer Olympics Hur Jae Shon Mi-Na Lee Hak-Rae Korean
|
64 |
+
|
65 |
+
1992 Winter Olympics Surya Bonaly Pierre Bornat French
|
66 |
+
1992 Summer Olympics Luis Doreste Blanco Eugeni Asensio Spanish/Catalan
|
67 |
+
|
68 |
+
1994 Winter Olympics Vegard Ulvang Kari Karing English (Ulvang)/Norwegia
|
69 |
+
n (Karing)
|
70 |
+
|
71 |
+
1996 Summer Olympics Teresa Edwards Hobie Billingsley English
|
72 |
+
|
73 |
+
1998 Winter Olympics Kenji Ogiwara Junko Hiramatsu Japanese
|
74 |
+
|
75 |
+
2000 Summer Olympics Rechelle Hawkes Peter Kerr English
|
76 |
+
|
77 |
+
2002 Winter Olympics Jimmy Shea Allen Church English
|
78 |
+
|
79 |
+
2004 Summer Olympics Zoi Dimoschaki Lazaros Voreadis Greek
|
80 |
+
|
81 |
+
2006 Winter Olympics Giorgio Rocca Fabio Bianchetti Italian
|
82 |
+
2008 Summer Olympics
|
83 |
+
Zhang Yining Huang Liping Chinese
|
84 |
+
2010 Winter Olympics Hayley Wickenheiser Michel Verrault English/French
|
85 |
+
|
86 |
+
2012 Summer Olympics Sarah Stevenson Mik Basi Eric Farrell English
|
87 |
+
|
88 |
+
2014 Winter Olympics Ruslan Zakharov VyacheslavVedenin,Jr Anastassia Popkova Russian
|
89 |
+
|
90 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1686.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Competition Venue Position Notes
|
3 |
+
|
4 |
+
1999 World Youth Championships Bydgoszez, Poland 13th (q) 4.60m
|
5 |
+
2001 European Junior Championshi Grosseto, Italy 7th 5.15m
|
6 |
+
|
7 |
+
ps
|
8 |
+
2002 World Junior Championships Kingston,Jamaica 8th 5.30 m
|
9 |
+
|
10 |
+
2003 European U23 Championships BydgoszczPoland 13th (q) 5.20 m
|
11 |
+
2005 European U23 Championships Erfurt,Germany 7th 5.50 m
|
12 |
+
|
13 |
+
2005 Universiade Izmir, Turkey 5th 5.50 m
|
14 |
+
|
15 |
+
2006 World Indoor Championships Moscow,Russia 10th (q) 5.65 m
|
16 |
+
2006 European Championships Gothenburg,Sweden 5th 5.65 m
|
17 |
+
|
18 |
+
2007 European Indoor Championshi Birmingham, United Kingdom 16th (q) 5.40m
|
19 |
+
ps
|
20 |
+
|
21 |
+
2008 Olympic Games Beijing, China 11th 5.45m
|
22 |
+
2010 European Championships Barcelona, Spain 3rd 5.75 m
|
23 |
+
|
24 |
+
2012 European Championships Helsinki,Finland NM
|
25 |
+
|
26 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1694.txt
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
# Directed By Written By Original Air Date
|
3 |
+
|
4 |
+
1 Frank W.Smith Simon J. Sharkey September 14, 1997
|
5 |
+
|
6 |
+
2 Frank W.Smith Simon J. Sharkey September 28, 1997
|
7 |
+
|
8 |
+
3 Gerry Poulson David Humphries October 5,1997
|
9 |
+
4 Gerry Poulson David Humphries October 12,1997
|
10 |
+
|
11 |
+
5 John Reardon Neil McKay October 26,1997
|
12 |
+
|
13 |
+
6 John Reardon Neil McKay November 2,1997
|
14 |
+
|
15 |
+
7 Frank W.Smith Fran Carroll November 9,1997
|
16 |
+
|
17 |
+
8 Douglas Mackinnon Neil McKay November 16, 1997
|
18 |
+
|
19 |
+
9 Douglas Mackinnon Neil McKay November 23,1997
|
20 |
+
10 November 30,1997
|
21 |
+
John Reardon Simon J. Sharkey
|
22 |
+
11 John Reardon Simon J. Sharkey January 4, 1998
|
23 |
+
|
24 |
+
12 Ken Horn David Humphries January 11, 1998
|
25 |
+
|
26 |
+
13 John Reardon Simon J. Sharkey January 18, 1998
|
27 |
+
|
28 |
+
14 Ken Horn Neil McKay January 25, 1998
|
29 |
+
|
30 |
+
15 Frank W.Smith Dave Humphries February1,1998
|
31 |
+
16 February 8, 1998
|
32 |
+
Douglas MacKinnon Neil McKay
|
33 |
+
17 Graham Moore Simon J. Sharkey February 15,1998
|
34 |
+
|
35 |
+
18 John Reardon Simon J. Sharkey February 22,1998
|
36 |
+
|
37 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1734.txt
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Language 2001 census[1] (total p1991 censuslndian Cen1991 censuslndian Cen
|
3 |
+
opulation1,004.59millsus [2] (total populati sus [2] (total populati
|
4 |
+
ion) on 838.14million) on 838.14million)
|
5 |
+
Speakers Speakers Percentage
|
6 |
+
Hindi 422,048,642 337,272,114 40.0% 336 M
|
7 |
+
Bengali 230,000,000 200,595,738 28.30% 320M
|
8 |
+
Punjabi 130,000,000 100,017,615 20.87% 113 M
|
9 |
+
Telugu 70,002,856 65,595,738 8.30% 70 M
|
10 |
+
Marathi 71,936,894 62,481,681 7.45% 68.0 M
|
11 |
+
Tamil 60,793,814 53,006,368 6.32% 66.0 M
|
12 |
+
|
13 |
+
Urdu 51,536,111 43,406,932 5.18% 60.3 M
|
14 |
+
Gujarati 46,091,617 40,673,814 4.85% 46.1 M
|
15 |
+
Kannada 37,924,011 32,753,676 3.91% 40.3 M
|
16 |
+
Malayalam 33,066,392 30,377,176 3.62% 35.7 M
|
17 |
+
Oriya 33,017,446 28,061,313 3.35% 32.3M
|
18 |
+
Sindhi 25,535.485 25,122,848 0.248% 32.3 M
|
19 |
+
Nepali 23,017,446 28,061,313 3.35% 32.3M
|
20 |
+
Sinhalese 19,017,446 28,061,313 3.35% 32.3M
|
21 |
+
Assamese 13,168,484 13,079,696 1.56% 15.4M
|
22 |
+
Maithili 12,179,122 1.18%
|
23 |
+
Bhili/Bhilodi 9,582,957 5,572,308 0.665%
|
24 |
+
Santali 6,469,600 5,216,325 0.622%
|
25 |
+
|
26 |
+
Kashmiri 5,527,698 0.54%
|
27 |
+
Condi 2,713,790 2,124,852 0.253%
|
28 |
+
Konkani 2,489,015 1,760,607 0.210%
|
29 |
+
Dogri 2,282,589[dubious-di 0.22%
|
30 |
+
scuss]
|
31 |
+
Khandeshi 2,075,258 0.21%
|
32 |
+
Kurukh 1,751,489 0.17% 1,426,618 0.170%
|
33 |
+
Tulu 1,722,768 0.17% 1,552,259 0.185%
|
34 |
+
Meitei (Manipuri) 1,466,705** 0.14% 1,270,216 0.151%
|
35 |
+
Bodo 1,350,478 0.13% 1,221,881 0.146%
|
36 |
+
Khasi 1,128,575 0.112%
|
37 |
+
Mundari 1,061,352 0.105%
|
38 |
+
Ho 1,042,724 0.103%
|
39 |
+
|
40 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1737.txt
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Pick # Player Position Nationality NHL team College/junior/
|
3 |
+
club team
|
4 |
+
148 Dan McFall Defence United States
|
5 |
+
Winnipeg JetsBuffalo Jr. Sabr
|
6 |
+
es (NAJHL)
|
7 |
+
149 Rick Zombo Defence United States Detroit Red Wi Austin Maveri
|
8 |
+
ngs cks (USHL)
|
9 |
+
150 Tony Arima Left Wing Finland Colorado Rocki Jokerit (Finlan
|
10 |
+
es d)
|
11 |
+
|
12 |
+
151 Denis Dore Right Wing Canada Hartford Whal Chicoutimi Sa
|
13 |
+
ers gueneens (QM
|
14 |
+
JHL)
|
15 |
+
152 Gaetan Duche Left Wing Canada Washington C Quebec Remp
|
16 |
+
sne apitals arts (QMJHL)
|
17 |
+
|
18 |
+
153 Richard Turme Defence Canada Toronto Maple Shawinigan Ca
|
19 |
+
1 Leafs taractes (QMJ
|
20 |
+
HL)
|
21 |
+
154 Mitch Lamour Centre Canada Pittsburgh Pen Oshawa Gener
|
22 |
+
eux guins als (OMJHL)
|
23 |
+
|
24 |
+
155 Mike Sturgeon Defence Canada Edmonton Oil Kelowna Buck
|
25 |
+
ers aroos (BCJHL)
|
26 |
+
156 Ari Lahteenma Right Wing Finland New York Ran HIFK (Finland)
|
27 |
+
ki gers
|
28 |
+
157 Petri Skriko Finland Vancouver Can Saipa (Finlan
|
29 |
+
Right Wing
|
30 |
+
ucks d)
|
31 |
+
158 Andre Cote Right Wing Canada Quebec Nordi Quebec Remp
|
32 |
+
ques arts (QMJHL)
|
33 |
+
159 Johan Mellstro Left Wing Sweden Chicago Black Falun (Swede
|
34 |
+
m Hawks n)
|
35 |
+
|
36 |
+
160 Kari Kanervo Centre Finland Minnesota Nor TPS (Finland)
|
37 |
+
th Stars
|
38 |
+
161 Armel Parisee Defence Canada Boston Bruins Chicoutimi Sa
|
39 |
+
gueneens (QM
|
40 |
+
JHL)
|
41 |
+
|
42 |
+
162 Dale DeGray Defence Canada Calgary Flame Oshawa Gener
|
43 |
+
s als (OMJHL)
|
44 |
+
163 Steve Taylor Left Wing United States Philadelphia F Providence Col
|
45 |
+
lyers lege (ECAC)
|
46 |
+
164 Gates Orlando Centre Canada Buffalo Sabres Providence Col
|
47 |
+
|
48 |
+
lege (ECAC)
|
49 |
+
165 Dan Brennan Left Wing Canada Los Angeles Ki University of
|
50 |
+
ngs North Dakota
|
51 |
+
(WCHA)
|
52 |
+
166 Paul Gess Left Wing United States Montreal Cana Bloomington J
|
53 |
+
diens efferson High
|
54 |
+
School (USHS-
|
55 |
+
|
56 |
+
MN)
|
57 |
+
167 Alain Vigneaul Defence Canada St. Louis Blues Trois-Rivieres
|
58 |
+
t Draveurs (QMJ
|
59 |
+
HL)
|
60 |
+
168 Bill Dowd Defence Canada New York Islan Ottawa 67's (O
|
61 |
+
|
62 |
+
ders MJHL)
|
63 |
+
|
64 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1740.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Round Pick Name Position College
|
3 |
+
1 9 S
|
4 |
+
Brian Urlacher New Mexico
|
5 |
+
2 39 Mike Brown S Nebraska
|
6 |
+
|
7 |
+
3 69 Dez White WR Georgia Tech
|
8 |
+
|
9 |
+
3 87 Dustin Lyman TE Wake Forest
|
10 |
+
4 125 Reggie Austin DB Wake Forest
|
11 |
+
|
12 |
+
6 170 FrankMurphy WR Kansas State
|
13 |
+
6 174 Paul Edinger K Michigan State
|
14 |
+
|
15 |
+
7 223 James Cotton DE Ohio State
|
16 |
+
|
17 |
+
7 254 Michael Green S Northwestern State
|
18 |
+
|
19 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1742.txt
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Rank Nation Gold Silver Bronze Total
|
3 |
+
|
4 |
+
1 France 14 7 7 28
|
5 |
+
|
6 |
+
2 Italy 12 8 10 30
|
7 |
+
3 Slovenia 5 4 3 12
|
8 |
+
|
9 |
+
4 Spain 4 14 6 24
|
10 |
+
|
11 |
+
5 Greece 3 4 9 16
|
12 |
+
6 Tunisia 3 O 0 3
|
13 |
+
|
14 |
+
7 Algeria 2 2 4
|
15 |
+
|
16 |
+
8 Croatia 0 3 3 6
|
17 |
+
|
18 |
+
9 Egypt 0 1 2 3
|
19 |
+
Total Total 43 41 42 126
|
20 |
+
|
21 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1753.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Position Player Transferred From Date
|
3 |
+
|
4 |
+
GK Fajar Sarib Geylang United 1 January 2010
|
5 |
+
|
6 |
+
GK Hafez Mawasi Balestier Khalsa 1 January 2010
|
7 |
+
|
8 |
+
DF Winston Yap Sengkang Punggol 1 January 2010
|
9 |
+
|
10 |
+
DF Kazuki Yoshino Albirex Niigata (s) 1 January 2010
|
11 |
+
|
12 |
+
DF Sahairi Ramri Balestier Khalsa 1 January 2010
|
13 |
+
|
14 |
+
|
15 |
+
MF Syed Karim SAFFC 1 January 2010
|
16 |
+
|
17 |
+
MF Mohd Noor Ali Geylang United 1 January 2010
|
18 |
+
|
19 |
+
MF Guntur Djafril SAFFC 1 January 2010
|
20 |
+
|
21 |
+
MF Sazali Salleh Sengkang Punggol 1 January 2010
|
22 |
+
|
23 |
+
FW Laakkad Abdelhadi Free Transfer 1 January 2010
|
24 |
+
|
25 |
+
FW Rizawan Abdullah Balestier Khalsa 1 January 2010
|
26 |
+
|
27 |
+
MF Rachid Lajane Raja Al Hoceima 26 February 2010
|
28 |
+
|
29 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1775.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Competition Venue Position Notes
|
3 |
+
1999 World Youth Championships Bydgoszcz, Poland 12th
|
4 |
+
|
5 |
+
2000 World Junior Championships Santiago, Chile 5th
|
6 |
+
2001 European Junior Championshi Grosseto, Italy 2nd 61.97 m
|
7 |
+
ps
|
8 |
+
2001 World Championships Edmonton, Canada 23rd 61.26 m
|
9 |
+
2002 63.91 m
|
10 |
+
World Junior Championships Kingston, Jamaica 2nd
|
11 |
+
2002 European Championships Munich, Germany 26th 60.28 m
|
12 |
+
2006 European Championships Gothenburg, Sweden 26th 62.39 m
|
13 |
+
2007 World Student Games Bangkok, Thailand 5th 64.95m
|
14 |
+
|
15 |
+
2007 World Championships Osaka, Japan 13th 68.15m
|
16 |
+
2008 Olympic Games Beijing, PR China 8th 71.00 m
|
17 |
+
2008 World Athletics Final Stuttgart, Germany 2nd 71.40 m
|
18 |
+
|
19 |
+
2009 World Student Games Belgrade, Serbia 2nd 72.85m
|
20 |
+
2009 World Championships Berlin, Germany 3rd 74.79 m
|
21 |
+
2009 World Athletics Final Thessaloniki, Greece 3rd 70.45 m
|
22 |
+
Helsinki, Finland
|
23 |
+
2012 European Championships 2nd 73.34 m
|
24 |
+
|
25 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-178.txt
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Pick # Player Position Nationality NHL team College/junior/
|
3 |
+
club team
|
4 |
+
148 Dan McFall Defence United States
|
5 |
+
Winnipeg JetsBuffalo Jr. Sabr
|
6 |
+
es (NAJHL)
|
7 |
+
149 Rick Zombo Defence United States Detroit Red Wi Austin Maveri
|
8 |
+
ngs cks (USHL)
|
9 |
+
150 Tony Arima Left Wing Finland Colorado Rocki Jokerit (Finlan
|
10 |
+
es d)
|
11 |
+
|
12 |
+
151 Denis Dore Right Wing Canada Hartford Whal Chicoutimi Sa
|
13 |
+
ers gueneens (QM
|
14 |
+
JHL)
|
15 |
+
152 Gaetan Duche Left Wing Canada Washington C Quebec Remp
|
16 |
+
sne apitals arts (QMJHL)
|
17 |
+
|
18 |
+
153 Richard Turme Defence Canada Toronto Maple Shawinigan Ca
|
19 |
+
1 Leafs taractes (QMJ
|
20 |
+
HL)
|
21 |
+
154 Mitch Lamour Centre Canada Pittsburgh Pen Oshawa Gener
|
22 |
+
eux guins als (OMJHL)
|
23 |
+
|
24 |
+
155 Mike Sturgeon Defence Canada Edmonton Oil Kelowna Buck
|
25 |
+
ers aroos (BCJHL)
|
26 |
+
156 Ari Lahteenma Right Wing Finland New York Ran HIFK (Finland)
|
27 |
+
ki gers
|
28 |
+
157 Petri Skriko Finland Vancouver Can Saipa (Finlan
|
29 |
+
Right Wing
|
30 |
+
ucks d)
|
31 |
+
158 Andre Cote Right Wing Canada Quebec Nordi Quebec Remp
|
32 |
+
ques arts (QMJHL)
|
33 |
+
159 Johan Mellstro Left Wing Sweden Chicago Black Falun (Swede
|
34 |
+
m Hawks n)
|
35 |
+
|
36 |
+
160 Kari Kanervo Centre Finland Minnesota Nor TPS (Finland)
|
37 |
+
th Stars
|
38 |
+
161 Armel Parisee Defence Canada Boston Bruins Chicoutimi Sa
|
39 |
+
gueneens (QM
|
40 |
+
JHL)
|
41 |
+
|
42 |
+
162 Dale DeGray Defence Canada Calgary Flame Oshawa Gener
|
43 |
+
s als (OMJHL)
|
44 |
+
163 Steve Taylor Left Wing United States Philadelphia F Providence Col
|
45 |
+
lyers lege (ECAC)
|
46 |
+
164 Gates Orlando Centre Canada Buffalo Sabres Providence Col
|
47 |
+
|
48 |
+
lege (ECAC)
|
49 |
+
165 Dan Brennan Left Wing Canada Los Angeles Ki University of
|
50 |
+
ngs North Dakota
|
51 |
+
(WCHA)
|
52 |
+
166 Paul Gess Left Wing United States Montreal Cana Bloomington J
|
53 |
+
diens efferson High
|
54 |
+
School (USHS-
|
55 |
+
|
56 |
+
MN)
|
57 |
+
167 Alain Vigneaul Defence Canada St. Louis Blues Trois-Rivieres
|
58 |
+
t Draveurs (QMJ
|
59 |
+
HL)
|
60 |
+
168 Bill Dowd Defence Canada New York Islan Ottawa 67's (O
|
61 |
+
|
62 |
+
ders MJHL)
|
63 |
+
|
64 |
+
```
|
dataset_tablevqa_vwtq_syn_2d_text/nu-1789.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```page
|
2 |
+
Year Car Start Qual Rank Finish Laps Led Retired
|
3 |
+
|
4 |
+
1926 31 12 102.789 13 11 142 0 Flagged
|
5 |
+
1927 27 27 107.765 22 3 200 0 Running
|
6 |
+
|
7 |
+
1928 8 4 117.031 4 10 200 33 Running
|
8 |
+
1929 23 11 112.146 15 17 91 0 Supercharge
|
9 |
+
r
|
10 |
+
|
11 |
+
1930 9 20 100.033 18 20 79 0 Valve
|
12 |
+
1931 37 19 111.725 6 18 167 0 Crash T4
|
13 |
+
|
14 |
+
1932 25 20 108.896 34 13 184 0 Flagged
|
15 |
+
113.578
|
16 |
+
1933 34 12 15 7 200 0 Running
|
17 |
+
1934 8 7 113.733 13 17 94 0 Rod
|
18 |
+
|
19 |
+
1935 44 6 115.459 11 21 102 0 Magneto
|
20 |
+
1937 38 7 118.788 16 8 200 0 Running
|
21 |
+
|
22 |
+
1938 17 4 122.499 6 17 130 0 Rod
|
23 |
+
1939 62 27 121.749 24 11 200 0
|
24 |
+
Running
|
25 |
+
Totals Totals Totals Totals Totals Totals 1989 33
|
26 |
+
|
27 |
+
```
|