forked from wcmac/sippycup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geo880.py
1767 lines (1765 loc) · 161 KB
/
geo880.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from example import Example
geo880_train_examples = [
Example(input='what is the highest point in florida ?',
denotation=('/place/walton_county',)),
Example(input='what are the high points of states surrounding mississippi ?',
denotation=('/place/cheaha_mountain', '/place/clingmans_dome', '/place/driskill_mountain', '/place/magazine_mountain')),
Example(input='what state has the shortest river ?',
denotation=('/state/delaware', '/state/new_jersey', '/state/new_york', '/state/pennsylvania')),
Example(input='what is the tallest mountain in the united states ?',
denotation=('/mountain/mckinley',)),
Example(input='what is the capital of maine ?',
denotation=('/city/augusta_me',)),
Example(input='what are the populations of states through which the mississippi river run ?',
denotation=(11400000, 2286000, 2364000, 2520000, 2913000, 4076000, 4206000, 4591000, 4700000, 4916000)),
Example(input='name all the lakes of us ?',
denotation=('/lake/becharof', '/lake/champlain', '/lake/erie', '/lake/flathead', '/lake/great_salt_lake', '/lake/huron', '/lake/iliamna', '/lake/lake_of_the_woods', '/lake/michigan', '/lake/mille_lacs', '/lake/naknek', '/lake/okeechobee', '/lake/ontario', '/lake/pontchartrain', '/lake/rainy', '/lake/red', '/lake/salton_sea', '/lake/st._clair', '/lake/superior', '/lake/tahoe', '/lake/teshekpuk', '/lake/winnebago')),
Example(input='which states border states through which the mississippi traverses ?',
denotation=('/state/alabama', '/state/arkansas', '/state/georgia', '/state/illinois', '/state/indiana', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/louisiana', '/state/michigan', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/nebraska', '/state/north_carolina', '/state/north_dakota', '/state/ohio', '/state/oklahoma', '/state/south_dakota', '/state/tennessee', '/state/texas', '/state/virginia', '/state/west_virginia', '/state/wisconsin')),
Example(input='what is the highest mountain in alaska ?',
denotation=('/mountain/mckinley',)),
Example(input='what is the population of illinois ?',
denotation=(11400000,)),
Example(input='name all the rivers in colorado ?',
denotation=('/river/arkansas', '/river/canadian', '/river/colorado', '/river/green', '/river/north_platte', '/river/republican', '/river/rio_grande', '/river/san_juan', '/river/smoky_hill', '/river/south_platte')),
Example(input='in which state does the highest point in usa exist ?',
denotation=('/state/alaska',)),
Example(input='which state is the city denver located in ?',
denotation=('/state/colorado',)),
Example(input='what is the lowest point in texas ?',
denotation=('/place/gulf_of_mexico',)),
Example(input='how many states have a city called rochester ?',
denotation=(2,)),
Example(input='which capitals are in the states that border texas ?',
denotation=('/city/baton_rouge_la', '/city/little_rock_ar', '/city/oklahoma_city_ok', '/city/santa_fe_nm')),
Example(input='how many people live in austin ?',
denotation=(345496,)),
Example(input='what states have rivers named colorado ?',
denotation=('/state/arizona', '/state/california', '/state/colorado', '/state/nevada', '/state/utah')),
Example(input='what is the size of texas ?',
denotation=(691026957754.4172,)),
Example(input='what is the shortest river in the usa ?',
denotation=('/river/delaware',)),
Example(input='what are the major cities of the us ?',
denotation=('/city/abilene_tx', '/city/abingdon_pa', '/city/alameda_ca', '/city/albany_ga', '/city/albany_ny', '/city/alexandria_va', '/city/alhambra_ca', '/city/allentown_pa', '/city/altoona_pa', '/city/amarillo_tx', '/city/anderson_in', '/city/ann_arbor_mi', '/city/appleton_wi', '/city/arlington_heights_il', '/city/arvada_co', '/city/aurora_il', '/city/bakersfield_ca', '/city/bayonne_nj', '/city/beaumont_tx', '/city/bellevue_wa', '/city/berkeley_ca', '/city/bethesda_md', '/city/bethlehem_pa', '/city/billings_mt', '/city/bloomington_mn', '/city/boise_id', '/city/boulder_co', '/city/bridgeport_ct', '/city/bristol_ct', '/city/bristol_township_pa', '/city/brockton_ma', '/city/brownsville_tx', '/city/buena_park_ca', '/city/burbank_ca', '/city/cambridge_ma', '/city/camden_nj', '/city/canton_oh', '/city/carson_ca', '/city/casper_wy', '/city/cedar_rapids_ia', '/city/champaign_il', '/city/charleston_sc', '/city/charleston_wv', '/city/cheektowaga_ny', '/city/cherry_hill_nj', '/city/chesapeake_va', '/city/chula_vista_ca', '/city/cicero_il', '/city/citrus_heights_ca', '/city/clearwater_fl', '/city/clifton_nj', '/city/clinton_mi', '/city/columbia_mo', '/city/columbia_sc', '/city/compton_ca', '/city/concord_ca', '/city/costa_mesa_ca', '/city/cranston_ri', '/city/daly_city_ca', '/city/danbury_ct', '/city/davenport_ia', '/city/dearborn_heights_mi', '/city/dearborn_mi', '/city/decatur_il', '/city/downey_ca', '/city/dubuque_ia', '/city/duluth_mn', '/city/dundalk_md', '/city/durham_nc', '/city/east_los_angeles_ca', '/city/east_orange_nj', '/city/edison_nj', '/city/el_cajon_ca', '/city/el_monte_ca', '/city/elgin_il', '/city/elizabeth_nj', '/city/elyria_oh', '/city/erie_pa', '/city/escondido_ca', '/city/euclid_oh', '/city/eugene_or', '/city/evanston_il', '/city/evansville_in', '/city/fairfield_ca', '/city/fall_river_ma', '/city/fargo_nd', '/city/farmington_hills_mi', '/city/fayetteville_nc', '/city/fort_collins_co', '/city/fort_smith_ar', '/city/framingham_ma', '/city/fremont_ca', '/city/fullerton_ca', '/city/gainesville_fl', '/city/garden_grove_ca', '/city/garland_tx', '/city/glendale_az', '/city/glendale_ca', '/city/grand_prairie_tx', '/city/great_falls_mt', '/city/green_bay_wi', '/city/greenville_sc', '/city/greenwich_ct', '/city/hamilton_oh', '/city/hammond_in', '/city/hampton_va', '/city/hartford_ct', '/city/hayward_ca', '/city/high_point_nc', '/city/hollywood_fl', '/city/huntington_wv', '/city/huntsville_al', '/city/independence_mo', '/city/inglewood_ca', '/city/irondequoit_ny', '/city/irvine_ca', '/city/irving_tx', '/city/irvington_nj', '/city/joliet_il', '/city/kalamazoo_mi', '/city/kendall_fl', '/city/kenner_la', '/city/kenosha_wi', '/city/kettering_oh', '/city/koolaupoko_hi', '/city/lafayette_la', '/city/lake_charles_la', '/city/lakewood_ca', '/city/lakewood_co', '/city/lakewood_oh', '/city/lansing_mi', '/city/laredo_tx', '/city/largo_fl', '/city/lawrence_ma', '/city/lawton_ok', '/city/levittown_ny', '/city/livonia_mi', '/city/longview_tx', '/city/lorain_oh', '/city/lowell_ma', '/city/lower_merion_pa', '/city/lynchburg_va', '/city/lynn_ma', '/city/macon_ga', '/city/manchester_nh', '/city/mcallen_tx', '/city/medford_ma', '/city/meriden_ct', '/city/mesquite_tx', '/city/miami_beach_fl', '/city/middletown_nj', '/city/midland_tx', '/city/modesto_ca', '/city/monroe_la', '/city/mount_vernon_ny', '/city/mountain_view_ca', '/city/muncie_in', '/city/nashua_nh', '/city/new_bedford_ma', '/city/new_britain_ct', '/city/new_haven_ct', '/city/new_rochelle_ny', '/city/newport_beach_ca', '/city/newport_news_va', '/city/newton_ma', '/city/niagara_falls_ny', '/city/norman_ok', '/city/north_charleston_sc', '/city/north_little_rock_ar', '/city/norwalk_ca', '/city/norwalk_ct', '/city/oak_lawn_il', '/city/oceanside_ca', '/city/odessa_tx', '/city/ogden_ut', '/city/ontario_ca', '/city/orange_ca', '/city/orlando_fl', '/city/overland_park_ks', '/city/oxnard_ca', '/city/parma_oh', '/city/pasadena_ca', '/city/pasadena_tx', '/city/paterson_nj', '/city/pawtucket_ri', '/city/penn_hills_pa', '/city/pensacola_fl', '/city/peoria_il', '/city/plano_tx', '/city/pomona_ca', '/city/pontiac_mi', '/city/port_arthur_tx', '/city/portland_me', '/city/portsmouth_va', '/city/provo_ut', '/city/pueblo_co', '/city/quincy_ma', '/city/racine_wi', '/city/raleigh_nc', '/city/reading_pa', '/city/redford_mi', '/city/redondo_beach_ca', '/city/reno_nv', '/city/richardson_tx', '/city/richmond_ca', '/city/roanoke_va', '/city/rochester_mn', '/city/rockford_il', '/city/royal_oak_mi', '/city/saginaw_mi', '/city/salem_or', '/city/salinas_ca', '/city/san_angelo_tx', '/city/san_bernardino_ca', '/city/san_leandro_ca', '/city/san_mateo_ca', '/city/santa_barbara_ca', '/city/santa_clara_ca', '/city/santa_monica_ca', '/city/santa_rosa_ca', '/city/savannah_ga', '/city/schenectady_ny', '/city/scotts_valley_ca', '/city/scottsdale_az', '/city/scranton_pa', '/city/silver_spring_md', '/city/simi_valley_ca', '/city/sioux_city_ia', '/city/sioux_falls_sd', '/city/skokie_il', '/city/somerville_ma', '/city/south_bend_in', '/city/south_gate_ca', '/city/southfield_mi', '/city/springfield_il', '/city/springfield_mo', '/city/springfield_oh', '/city/st._clair_shores_mi', '/city/st._joseph_mo', '/city/stamford_ct', '/city/sterling_heights_mi', '/city/stockton_ca', '/city/sunnyvale_ca', '/city/tallahassee_fl', '/city/taylor_mi', '/city/tempe_az', '/city/terre_haute_in', '/city/thousand_oaks_ca', '/city/topeka_ks', '/city/torrance_ca', '/city/trenton_nj', '/city/troy_mi', '/city/tuscaloosa_al', '/city/tyler_tx', '/city/upper_darby_pa', '/city/utica_ny', '/city/vallejo_ca', '/city/ventura_ca', '/city/waco_tx', '/city/waltham_ma', '/city/warwick_ri', '/city/waterbury_ct', '/city/waterford_mi', '/city/waterloo_ia', '/city/waukegan_il', '/city/west_allis_wi', '/city/west_covina_ca', '/city/west_hartford_ct', '/city/west_palm_beach_fl', '/city/west_valley_ut', '/city/westland_mi', '/city/westminster_ca', '/city/whittier_ca', '/city/wichita_falls_tx', '/city/wilmington_de', '/city/winston-salem_nc', '/city/woodbridge_nj', '/city/wyoming_mi', '/city/youngstown_oh')),
Example(input='which state border kentucky ?',
denotation=('/state/illinois', '/state/indiana', '/state/missouri', '/state/ohio', '/state/tennessee', '/state/virginia', '/state/west_virginia')),
Example(input='what is the population of oregon ?',
denotation=(2633000,)),
Example(input='what states have a city named austin ?',
denotation=('/state/texas',)),
Example(input='what is the highest elevation in south carolina ?',
denotation=('/place/sassafras_mountain',)),
Example(input='how many people live in austin texas ?',
denotation=(345496,)),
Example(input='what are the rivers in the state of texas ?',
denotation=('/river/canadian', '/river/pecos', '/river/red', '/river/rio_grande', '/river/washita')),
Example(input='what is the lowest point of colorado ?',
denotation=('/place/arkansas_river',)),
Example(input='what is the population of atlanta ?',
denotation=(425022,)),
Example(input='what rivers are in utah ?',
denotation=('/river/colorado', '/river/green', '/river/san_juan')),
Example(input='what river runs through the most states ?',
denotation=('/river/mississippi',)),
Example(input='what is the population of sacramento ?',
denotation=(275741,)),
Example(input='could you tell me what is the highest point in the state of oregon ?',
denotation=('/place/mount_hood',)),
Example(input='which states does the mississippi river run through ?',
denotation=('/state/arkansas', '/state/illinois', '/state/iowa', '/state/kentucky', '/state/louisiana', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/tennessee', '/state/wisconsin')),
Example(input='what are the major cities in the smallest state in the us ?',
denotation=()),
Example(input='how high is guadalupe peak ?',
denotation=(2667,)),
Example(input='what river runs through illinois ?',
denotation=('/river/mississippi', '/river/ohio', '/river/rock', '/river/wabash')),
Example(input='how long is the mississippi river ?',
denotation=(3778000,)),
Example(input='how high is the highest point in the largest state ?',
denotation=(6194,)),
Example(input='what is the area of south carolina ?',
denotation=(80582300076.88397,)),
Example(input='what are the states through which the longest river runs ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='where is new orleans ?',
denotation=('/country/usa', '/state/louisiana')),
Example(input='in what state is mount mckinley ?',
denotation=('/state/alaska',)),
Example(input='what state has highest elevation ?',
denotation=('/state/alaska',)),
Example(input='what is the size of california ?',
denotation=(409218121433.088,)),
Example(input='what is the smallest state that borders texas ?',
denotation=('/state/louisiana',)),
Example(input='how many citizens in alabama ?',
denotation=(3894000,)),
Example(input='in which state is rochester ?',
denotation=('/state/minnesota', '/state/new_york')),
Example(input='how many states in the us does the shortest river run through ?',
denotation=(4,)),
Example(input='what is the biggest state in continental us ?',
denotation=('/state/alaska',)),
Example(input='what is the area of the largest state ?',
denotation=(1530682973208.5762,)),
Example(input='where is mount whitney ?',
denotation=('/country/usa', '/state/california')),
Example(input='how many states does iowa border ?',
denotation=(6,)),
Example(input='which states does the longest river cross ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='what river flows through kansas ?',
denotation=('/river/arkansas', '/river/cimarron', '/river/neosho', '/river/republican', '/river/smoky_hill')),
Example(input='what is the population of austin texas ?',
denotation=(345496,)),
Example(input='what is the capital of vermont ?',
denotation=('/city/montpelier_vt',)),
Example(input='which states border colorado ?',
denotation=('/state/arizona', '/state/kansas', '/state/nebraska', '/state/new_mexico', '/state/oklahoma', '/state/utah', '/state/wyoming')),
Example(input='how long is the mississippi ?',
denotation=(3778000,)),
Example(input='what state has the largest population density ?',
denotation=('/state/new_jersey',)),
Example(input='what states border georgia ?',
denotation=('/state/alabama', '/state/florida', '/state/north_carolina', '/state/south_carolina', '/state/tennessee')),
Example(input='what is the capital of pennsylvania ?',
denotation=('/city/harrisburg_pa',)),
Example(input='what are the biggest rivers in texas ?',
denotation=('/river/rio_grande',)),
Example(input='what is the longest river in the united states ?',
denotation=('/river/missouri',)),
Example(input='what is the capital of utah ?',
denotation=('/city/salt_lake_city_ut',)),
Example(input='what state has the smallest population density ?',
denotation=('/state/alaska',)),
Example(input='which capitals are not major cities ?',
denotation=('/city/annapolis_md', '/city/atlanta_ga', '/city/augusta_me', '/city/austin_tx', '/city/baton_rouge_la', '/city/bismarck_nd', '/city/boston_ma', '/city/carson_city_nv', '/city/cheyenne_wy', '/city/columbus_oh', '/city/concord_nh', '/city/denver_co', '/city/des_moines_ia', '/city/dover_de', '/city/frankfort_ky', '/city/harrisburg_pa', '/city/helena_mt', '/city/honolulu_hi', '/city/indianapolis_in', '/city/jackson_ms', '/city/jefferson_city_mo', '/city/juneau_ak', '/city/lincoln_ne', '/city/little_rock_ar', '/city/madison_wi', '/city/montgomery_al', '/city/montpelier_vt', '/city/nashville_tn', '/city/oklahoma_city_ok', '/city/olympia_wa', '/city/phoenix_az', '/city/pierre_sd', '/city/providence_ri', '/city/richmond_va', '/city/sacramento_ca', '/city/salt_lake_city_ut', '/city/santa_fe_nm', '/city/st._paul_mn', '/city/washington_dc')),
Example(input='what is the biggest city in nebraska ?',
denotation=('/city/omaha_ne',)),
Example(input='what is the population of texas ?',
denotation=(14229000,)),
Example(input='what is the shortest river in the united states ?',
denotation=('/river/delaware',)),
Example(input='what is the population of rhode island ?',
denotation=(947200,)),
Example(input='what is the state with the lowest point ?',
denotation=('/state/california',)),
Example(input='what is the longest river in new york ?',
denotation=('/river/allegheny',)),
Example(input='what is the longest river that runs through a state that borders tennessee ?',
denotation=('/river/missouri',)),
Example(input='how many major cities are in arizona ?',
denotation=(3,)),
Example(input='what are the neighboring states for michigan ?',
denotation=('/state/indiana', '/state/ohio', '/state/wisconsin')),
Example(input='what state that borders texas is the largest ?',
denotation=('/state/new_mexico',)),
Example(input='what is the shortest river ?',
denotation=('/river/delaware',)),
Example(input='how many states border the state that borders the most states ?',
denotation=(14,)),
Example(input='which state is the largest city in montana in ?',
denotation=('/state/montana',)),
Example(input='what is the population of washington dc ?',
denotation=(638333,)),
Example(input='what is the most populous city in texas ?',
denotation=('/city/houston_tx',)),
Example(input='what is the capital of hawaii ?',
denotation=('/city/honolulu_hi',)),
Example(input='what is capital of iowa ?',
denotation=('/city/des_moines_ia',)),
Example(input='where is san diego ?',
denotation=('/country/usa', '/state/california')),
Example(input='what are the major cities in delaware ?',
denotation=('/city/wilmington_de',)),
Example(input='what is the lowest point in louisiana ?',
denotation=('/place/new_orleans',)),
Example(input='which state has the highest peak in the country ?',
denotation=('/state/alaska',)),
Example(input='what texas city has the largest population ?',
denotation=('/city/houston_tx',)),
Example(input='what capital is the largest in the us ?',
denotation=('/city/phoenix_az',)),
Example(input='what is the population of new york ?',
denotation=(17558000,)),
Example(input='what is the population of the capital of the smallest state ?',
denotation=(638333,)),
Example(input='what is the area of alaska ?',
denotation=(1530682973208.5762,)),
Example(input='what is the population of california ?',
denotation=(23670000,)),
Example(input='which state has the longest river ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='what is the capital of texas ?',
denotation=('/city/austin_tx',)),
Example(input='give me the cities which are in texas ?',
denotation=('/city/abilene_tx', '/city/amarillo_tx', '/city/arlington_tx', '/city/austin_tx', '/city/beaumont_tx', '/city/brownsville_tx', '/city/corpus_christi_tx', '/city/dallas_tx', '/city/el_paso_tx', '/city/fort_worth_tx', '/city/garland_tx', '/city/grand_prairie_tx', '/city/houston_tx', '/city/irving_tx', '/city/laredo_tx', '/city/longview_tx', '/city/lubbock_tx', '/city/mcallen_tx', '/city/mesquite_tx', '/city/midland_tx', '/city/odessa_tx', '/city/pasadena_tx', '/city/plano_tx', '/city/port_arthur_tx', '/city/richardson_tx', '/city/san_angelo_tx', '/city/san_antonio_tx', '/city/tyler_tx', '/city/waco_tx', '/city/wichita_falls_tx')),
Example(input='what states border kentucky ?',
denotation=('/state/illinois', '/state/indiana', '/state/missouri', '/state/ohio', '/state/tennessee', '/state/virginia', '/state/west_virginia')),
Example(input='how high is the highest point of florida ?',
denotation=(105,)),
Example(input='what are the major cities in north carolina ?',
denotation=('/city/durham_nc', '/city/fayetteville_nc', '/city/high_point_nc', '/city/raleigh_nc', '/city/winston-salem_nc')),
Example(input='what is the highest point in the state with capital des moines ?',
denotation=('/place/ocheyedan_mound',)),
Example(input='what is the lowest point in california ?',
denotation=('/place/death_valley',)),
Example(input='what is the biggest city in wyoming ?',
denotation=('/city/casper_wy',)),
Example(input='what is the largest state bordering texas ?',
denotation=('/state/new_mexico',)),
Example(input='what is the smallest city in hawaii ?',
denotation=('/city/koolaupoko_hi',)),
Example(input='what is the area of the states ?',
denotation=(105567915377.29536, 106966508956.8768, 109142098969.55905, 117347181303.10349, 123542432863.0272, 127168416217.4976, 13001740313.88672, 133902385304.3712, 136414673771.39713, 137787367469.8752, 145435602359.69742, 145816330611.9168, 151514304454.656, 152550299698.7904, 1530682973208.5762, 16759813061.984257, 176479199850.18472, 177838943608.1111, 180522171290.41922, 181169668318.0032, 183112159400.75522, 199729523116.671, 200206080928.9728, 20168237415.18643, 213156021480.6528, 21455461506.023426, 214969013157.888, 218594996512.3584, 219889990567.5264, 24032499675.807743, 24900145692.770306, 251417915834.64655, 253324147083.85382, 269358763474.944, 27091275634.11456, 2848986921.3696003, 286193686192.128, 295258644578.304, 3139065589.727232, 314942554216.8576, 380728252219.392, 409218121433.088, 5293935697.526784, 62677712270.1312, 691026957754.4172, 80582300076.88397, 86155954490.32704, 93757569594.16321)),
Example(input='what is the area of idaho ?',
denotation=(214969013157.888,)),
Example(input='what state has the most rivers running through it ?',
denotation=('/state/colorado',)),
Example(input='what is the population of springfield missouri ?',
denotation=(133116,)),
Example(input='what is the most populated state bordering oklahoma ?',
denotation=('/state/texas',)),
Example(input='what is the number of neighboring states for kentucky ?',
denotation=(7,)),
Example(input='what is the average population per square km in pennsylvania ?',
denotation=(0.00010109318236931746,)),
Example(input='what state has the highest population density ?',
denotation=('/state/new_jersey',)),
Example(input='what is the tallest mountain in america ?',
denotation=('/mountain/mckinley',)),
Example(input='what is the highest point of the state with the largest area ?',
denotation=('/place/mount_mckinley',)),
Example(input='what are the states ?',
denotation=('/state/alabama', '/state/alaska', '/state/arizona', '/state/arkansas', '/state/california', '/state/colorado', '/state/connecticut', '/state/delaware', '/state/district_of_columbia', '/state/florida', '/state/georgia', '/state/hawaii', '/state/idaho', '/state/illinois', '/state/indiana', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/louisiana', '/state/maine', '/state/maryland', '/state/massachusetts', '/state/michigan', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/montana', '/state/nebraska', '/state/nevada', '/state/new_hampshire', '/state/new_jersey', '/state/new_mexico', '/state/new_york', '/state/north_carolina', '/state/north_dakota', '/state/ohio', '/state/oklahoma', '/state/oregon', '/state/pennsylvania', '/state/rhode_island', '/state/south_carolina', '/state/south_dakota', '/state/tennessee', '/state/texas', '/state/utah', '/state/vermont', '/state/virginia', '/state/washington', '/state/west_virginia', '/state/wisconsin', '/state/wyoming')),
Example(input='how many rivers in washington ?',
denotation=(2,)),
Example(input='what are the populations of the states through which the mississippi river run ?',
denotation=(11400000, 2286000, 2364000, 2520000, 2913000, 4076000, 4206000, 4591000, 4700000, 4916000)),
Example(input='what is the biggest river in illinois ?',
denotation=('/river/mississippi',)),
Example(input='what is the capital of michigan ?',
denotation=('/city/lansing_mi',)),
Example(input='what is the total population of the states that border texas ?',
denotation=(10820000,)),
Example(input='what states border rhode island ?',
denotation=('/state/connecticut', '/state/massachusetts')),
Example(input='what is the biggest city in oregon ?',
denotation=('/city/portland_or',)),
Example(input='what is the lowest point in wisconsin ?',
denotation=('/place/lake_michigan',)),
Example(input='what are the rivers in the state of indiana ?',
denotation=('/river/ohio', '/river/wabash')),
Example(input='what is the population of austin ?',
denotation=(345496,)),
Example(input='what is the smallest city in arkansas ?',
denotation=('/city/north_little_rock_ar',)),
Example(input='give me the longest river that passes through the us ?',
denotation=('/river/missouri',)),
Example(input='how long is the missouri river ?',
denotation=(3968000,)),
Example(input='which state has the largest city ?',
denotation=('/state/new_york',)),
Example(input='what is the lowest elevation in pennsylvania ?',
denotation=('/place/delaware_river',)),
Example(input='what is the longest river in the state with the highest point ?',
denotation=()),
Example(input='what states does the colorado river run through ?',
denotation=('/state/arizona', '/state/california', '/state/colorado', '/state/nevada', '/state/utah')),
Example(input='what are the states that the potomac run through ?',
denotation=('/state/district_of_columbia', '/state/maryland', '/state/virginia', '/state/west_virginia')),
Example(input='what is the biggest city in the usa ?',
denotation=('/city/new_york_ny',)),
Example(input='what state has no rivers ?',
denotation=('/state/alaska', '/state/hawaii', '/state/maine', '/state/rhode_island')),
Example(input='what is the highest point in rhode island ?',
denotation=('/place/jerimoth_hill',)),
Example(input='name the states which have no surrounding states ?',
denotation=('/state/alaska', '/state/hawaii')),
Example(input='what is the population of atlanta ga ?',
denotation=(425022,)),
Example(input='how many square kilometers in the us ?',
denotation=(9826675000000,)),
Example(input='what is the population of idaho ?',
denotation=(944000,)),
Example(input='what is the adjacent state of california ?',
denotation=('/state/arizona', '/state/nevada', '/state/oregon')),
Example(input='what is the smallest state through which the longest river runs ?',
denotation=('/state/iowa',)),
Example(input='what are the names of the major cities in illinois ?',
denotation=('/city/arlington_heights_il', '/city/aurora_il', '/city/champaign_il', '/city/cicero_il', '/city/decatur_il', '/city/elgin_il', '/city/evanston_il', '/city/joliet_il', '/city/oak_lawn_il', '/city/peoria_il', '/city/rockford_il', '/city/skokie_il', '/city/springfield_il', '/city/waukegan_il')),
Example(input='how many states does the colorado river run through ?',
denotation=(5,)),
Example(input='how many states does the colorado river flow through ?',
denotation=(5,)),
Example(input='what are the major cities in kansas ?',
denotation=('/city/overland_park_ks', '/city/topeka_ks')),
Example(input='which states border texas ?',
denotation=('/state/arkansas', '/state/louisiana', '/state/new_mexico', '/state/oklahoma')),
Example(input='how many people live in new york ?',
denotation=(17558000,)),
Example(input='what are the largest cities in the states that border the largest state ?',
denotation=()),
Example(input='which states have points that are higher than the highest point in texas ?',
denotation=('/state/alaska', '/state/arizona', '/state/california', '/state/colorado', '/state/hawaii', '/state/idaho', '/state/montana', '/state/nevada', '/state/new_mexico', '/state/oregon', '/state/utah', '/state/washington', '/state/wyoming')),
Example(input='what is the river that cross over ohio ?',
denotation=('/river/ohio', '/river/wabash')),
Example(input='what is the largest city in michigan ?',
denotation=('/city/detroit_mi',)),
Example(input='how many rivers are in the state with the highest point ?',
denotation=(0,)),
Example(input='what cities are located in pennsylvania ?',
denotation=('/city/abingdon_pa', '/city/allentown_pa', '/city/altoona_pa', '/city/bethlehem_pa', '/city/bristol_township_pa', '/city/erie_pa', '/city/lower_merion_pa', '/city/penn_hills_pa', '/city/philadelphia_pa', '/city/pittsburgh_pa', '/city/reading_pa', '/city/scranton_pa', '/city/upper_darby_pa')),
Example(input='what is the state with the lowest population ?',
denotation=('/state/alaska',)),
Example(input='what is the highest point in each state whose lowest point is sea level ?',
denotation=()),
Example(input='give me the cities in usa ?',
denotation=('/city/aberdeen_sd', '/city/abilene_tx', '/city/abingdon_pa', '/city/akron_oh', '/city/alameda_ca', '/city/albany_ga', '/city/albany_ny', '/city/albuquerque_nm', '/city/alexandria_va', '/city/alhambra_ca', '/city/allentown_pa', '/city/altoona_pa', '/city/amarillo_tx', '/city/anaheim_ca', '/city/anchorage_ak', '/city/anderson_in', '/city/ann_arbor_mi', '/city/appleton_wi', '/city/arlington_heights_il', '/city/arlington_tx', '/city/arlington_va', '/city/arvada_co', '/city/atlanta_ga', '/city/auburn_me', '/city/aurora_co', '/city/aurora_il', '/city/austin_tx', '/city/bakersfield_ca', '/city/baltimore_md', '/city/bangor_me', '/city/baton_rouge_la', '/city/bayonne_nj', '/city/beaumont_tx', '/city/bellevue_wa', '/city/bennington_vt', '/city/berkeley_ca', '/city/bethesda_md', '/city/bethlehem_pa', '/city/billings_mt', '/city/biloxi_ms', '/city/birmingham_al', '/city/bismarck_nd', '/city/bloomington_mn', '/city/boise_id', '/city/boston_ma', '/city/boulder_co', '/city/bridgeport_ct', '/city/bristol_ct', '/city/bristol_township_pa', '/city/brockton_ma', '/city/brookside_de', '/city/brownsville_tx', '/city/buena_park_ca', '/city/buffalo_ny', '/city/burbank_ca', '/city/burlington_vt', '/city/butte_mt', '/city/cambridge_ma', '/city/camden_nj', '/city/canton_oh', '/city/carson_ca', '/city/casper_wy', '/city/cedar_rapids_ia', '/city/champaign_il', '/city/charleston_sc', '/city/charleston_wv', '/city/charlotte_nc', '/city/chattanooga_tn', '/city/cheektowaga_ny', '/city/cherry_hill_nj', '/city/chesapeake_va', '/city/cheyenne_wy', '/city/chicago_il', '/city/chula_vista_ca', '/city/cicero_il', '/city/cincinnati_oh', '/city/citrus_heights_ca', '/city/clearwater_fl', '/city/cleveland_oh', '/city/clifton_nj', '/city/clinton_mi', '/city/colorado_springs_co', '/city/columbia_mo', '/city/columbia_sc', '/city/columbus_ga', '/city/columbus_oh', '/city/compton_ca', '/city/concord_ca', '/city/concord_nh', '/city/corpus_christi_tx', '/city/costa_mesa_ca', '/city/covington_ky', '/city/cranston_ri', '/city/dallas_tx', '/city/daly_city_ca', '/city/danbury_ct', '/city/davenport_ia', '/city/dayton_oh', '/city/dearborn_heights_mi', '/city/dearborn_mi', '/city/decatur_il', '/city/denver_co', '/city/des_moines_ia', '/city/detroit_mi', '/city/dover_de', '/city/downey_ca', '/city/dubuque_ia', '/city/duluth_mn', '/city/dundalk_md', '/city/durham_nc', '/city/duval_circle_dc', '/city/east_los_angeles_ca', '/city/east_orange_nj', '/city/edison_nj', '/city/el_cajon_ca', '/city/el_monte_ca', '/city/el_paso_tx', '/city/elgin_il', '/city/elizabeth_nj', '/city/elyria_oh', '/city/erie_pa', '/city/escondido_ca', '/city/essex_vt', '/city/euclid_oh', '/city/eugene_or', '/city/evanston_il', '/city/evansville_in', '/city/ewa_hi', '/city/fairbanks_ak', '/city/fairfield_ca', '/city/fall_river_ma', '/city/fargo_nd', '/city/farmington_hills_mi', '/city/fayetteville_nc', '/city/flint_mi', '/city/fort_collins_co', '/city/fort_lauderdale_fl', '/city/fort_smith_ar', '/city/fort_wayne_in', '/city/fort_worth_tx', '/city/framingham_ma', '/city/fremont_ca', '/city/fresno_ca', '/city/fullerton_ca', '/city/gainesville_fl', '/city/garden_grove_ca', '/city/garland_tx', '/city/gary_in', '/city/georgetown_dc', '/city/glendale_az', '/city/glendale_ca', '/city/grand_forks_nd', '/city/grand_island_ne', '/city/grand_prairie_tx', '/city/grand_rapids_mi', '/city/great_falls_mt', '/city/green_bay_wi', '/city/greensboro_nc', '/city/greenville_sc', '/city/greenwich_ct', '/city/hamilton_oh', '/city/hammond_in', '/city/hampton_va', '/city/hartford_ct', '/city/hattiesburg_ms', '/city/hayward_ca', '/city/high_point_nc', '/city/hollywood_fl', '/city/honolulu_hi', '/city/houston_tx', '/city/huntington_beach_ca', '/city/huntington_wv', '/city/huntsville_al', '/city/idaho_falls_id', '/city/independence_mo', '/city/indianapolis_in', '/city/inglewood_ca', '/city/irondequoit_ny', '/city/irvine_ca', '/city/irving_tx', '/city/irvington_nj', '/city/jackson_ms', '/city/jacksonville_fl', '/city/jersey_city_nj', '/city/joliet_il', '/city/juneau_ak', '/city/kalamazoo_mi', '/city/kansas_city_ks', '/city/kansas_city_mo', '/city/kendall_fl', '/city/kenner_la', '/city/kenosha_wi', '/city/kettering_oh', '/city/knoxville_tn', '/city/koolaupoko_hi', '/city/lafayette_la', '/city/lake_charles_la', '/city/lakewood_ca', '/city/lakewood_co', '/city/lakewood_oh', '/city/lansing_mi', '/city/laramie_wy', '/city/laredo_tx', '/city/largo_fl', '/city/las_cruces_nm', '/city/las_vegas_nv', '/city/lawrence_ma', '/city/lawton_ok', '/city/levittown_ny', '/city/lewiston_id', '/city/lewiston_me', '/city/lexington_ky', '/city/lincoln_ne', '/city/little_rock_ar', '/city/livonia_mi', '/city/long_beach_ca', '/city/longview_tx', '/city/lorain_oh', '/city/los_angeles_ca', '/city/louisville_ky', '/city/lowell_ma', '/city/lower_merion_pa', '/city/lubbock_tx', '/city/lynchburg_va', '/city/lynn_ma', '/city/macon_ga', '/city/madison_wi', '/city/manchester_nh', '/city/mcallen_tx', '/city/medford_ma', '/city/memphis_tn', '/city/meriden_ct', '/city/meridian_ms', '/city/mesa_az', '/city/mesquite_tx', '/city/metairie_la', '/city/miami_beach_fl', '/city/miami_fl', '/city/middletown_nj', '/city/midland_tx', '/city/milwaukee_wi', '/city/minneapolis_mn', '/city/minot_nd', '/city/missoula_mt', '/city/mobile_al', '/city/modesto_ca', '/city/monroe_la', '/city/montgomery_al', '/city/mount_vernon_ny', '/city/mountain_view_ca', '/city/muncie_in', '/city/nashua_nh', '/city/nashville_tn', '/city/new_bedford_ma', '/city/new_britain_ct', '/city/new_haven_ct', '/city/new_orleans_la', '/city/new_rochelle_ny', '/city/new_york_ny', '/city/newark_de', '/city/newark_nj', '/city/newport_beach_ca', '/city/newport_news_va', '/city/newton_ma', '/city/niagara_falls_ny', '/city/norfolk_va', '/city/norman_ok', '/city/north_charleston_sc', '/city/north_little_rock_ar', '/city/north_platte_ne', '/city/norwalk_ca', '/city/norwalk_ct', '/city/oak_lawn_il', '/city/oakland_ca', '/city/oceanside_ca', '/city/odessa_tx', '/city/ogden_ut', '/city/oklahoma_city_ok', '/city/omaha_ne', '/city/ontario_ca', '/city/orange_ca', '/city/orlando_fl', '/city/overland_park_ks', '/city/owensboro_ky', '/city/oxnard_ca', '/city/parkersburg_wv', '/city/parma_oh', '/city/pasadena_ca', '/city/pasadena_tx', '/city/paterson_nj', '/city/pawtucket_ri', '/city/penn_hills_pa', '/city/pensacola_fl', '/city/peoria_il', '/city/philadelphia_pa', '/city/phoenix_az', '/city/pine_bluff_ar', '/city/pittsburgh_pa', '/city/plano_tx', '/city/pocatello_id', '/city/pomona_ca', '/city/pontiac_mi', '/city/port_arthur_tx', '/city/portland_me', '/city/portland_or', '/city/portsmouth_nh', '/city/portsmouth_va', '/city/providence_ri', '/city/provo_ut', '/city/pueblo_co', '/city/quincy_ma', '/city/racine_wi', '/city/raleigh_nc', '/city/rapid_city_sd', '/city/reading_pa', '/city/redford_mi', '/city/redondo_beach_ca', '/city/reno_nv', '/city/richardson_tx', '/city/richmond_ca', '/city/richmond_va', '/city/riverside_ca', '/city/roanoke_va', '/city/rochester_mn', '/city/rochester_ny', '/city/rock_springs_wy', '/city/rockford_il', '/city/roswell_nm', '/city/royal_oak_mi', '/city/rutland_vt', '/city/sacramento_ca', '/city/saginaw_mi', '/city/salem_or', '/city/salinas_ca', '/city/salt_lake_city_ut', '/city/san_angelo_tx', '/city/san_antonio_tx', '/city/san_bernardino_ca', '/city/san_diego_ca', '/city/san_francisco_ca', '/city/san_jose_ca', '/city/san_leandro_ca', '/city/san_mateo_ca', '/city/santa_ana_ca', '/city/santa_barbara_ca', '/city/santa_clara_ca', '/city/santa_fe_nm', '/city/santa_monica_ca', '/city/santa_rosa_ca', '/city/savannah_ga', '/city/schenectady_ny', '/city/scotts_valley_ca', '/city/scottsdale_az', '/city/scranton_pa', '/city/seattle_wa', '/city/shreveport_la', '/city/silver_spring_md', '/city/simi_valley_ca', '/city/sioux_city_ia', '/city/sioux_falls_sd', '/city/sitka_ak', '/city/skokie_il', '/city/somerville_ma', '/city/south_bend_in', '/city/south_gate_ca', '/city/southfield_mi', '/city/sparks_nv', '/city/spokane_wa', '/city/springfield_il', '/city/springfield_ma', '/city/springfield_mo', '/city/springfield_oh', '/city/springfield_or', '/city/st._clair_shores_mi', '/city/st._joseph_mo', '/city/st._louis_mo', '/city/st._paul_mn', '/city/st._petersburg_fl', '/city/stamford_ct', '/city/sterling_heights_mi', '/city/stockton_ca', '/city/sunnyvale_ca', '/city/sunrise_manor_nv', '/city/syracuse_ny', '/city/tacoma_wa', '/city/tallahassee_fl', '/city/tampa_fl', '/city/taylor_mi', '/city/tempe_az', '/city/tenleytown_dc', '/city/terre_haute_in', '/city/thousand_oaks_ca', '/city/toledo_oh', '/city/topeka_ks', '/city/torrance_ca', '/city/trenton_nj', '/city/troy_mi', '/city/tucson_az', '/city/tulsa_ok', '/city/tuscaloosa_al', '/city/tyler_tx', '/city/upper_darby_pa', '/city/utica_ny', '/city/vallejo_ca', '/city/ventura_ca', '/city/virginia_beach_va', '/city/waco_tx', '/city/wahiawa_hi', '/city/waltham_ma', '/city/warren_mi', '/city/warwick_ri', '/city/washington_dc', '/city/waterbury_ct', '/city/waterford_mi', '/city/waterloo_ia', '/city/watertown_sd', '/city/waukegan_il', '/city/west_allis_wi', '/city/west_covina_ca', '/city/west_hartford_ct', '/city/west_palm_beach_fl', '/city/west_valley_ut', '/city/westland_mi', '/city/westminster_ca', '/city/wheeling_wv', '/city/whittier_ca', '/city/wichita_falls_tx', '/city/wichita_ks', '/city/wilmington_de', '/city/winston-salem_nc', '/city/woodbridge_nj', '/city/worcester_ma', '/city/wyoming_mi', '/city/yonkers_ny', '/city/youngstown_oh')),
Example(input='how many states does the missouri river run through ?',
denotation=(6,)),
Example(input='what state has the city with the largest population ?',
denotation=('/state/new_york',)),
Example(input='which is the shortest river ?',
denotation=('/river/delaware',)),
Example(input='how many states border alaska ?',
denotation=(0,)),
Example(input='what is the population of dallas ?',
denotation=(904078,)),
Example(input='where is san jose ?',
denotation=('/country/usa', '/state/california')),
Example(input='what states border states that border colorado ?',
denotation=('/state/arizona', '/state/arkansas', '/state/california', '/state/colorado', '/state/idaho', '/state/iowa', '/state/kansas', '/state/missouri', '/state/montana', '/state/nebraska', '/state/nevada', '/state/new_mexico', '/state/oklahoma', '/state/south_dakota', '/state/texas', '/state/utah', '/state/wyoming')),
Example(input='what rivers flow through the state with the largest population ?',
denotation=('/river/colorado',)),
Example(input='whats the largest city ?',
denotation=('/city/new_york_ny',)),
Example(input='what is the capital of the alabama state ?',
denotation=('/city/montgomery_al',)),
Example(input='what states border arkansas ?',
denotation=('/state/louisiana', '/state/mississippi', '/state/missouri', '/state/oklahoma', '/state/tennessee', '/state/texas')),
Example(input='what is the population of denver ?',
denotation=(492365,)),
Example(input='what is the longest river in america ?',
denotation=('/river/missouri',)),
Example(input='where is massachusetts ?',
denotation=('/country/usa',)),
Example(input='what state has the smallest area ?',
denotation=('/state/district_of_columbia',)),
Example(input='what major rivers run through illinois ?',
denotation=('/river/rock',)),
Example(input='how many cities does the usa have ?',
denotation=(435,)),
Example(input='how many people live in california ?',
denotation=(23670000,)),
Example(input='what are the major rivers in the us ?',
denotation=('/river/allegheny', '/river/bighorn', '/river/chattahoochee', '/river/clark_fork', '/river/connecticut', '/river/delaware', '/river/hudson', '/river/neosho', '/river/niobrara', '/river/potomac', '/river/powder', '/river/republican', '/river/roanoke', '/river/rock', '/river/san_juan', '/river/south_platte', '/river/st._francis', '/river/tombigbee', '/river/wateree_catawba')),
Example(input='how many states does the mississippi river run through ?',
denotation=(10,)),
Example(input='what is the area of texas ?',
denotation=(691026957754.4172,)),
Example(input='what is the length of the river that traverses the most states ?',
denotation=(3778000,)),
Example(input='what is the length of the longest river in the usa ?',
denotation=(3968000,)),
Example(input='can you tell me the capital of texas ?',
denotation=('/city/austin_tx',)),
Example(input='what is the largest city in minnesota by population ?',
denotation=('/city/minneapolis_mn',)),
Example(input='what is the smallest state in the usa ?',
denotation=('/state/district_of_columbia',)),
Example(input='what states neighbor maine ?',
denotation=('/state/new_hampshire',)),
Example(input='what states high point are higher than that of colorado ?',
denotation=('/state/alaska', '/state/california')),
Example(input='what is the highest mountain in texas ?',
denotation=()),
Example(input='what are the major cities in texas ?',
denotation=('/city/abilene_tx', '/city/amarillo_tx', '/city/beaumont_tx', '/city/brownsville_tx', '/city/garland_tx', '/city/grand_prairie_tx', '/city/irving_tx', '/city/laredo_tx', '/city/longview_tx', '/city/mcallen_tx', '/city/mesquite_tx', '/city/midland_tx', '/city/odessa_tx', '/city/pasadena_tx', '/city/plano_tx', '/city/port_arthur_tx', '/city/richardson_tx', '/city/san_angelo_tx', '/city/tyler_tx', '/city/waco_tx', '/city/wichita_falls_tx')),
Example(input='what are the states that border the state with the greatest population ?',
denotation=('/state/arizona', '/state/nevada', '/state/oregon')),
Example(input='what rivers run through colorado ?',
denotation=('/river/arkansas', '/river/canadian', '/river/colorado', '/river/green', '/river/north_platte', '/river/republican', '/river/rio_grande', '/river/san_juan', '/river/smoky_hill', '/river/south_platte')),
Example(input='how many rivers are there in us ?',
denotation=(46,)),
Example(input='how many rivers are in new york ?',
denotation=(3,)),
Example(input='which rivers are in alaska ?',
denotation=()),
Example(input='what is the longest river flowing through new york ?',
denotation=('/river/allegheny',)),
Example(input='what rivers run through west virginia ?',
denotation=('/river/ohio', '/river/potomac')),
Example(input='what are the capitals of the states that border texas ?',
denotation=('/city/baton_rouge_la', '/city/little_rock_ar', '/city/oklahoma_city_ok', '/city/santa_fe_nm')),
Example(input='what is the area of california ?',
denotation=(409218121433.088,)),
Example(input='how many states have a city named springfield ?',
denotation=(5,)),
Example(input='what is the biggest city in texas ?',
denotation=('/city/houston_tx',)),
Example(input='how many cities named austin are there in the usa ?',
denotation=(1,)),
Example(input='what are the major cities in the largest state ?',
denotation=()),
Example(input='which states does the colorado river run through ?',
denotation=('/state/arizona', '/state/california', '/state/colorado', '/state/nevada', '/state/utah')),
Example(input='what is the largest city in wisconsin ?',
denotation=('/city/milwaukee_wi',)),
Example(input='how big is alaska ?',
denotation=(1530682973208.5762,)),
Example(input='what state contains the highest point in the us ?',
denotation=('/state/alaska',)),
Example(input='how big is north dakota ?',
denotation=(183112159400.75522,)),
Example(input='which rivers flow through alaska ?',
denotation=()),
Example(input='what is the highest point in the us ?',
denotation=('/place/mount_mckinley',)),
Example(input='what is the shortest river in texas ?',
denotation=('/river/pecos', '/river/washita')),
Example(input='what are the major cities in the states through which the major river in virginia runs ?',
denotation=('/city/alexandria_va', '/city/bethesda_md', '/city/charleston_wv', '/city/chesapeake_va', '/city/dundalk_md', '/city/durham_nc', '/city/fayetteville_nc', '/city/hampton_va', '/city/high_point_nc', '/city/huntington_wv', '/city/lynchburg_va', '/city/newport_news_va', '/city/portsmouth_va', '/city/raleigh_nc', '/city/roanoke_va', '/city/silver_spring_md', '/city/winston-salem_nc')),
Example(input='what rivers are in oregon ?',
denotation=('/river/columbia', '/river/snake')),
Example(input='what is the lowest point in the united states ?',
denotation=('/place/death_valley',)),
Example(input='how many states have cities or towns named springfield ?',
denotation=(5,)),
Example(input='what is the population of south dakota ?',
denotation=(690767,)),
Example(input='what is the capital of the state with the highest point ?',
denotation=('/city/juneau_ak',)),
Example(input='what state has the highest elevation ?',
denotation=('/state/alaska',)),
Example(input='what states are next to texas ?',
denotation=('/state/arkansas', '/state/louisiana', '/state/new_mexico', '/state/oklahoma')),
Example(input='what is the longest river that passes the states that border the state that borders the most states ?',
denotation=('/river/missouri',)),
Example(input='which states border hawaii ?',
denotation=()),
Example(input='how many major cities are there in oregon ?',
denotation=(2,)),
Example(input='what is the population of springfield south dakota ?',
denotation=()),
Example(input='how many rivers run through texas ?',
denotation=(5,)),
Example(input='what state has the most major rivers running through it ?',
denotation=('/state/colorado', '/state/montana', '/state/nebraska', '/state/new_york', '/state/wyoming')),
Example(input='what are the lakes in states bordering texas ?',
denotation=('/lake/pontchartrain',)),
Example(input='people in boulder ?',
denotation=(76685,)),
Example(input='what rivers are in nevada ?',
denotation=('/river/colorado',)),
Example(input='where is fort wayne ?',
denotation=('/country/usa', '/state/indiana')),
Example(input='where is indianapolis ?',
denotation=('/country/usa', '/state/indiana')),
Example(input='what states border states that border states that border states that border texas ?',
denotation=('/state/alabama', '/state/arizona', '/state/arkansas', '/state/california', '/state/colorado', '/state/district_of_columbia', '/state/florida', '/state/georgia', '/state/idaho', '/state/illinois', '/state/indiana', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/louisiana', '/state/maryland', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/montana', '/state/nebraska', '/state/nevada', '/state/new_mexico', '/state/north_carolina', '/state/ohio', '/state/oklahoma', '/state/oregon', '/state/south_carolina', '/state/south_dakota', '/state/tennessee', '/state/texas', '/state/utah', '/state/virginia', '/state/washington', '/state/west_virginia', '/state/wisconsin', '/state/wyoming')),
Example(input='population of boulder ?',
denotation=(76685,)),
Example(input='what are the major cities of the united states ?',
denotation=('/city/abilene_tx', '/city/abingdon_pa', '/city/alameda_ca', '/city/albany_ga', '/city/albany_ny', '/city/alexandria_va', '/city/alhambra_ca', '/city/allentown_pa', '/city/altoona_pa', '/city/amarillo_tx', '/city/anderson_in', '/city/ann_arbor_mi', '/city/appleton_wi', '/city/arlington_heights_il', '/city/arvada_co', '/city/aurora_il', '/city/bakersfield_ca', '/city/bayonne_nj', '/city/beaumont_tx', '/city/bellevue_wa', '/city/berkeley_ca', '/city/bethesda_md', '/city/bethlehem_pa', '/city/billings_mt', '/city/bloomington_mn', '/city/boise_id', '/city/boulder_co', '/city/bridgeport_ct', '/city/bristol_ct', '/city/bristol_township_pa', '/city/brockton_ma', '/city/brownsville_tx', '/city/buena_park_ca', '/city/burbank_ca', '/city/cambridge_ma', '/city/camden_nj', '/city/canton_oh', '/city/carson_ca', '/city/casper_wy', '/city/cedar_rapids_ia', '/city/champaign_il', '/city/charleston_sc', '/city/charleston_wv', '/city/cheektowaga_ny', '/city/cherry_hill_nj', '/city/chesapeake_va', '/city/chula_vista_ca', '/city/cicero_il', '/city/citrus_heights_ca', '/city/clearwater_fl', '/city/clifton_nj', '/city/clinton_mi', '/city/columbia_mo', '/city/columbia_sc', '/city/compton_ca', '/city/concord_ca', '/city/costa_mesa_ca', '/city/cranston_ri', '/city/daly_city_ca', '/city/danbury_ct', '/city/davenport_ia', '/city/dearborn_heights_mi', '/city/dearborn_mi', '/city/decatur_il', '/city/downey_ca', '/city/dubuque_ia', '/city/duluth_mn', '/city/dundalk_md', '/city/durham_nc', '/city/east_los_angeles_ca', '/city/east_orange_nj', '/city/edison_nj', '/city/el_cajon_ca', '/city/el_monte_ca', '/city/elgin_il', '/city/elizabeth_nj', '/city/elyria_oh', '/city/erie_pa', '/city/escondido_ca', '/city/euclid_oh', '/city/eugene_or', '/city/evanston_il', '/city/evansville_in', '/city/fairfield_ca', '/city/fall_river_ma', '/city/fargo_nd', '/city/farmington_hills_mi', '/city/fayetteville_nc', '/city/fort_collins_co', '/city/fort_smith_ar', '/city/framingham_ma', '/city/fremont_ca', '/city/fullerton_ca', '/city/gainesville_fl', '/city/garden_grove_ca', '/city/garland_tx', '/city/glendale_az', '/city/glendale_ca', '/city/grand_prairie_tx', '/city/great_falls_mt', '/city/green_bay_wi', '/city/greenville_sc', '/city/greenwich_ct', '/city/hamilton_oh', '/city/hammond_in', '/city/hampton_va', '/city/hartford_ct', '/city/hayward_ca', '/city/high_point_nc', '/city/hollywood_fl', '/city/huntington_wv', '/city/huntsville_al', '/city/independence_mo', '/city/inglewood_ca', '/city/irondequoit_ny', '/city/irvine_ca', '/city/irving_tx', '/city/irvington_nj', '/city/joliet_il', '/city/kalamazoo_mi', '/city/kendall_fl', '/city/kenner_la', '/city/kenosha_wi', '/city/kettering_oh', '/city/koolaupoko_hi', '/city/lafayette_la', '/city/lake_charles_la', '/city/lakewood_ca', '/city/lakewood_co', '/city/lakewood_oh', '/city/lansing_mi', '/city/laredo_tx', '/city/largo_fl', '/city/lawrence_ma', '/city/lawton_ok', '/city/levittown_ny', '/city/livonia_mi', '/city/longview_tx', '/city/lorain_oh', '/city/lowell_ma', '/city/lower_merion_pa', '/city/lynchburg_va', '/city/lynn_ma', '/city/macon_ga', '/city/manchester_nh', '/city/mcallen_tx', '/city/medford_ma', '/city/meriden_ct', '/city/mesquite_tx', '/city/miami_beach_fl', '/city/middletown_nj', '/city/midland_tx', '/city/modesto_ca', '/city/monroe_la', '/city/mount_vernon_ny', '/city/mountain_view_ca', '/city/muncie_in', '/city/nashua_nh', '/city/new_bedford_ma', '/city/new_britain_ct', '/city/new_haven_ct', '/city/new_rochelle_ny', '/city/newport_beach_ca', '/city/newport_news_va', '/city/newton_ma', '/city/niagara_falls_ny', '/city/norman_ok', '/city/north_charleston_sc', '/city/north_little_rock_ar', '/city/norwalk_ca', '/city/norwalk_ct', '/city/oak_lawn_il', '/city/oceanside_ca', '/city/odessa_tx', '/city/ogden_ut', '/city/ontario_ca', '/city/orange_ca', '/city/orlando_fl', '/city/overland_park_ks', '/city/oxnard_ca', '/city/parma_oh', '/city/pasadena_ca', '/city/pasadena_tx', '/city/paterson_nj', '/city/pawtucket_ri', '/city/penn_hills_pa', '/city/pensacola_fl', '/city/peoria_il', '/city/plano_tx', '/city/pomona_ca', '/city/pontiac_mi', '/city/port_arthur_tx', '/city/portland_me', '/city/portsmouth_va', '/city/provo_ut', '/city/pueblo_co', '/city/quincy_ma', '/city/racine_wi', '/city/raleigh_nc', '/city/reading_pa', '/city/redford_mi', '/city/redondo_beach_ca', '/city/reno_nv', '/city/richardson_tx', '/city/richmond_ca', '/city/roanoke_va', '/city/rochester_mn', '/city/rockford_il', '/city/royal_oak_mi', '/city/saginaw_mi', '/city/salem_or', '/city/salinas_ca', '/city/san_angelo_tx', '/city/san_bernardino_ca', '/city/san_leandro_ca', '/city/san_mateo_ca', '/city/santa_barbara_ca', '/city/santa_clara_ca', '/city/santa_monica_ca', '/city/santa_rosa_ca', '/city/savannah_ga', '/city/schenectady_ny', '/city/scotts_valley_ca', '/city/scottsdale_az', '/city/scranton_pa', '/city/silver_spring_md', '/city/simi_valley_ca', '/city/sioux_city_ia', '/city/sioux_falls_sd', '/city/skokie_il', '/city/somerville_ma', '/city/south_bend_in', '/city/south_gate_ca', '/city/southfield_mi', '/city/springfield_il', '/city/springfield_mo', '/city/springfield_oh', '/city/st._clair_shores_mi', '/city/st._joseph_mo', '/city/stamford_ct', '/city/sterling_heights_mi', '/city/stockton_ca', '/city/sunnyvale_ca', '/city/tallahassee_fl', '/city/taylor_mi', '/city/tempe_az', '/city/terre_haute_in', '/city/thousand_oaks_ca', '/city/topeka_ks', '/city/torrance_ca', '/city/trenton_nj', '/city/troy_mi', '/city/tuscaloosa_al', '/city/tyler_tx', '/city/upper_darby_pa', '/city/utica_ny', '/city/vallejo_ca', '/city/ventura_ca', '/city/waco_tx', '/city/waltham_ma', '/city/warwick_ri', '/city/waterbury_ct', '/city/waterford_mi', '/city/waterloo_ia', '/city/waukegan_il', '/city/west_allis_wi', '/city/west_covina_ca', '/city/west_hartford_ct', '/city/west_palm_beach_fl', '/city/west_valley_ut', '/city/westland_mi', '/city/westminster_ca', '/city/whittier_ca', '/city/wichita_falls_tx', '/city/wilmington_de', '/city/winston-salem_nc', '/city/woodbridge_nj', '/city/wyoming_mi', '/city/youngstown_oh')),
Example(input='show major cities in colorado ?',
denotation=('/city/arvada_co', '/city/boulder_co', '/city/fort_collins_co', '/city/lakewood_co', '/city/pueblo_co')),
Example(input='what state is columbus the capital of ?',
denotation=('/state/ohio',)),
Example(input='what is the area of all the states combined ?',
denotation=(9505354784481.312,)),
Example(input='what is the average population per square km in the us ?',
denotation=(3.1332062981629085e-05,)),
Example(input='what is the largest state that borders california ?',
denotation=('/state/arizona',)),
Example(input='what is the population of montana ?',
denotation=(786700,)),
Example(input='what are the populations of all the major cities in montana ?',
denotation=(56725, 66842)),
Example(input='which rivers run through the state with the lowest elevation in the usa ?',
denotation=('/river/colorado',)),
Example(input='what rivers flow through the largest state ?',
denotation=()),
Example(input='what is the area of maine ?',
denotation=(86155954490.32704,)),
Example(input='what are major rivers in texas ?',
denotation=()),
Example(input='what is the population density of the state with the smallest population ?',
denotation=(2.624972035572838e-07,)),
Example(input='what is the highest point in wyoming ?',
denotation=('/place/gannett_peak',)),
Example(input='what states border delaware ?',
denotation=('/state/maryland', '/state/new_jersey', '/state/pennsylvania')),
Example(input='which state has the most rivers running through it ?',
denotation=('/state/colorado',)),
Example(input='what is largest capital ?',
denotation=('/city/phoenix_az',)),
Example(input='what is the state with the largest population density ?',
denotation=('/state/new_jersey',)),
Example(input='what states have towns named springfield ?',
denotation=('/state/illinois', '/state/massachusetts', '/state/missouri', '/state/ohio', '/state/oregon')),
Example(input='what is the smallest city in the largest state ?',
denotation=('/city/anchorage_ak',)),
Example(input='what mountains are in alaska ?',
denotation=('/mountain/alverstone', '/mountain/bear', '/mountain/blackburn', '/mountain/bona', '/mountain/browne_tower', '/mountain/churchill', '/mountain/east_buttress', '/mountain/fairweather', '/mountain/foraker', '/mountain/hubbard', '/mountain/hunter', '/mountain/kennedy', '/mountain/mckinley', '/mountain/sanford', '/mountain/south_buttress', '/mountain/st._elias', '/mountain/vancouver', '/mountain/wrangell')),
Example(input='what rivers flow through colorado ?',
denotation=('/river/arkansas', '/river/canadian', '/river/colorado', '/river/green', '/river/north_platte', '/river/republican', '/river/rio_grande', '/river/san_juan', '/river/smoky_hill', '/river/south_platte')),
Example(input='which state has the least population density ?',
denotation=('/state/alaska',)),
Example(input='how many inhabitants does montgomery have ?',
denotation=(177857,)),
Example(input='what city has the largest population ?',
denotation=('/city/new_york_ny',)),
Example(input='what is the largest state ?',
denotation=('/state/alaska',)),
Example(input='of the states washed by the mississippi river which has the lowest point ?',
denotation=('/state/louisiana',)),
Example(input='what is the area of the state with the smallest population density ?',
denotation=(1530682973208.5762,)),
Example(input='which state contains most rivers ?',
denotation=('/state/colorado',)),
Example(input='what is the longest river in mississippi ?',
denotation=('/river/mississippi',)),
Example(input='what is the capital of the largest state ?',
denotation=('/city/juneau_ak',)),
Example(input='what state has the largest population ?',
denotation=('/state/california',)),
Example(input='name the rivers in arkansas ?',
denotation=('/river/arkansas', '/river/mississippi', '/river/ouachita', '/river/red', '/river/st._francis', '/river/white')),
Example(input='what are the populations of states through which the mississippi run ?',
denotation=(11400000, 2286000, 2364000, 2520000, 2913000, 4076000, 4206000, 4591000, 4700000, 4916000)),
Example(input='what is the population of arizona ?',
denotation=(2718000,)),
Example(input='what state borders the state with the smallest population ?',
denotation=()),
Example(input='what is the total area of the usa ?',
denotation=(9826675000000,)),
Example(input='what is the population of seattle washington ?',
denotation=(493846,)),
Example(input='what is the size of the largest state in the usa ?',
denotation=(1530682973208.5762,)),
Example(input='what state has the capital salem ?',
denotation=('/state/oregon',)),
Example(input='which is the lowest point of the states that the mississippi runs through ?',
denotation=('/place/new_orleans',)),
Example(input='how many major cities are in texas ?',
denotation=(21,)),
Example(input='what is the capital city of the largest state in the us ?',
denotation=('/city/juneau_ak',)),
Example(input='what are the major cities in rhode island ?',
denotation=('/city/cranston_ri', '/city/pawtucket_ri', '/city/warwick_ri')),
Example(input='what state has the most people ?',
denotation=('/state/california',)),
Example(input='what is the largest city of kansas ?',
denotation=('/city/wichita_ks',)),
Example(input='what is the area of the state with the capital albany ?',
denotation=(127168416217.4976,)),
Example(input='what is the longest river that flows through colorado ?',
denotation=('/river/rio_grande',)),
Example(input='how many rivers does alaska have ?',
denotation=(0,)),
Example(input='how big is massachusetts ?',
denotation=(21455461506.023426,)),
Example(input='how large is the largest city in alaska ?',
denotation=(174431,)),
Example(input='how many cities are there in usa ?',
denotation=(435,)),
Example(input='what states capital is dover ?',
denotation=('/state/delaware',)),
Example(input='what states border new hampshire ?',
denotation=('/state/maine', '/state/massachusetts', '/state/vermont')),
Example(input='what is the shortest river in nebraska ?',
denotation=('/river/republican',)),
Example(input='how many states border hawaii ?',
denotation=(0,)),
Example(input='what state is dallas in ?',
denotation=('/state/texas',)),
Example(input='what city has the least population ?',
denotation=('/city/scotts_valley_ca',)),
Example(input='how many people stay in utah ?',
denotation=(1461000,)),
Example(input='what state has the sparsest population density ?',
denotation=('/state/alaska',)),
Example(input='what is the largest state that borders the state with the lowest point in the usa ?',
denotation=('/state/arizona',)),
Example(input='what is the largest city in texas ?',
denotation=('/city/houston_tx',)),
Example(input='what is the largest state in the us ?',
denotation=('/state/alaska',)),
Example(input='which state has the most people ?',
denotation=('/state/california',)),
Example(input='what rivers are in new mexico ?',
denotation=('/river/canadian', '/river/cimarron', '/river/gila', '/river/pecos', '/river/red', '/river/rio_grande', '/river/san_juan')),
Example(input='what is the area of maryland in square kilometers ?',
denotation=(27091275634.11456,)),
Example(input='how many states are there in united states ?',
denotation=(51,)),
Example(input='how many major cities are in states bordering nebraska ?',
denotation=(18,)),
Example(input='what is the population of the largest state ?',
denotation=(401800,)),
Example(input='what is the size of florida ?',
denotation=(177838943608.1111,)),
Example(input='how many rivers are in missouri ?',
denotation=(4,)),
Example(input='how many rivers are there in texas ?',
denotation=(5,)),
Example(input='what is the highest point in the state with the capital des moines ?',
denotation=('/place/ocheyedan_mound',)),
Example(input='what is the population of seattle ?',
denotation=(493846,)),
Example(input='what is the highest point in colorado ?',
denotation=('/place/mount_elbert',)),
Example(input='which states border arizona ?',
denotation=('/state/california', '/state/colorado', '/state/nevada', '/state/new_mexico', '/state/utah')),
Example(input='what rivers run through the state with the lowest point in the usa ?',
denotation=('/river/colorado',)),
Example(input='what is the population of minnesota ?',
denotation=(4076000,)),
Example(input='what state has the city with the most population ?',
denotation=('/state/new_york',)),
Example(input='which states have a major city named austin ?',
denotation=()),
Example(input='which states have points higher than the highest point in colorado ?',
denotation=('/state/alaska', '/state/california')),
Example(input='what is the highest point in the state with the smallest population ?',
denotation=('/place/mount_mckinley',)),
Example(input='where is new hampshire ?',
denotation=('/country/usa',)),
Example(input='which state borders florida ?',
denotation=('/state/alabama', '/state/georgia')),
Example(input='how many rivers in texas are longer than the red ?',
denotation=(1,)),
Example(input='how many rivers do not traverse the state with the capital albany ?',
denotation=(43,)),
Example(input='what are the populations of the states through which the mississippi run ?',
denotation=(11400000, 2286000, 2364000, 2520000, 2913000, 4076000, 4206000, 4591000, 4700000, 4916000)),
Example(input='through which states does the mississippi run ?',
denotation=('/state/arkansas', '/state/illinois', '/state/iowa', '/state/kentucky', '/state/louisiana', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/tennessee', '/state/wisconsin')),
Example(input='what states are next to the mississippi ?',
denotation=('/state/alabama', '/state/arkansas', '/state/louisiana', '/state/tennessee')),
Example(input='give me the cities in virginia ?',
denotation=('/city/alexandria_va', '/city/arlington_va', '/city/chesapeake_va', '/city/hampton_va', '/city/lynchburg_va', '/city/newport_news_va', '/city/norfolk_va', '/city/portsmouth_va', '/city/richmond_va', '/city/roanoke_va', '/city/virginia_beach_va')),
Example(input='what are the capital cities of the states which border texas ?',
denotation=('/city/baton_rouge_la', '/city/little_rock_ar', '/city/oklahoma_city_ok', '/city/santa_fe_nm')),
Example(input='what state that borders texas has the highest population ?',
denotation=('/state/louisiana',)),
Example(input='what state is the state with the most rivers ?',
denotation=('/state/colorado',)),
Example(input='what state has the least population density ?',
denotation=('/state/alaska',)),
Example(input='what are the major cities in ohio ?',
denotation=('/city/canton_oh', '/city/elyria_oh', '/city/euclid_oh', '/city/hamilton_oh', '/city/kettering_oh', '/city/lakewood_oh', '/city/lorain_oh', '/city/parma_oh', '/city/springfield_oh', '/city/youngstown_oh')),
Example(input='which states does the missouri river run through ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='what is the biggest city in arizona ?',
denotation=('/city/phoenix_az',)),
Example(input='how many people live in hawaii ?',
denotation=(964000,)),
Example(input='how many people live in the smallest state bordering wyoming ?',
denotation=(690767,)),
Example(input='what is the name of the state with the lowest point ?',
denotation=('/state/california',)),
Example(input='what rivers flow through missouri ?',
denotation=('/river/mississippi', '/river/missouri', '/river/st._francis', '/river/white')),
Example(input='what is the elevation of death valley ?',
denotation=(-85,)),
Example(input='what river flows through texas ?',
denotation=('/river/canadian', '/river/pecos', '/river/red', '/river/rio_grande', '/river/washita')),
Example(input='how high are the highest points of all the states ?',
denotation=(6194,)),
Example(input='what is the capital of new hampshire ?',
denotation=('/city/concord_nh',)),
Example(input='how long is the rio grande river ?',
denotation=(3033000,)),
Example(input='which state borders most states ?',
denotation=('/state/missouri', '/state/tennessee')),
Example(input='how many states does missouri border ?',
denotation=(8,)),
Example(input='where is austin ?',
denotation=('/country/usa', '/state/texas')),
Example(input='how high is the highest point of delaware ?',
denotation=(135,)),
Example(input='where is the highest point in montana ?',
denotation=('/place/granite_peak',)),
Example(input='what states border states that border the state with the largest population ?',
denotation=('/state/arizona', '/state/california', '/state/colorado', '/state/idaho', '/state/nevada', '/state/new_mexico', '/state/oregon', '/state/utah', '/state/washington')),
Example(input='what is the height of the highest mountain in texas ?',
denotation=()),
Example(input='what state has the city flint ?',
denotation=('/state/michigan',)),
Example(input='what is the state with the largest density in usa ?',
denotation=('/state/new_jersey',)),
Example(input='what cities in texas have the highest number of citizens ?',
denotation=('/city/houston_tx',)),
Example(input='what states border missouri ?',
denotation=('/state/arkansas', '/state/illinois', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/nebraska', '/state/oklahoma', '/state/tennessee')),
Example(input='give me the largest state ?',
denotation=('/state/alaska',)),
Example(input='which state has the sparsest population density ?',
denotation=('/state/alaska',)),
Example(input='which states border alabama ?',
denotation=('/state/florida', '/state/georgia', '/state/mississippi', '/state/tennessee')),
Example(input='what rivers flow through states that alabama borders ?',
denotation=('/river/chattahoochee', '/river/cumberland', '/river/mississippi', '/river/tennessee', '/river/tombigbee')),
Example(input='what are the major cities in wyoming ?',
denotation=('/city/casper_wy',)),
Example(input='what are the highest points of states surrounding mississippi ?',
denotation=('/place/clingmans_dome',)),
Example(input='through which states does the mississippi flow ?',
denotation=('/state/arkansas', '/state/illinois', '/state/iowa', '/state/kentucky', '/state/louisiana', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/tennessee', '/state/wisconsin')),
Example(input='where is scotts valley ?',
denotation=('/country/usa', '/state/california')),
Example(input='what are the major lakes in united states ?',
denotation=('/lake/becharof', '/lake/champlain', '/lake/flathead', '/lake/iliamna', '/lake/lake_of_the_woods', '/lake/mille_lacs', '/lake/naknek', '/lake/okeechobee', '/lake/pontchartrain', '/lake/rainy', '/lake/red', '/lake/salton_sea', '/lake/st._clair', '/lake/tahoe', '/lake/teshekpuk', '/lake/winnebago')),
Example(input='what is the largest city in missouri ?',
denotation=('/city/st._louis_mo',)),
Example(input='what states border alaska ?',
denotation=()),
Example(input='what state has the largest city ?',
denotation=('/state/new_york',)),
Example(input='what rivers run through maine ?',
denotation=()),
Example(input='give me the lakes in california ?',
denotation=('/lake/salton_sea', '/lake/tahoe')),
Example(input='what is the combined population of all 50 states ?',
denotation=(225195124,)),
Example(input='how high is the highest point of louisiana ?',
denotation=(163,)),
Example(input='what is the longest river in pennsylvania ?',
denotation=('/river/ohio',)),
Example(input='what is the capital of maryland ?',
denotation=('/city/annapolis_md',)),
Example(input='what state is the biggest ?',
denotation=('/state/alaska',)),
Example(input='which states border iowa ?',
denotation=('/state/illinois', '/state/minnesota', '/state/missouri', '/state/nebraska', '/state/south_dakota', '/state/wisconsin')),
Example(input='which states border alaska ?',
denotation=()),
Example(input='what is the largest state in usa ?',
denotation=('/state/alaska',)),
Example(input='what are the major cities in california ?',
denotation=('/city/alameda_ca', '/city/alhambra_ca', '/city/bakersfield_ca', '/city/berkeley_ca', '/city/buena_park_ca', '/city/burbank_ca', '/city/carson_ca', '/city/chula_vista_ca', '/city/citrus_heights_ca', '/city/compton_ca', '/city/concord_ca', '/city/costa_mesa_ca', '/city/daly_city_ca', '/city/downey_ca', '/city/east_los_angeles_ca', '/city/el_cajon_ca', '/city/el_monte_ca', '/city/escondido_ca', '/city/fairfield_ca', '/city/fremont_ca', '/city/fullerton_ca', '/city/garden_grove_ca', '/city/glendale_ca', '/city/hayward_ca', '/city/inglewood_ca', '/city/irvine_ca', '/city/lakewood_ca', '/city/modesto_ca', '/city/mountain_view_ca', '/city/newport_beach_ca', '/city/norwalk_ca', '/city/oceanside_ca', '/city/ontario_ca', '/city/orange_ca', '/city/oxnard_ca', '/city/pasadena_ca', '/city/pomona_ca', '/city/redondo_beach_ca', '/city/richmond_ca', '/city/salinas_ca', '/city/san_bernardino_ca', '/city/san_leandro_ca', '/city/san_mateo_ca', '/city/santa_barbara_ca', '/city/santa_clara_ca', '/city/santa_monica_ca', '/city/santa_rosa_ca', '/city/scotts_valley_ca', '/city/simi_valley_ca', '/city/south_gate_ca', '/city/stockton_ca', '/city/sunnyvale_ca', '/city/thousand_oaks_ca', '/city/torrance_ca', '/city/vallejo_ca', '/city/ventura_ca', '/city/west_covina_ca', '/city/westminster_ca', '/city/whittier_ca')),
Example(input='what is the largest state traversed by the mississippi river ?',
denotation=('/state/minnesota',)),
Example(input='which rivers run through states bordering new mexico ?',
denotation=('/river/arkansas', '/river/canadian', '/river/cimarron', '/river/colorado', '/river/gila', '/river/green', '/river/neosho', '/river/north_platte', '/river/pecos', '/river/red', '/river/republican', '/river/rio_grande', '/river/san_juan', '/river/smoky_hill', '/river/south_platte', '/river/washita')),
Example(input='what is the lowest point in the state of texas ?',
denotation=('/place/gulf_of_mexico',)),
Example(input='what is the smallest state bordering ohio ?',
denotation=('/state/west_virginia',)),
Example(input='how many states are next to major rivers ?',
denotation=(31,)),
Example(input='what is the lowest point of the us ?',
denotation=('/place/death_valley',)),
Example(input='which state has the greatest density ?',
denotation=('/state/new_jersey',)),
Example(input='how many states border the largest state ?',
denotation=(0,)),
Example(input='what is the longest river that does not run through texas ?',
denotation=('/river/missouri',)),
Example(input='give me all the states of usa ?',
denotation=('/state/alabama', '/state/alaska', '/state/arizona', '/state/arkansas', '/state/california', '/state/colorado', '/state/connecticut', '/state/delaware', '/state/district_of_columbia', '/state/florida', '/state/georgia', '/state/hawaii', '/state/idaho', '/state/illinois', '/state/indiana', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/louisiana', '/state/maine', '/state/maryland', '/state/massachusetts', '/state/michigan', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/montana', '/state/nebraska', '/state/nevada', '/state/new_hampshire', '/state/new_jersey', '/state/new_mexico', '/state/new_york', '/state/north_carolina', '/state/north_dakota', '/state/ohio', '/state/oklahoma', '/state/oregon', '/state/pennsylvania', '/state/rhode_island', '/state/south_carolina', '/state/south_dakota', '/state/tennessee', '/state/texas', '/state/utah', '/state/vermont', '/state/virginia', '/state/washington', '/state/west_virginia', '/state/wisconsin', '/state/wyoming')),
Example(input='what is the density of texas ?',
denotation=(2.0591092489704023e-05,)),
Example(input='what is the smallest city of the smallest state in the us ?',
denotation=('/city/washington_dc',)),
Example(input='what is the highest point in kansas ?',
denotation=('/place/mount_sunflower',)),
Example(input='what is the population in boston ?',
denotation=(562994,)),
Example(input='how many people are in the state of nevada ?',
denotation=(800500,)),
Example(input='what is the population density of texas ?',
denotation=(2.0591092489704023e-05,)),
Example(input='how many people live in washington dc ?',
denotation=(638333,)),
Example(input='give me the cities in texas ?',
denotation=('/city/abilene_tx', '/city/amarillo_tx', '/city/arlington_tx', '/city/austin_tx', '/city/beaumont_tx', '/city/brownsville_tx', '/city/corpus_christi_tx', '/city/dallas_tx', '/city/el_paso_tx', '/city/fort_worth_tx', '/city/garland_tx', '/city/grand_prairie_tx', '/city/houston_tx', '/city/irving_tx', '/city/laredo_tx', '/city/longview_tx', '/city/lubbock_tx', '/city/mcallen_tx', '/city/mesquite_tx', '/city/midland_tx', '/city/odessa_tx', '/city/pasadena_tx', '/city/plano_tx', '/city/port_arthur_tx', '/city/richardson_tx', '/city/san_angelo_tx', '/city/san_antonio_tx', '/city/tyler_tx', '/city/waco_tx', '/city/wichita_falls_tx')),
Example(input='how long is the shortest river in the usa ?',
denotation=(451000,)),
Example(input='how many states have major rivers ?',
denotation=(31,)),
Example(input='what is the population density of the smallest state ?',
denotation=(0.00022393925195461856,)),
Example(input='which states border michigan ?',
denotation=('/state/indiana', '/state/ohio', '/state/wisconsin')),
Example(input='what cities in texas have the highest populations ?',
denotation=('/city/houston_tx',)),
Example(input='what rivers run through the states that border the state with the capital atlanta ?',
denotation=('/river/chattahoochee', '/river/cumberland', '/river/mississippi', '/river/roanoke', '/river/tennessee', '/river/tombigbee', '/river/wateree_catawba')),
Example(input='what is the highest point in the country ?',
denotation=('/place/mount_mckinley',)),
Example(input='how many people live in kalamazoo ?',
denotation=(79722,)),
Example(input='how many major cities are in florida ?',
denotation=(10,)),
Example(input='what state has the greatest population density ?',
denotation=('/state/new_jersey',)),
Example(input='how many rivers are found in colorado ?',
denotation=(10,)),
Example(input='what is the lowest point of the state with the largest area ?',
denotation=('/place/pacific_ocean',)),
Example(input='what states border texas ?',
denotation=('/state/arkansas', '/state/louisiana', '/state/new_mexico', '/state/oklahoma')),
Example(input='how many states border at least one other state ?',
denotation=(49,)),
Example(input='which states border no other states ?',
denotation=('/state/alaska', '/state/hawaii')),
Example(input='what rivers run through austin texas ?',
denotation=('/river/colorado',)),
Example(input='how many people live in new hampshire ?',
denotation=(920600,)),
Example(input='what is the capital of indiana ?',
denotation=('/city/indianapolis_in',)),
Example(input='what states border the states with the most cities ?',
denotation=('/state/arizona', '/state/nevada', '/state/oregon')),
Example(input='what is the area of the smallest state ?',
denotation=(2848986921.3696003,)),
Example(input='which states border new york ?',
denotation=('/state/connecticut', '/state/massachusetts', '/state/new_jersey', '/state/pennsylvania', '/state/vermont')),
Example(input='what is the population of maine ?',
denotation=(1125000,)),
Example(input='what is the biggest city in the smallest state ?',
denotation=('/city/washington_dc',)),
Example(input='what is the elevation of the highest point in the usa ?',
denotation=(6194,)),
Example(input='what state borders the least states excluding alaska and excluding hawaii ?',
denotation=('/state/alaska', '/state/hawaii')),
Example(input='what is the highest point in new mexico ?',
denotation=('/place/wheeler_peak',)),
Example(input='what is the biggest state ?',
denotation=('/state/alaska',)),
Example(input='how many people live in spokane washington ?',
denotation=(171300,)),
Example(input='what states does the shortest river run through ?',
denotation=('/state/delaware', '/state/new_jersey', '/state/new_york', '/state/pennsylvania')),
Example(input='how long is rio grande ?',
denotation=(3033000,)),
Example(input='how many people live in texas ?',
denotation=(14229000,)),
Example(input='where is the lowest spot in iowa ?',
denotation=('/place/mississippi_river',)),
Example(input='what are the populations of the states through which the mississippi river runs ?',
denotation=(11400000, 2286000, 2364000, 2520000, 2913000, 4076000, 4206000, 4591000, 4700000, 4916000)),
Example(input='what is the lowest point in oregon ?',
denotation=('/place/pacific_ocean',)),
Example(input='what is the shortest river in alaska ?',
denotation=()),
Example(input='how many states border the mississippi river ?',
denotation=(10,)),
Example(input='what is the most populated capital in the usa ?',
denotation=('/city/phoenix_az',)),
Example(input='what is the highest point in ohio ?',
denotation=('/place/campbell_hill',)),
Example(input='what states border wisconsin ?',
denotation=('/state/illinois', '/state/iowa', '/state/michigan', '/state/minnesota')),
Example(input='what states have a capital that is the highest point in the state ?',
denotation=()),
Example(input='how many states border colorado and border new mexico ?',
denotation=(3,)),
Example(input='what are the major cities in missouri ?',
denotation=('/city/columbia_mo', '/city/independence_mo', '/city/springfield_mo', '/city/st._joseph_mo')),
Example(input='what are the major cities of texas ?',
denotation=('/city/abilene_tx', '/city/amarillo_tx', '/city/beaumont_tx', '/city/brownsville_tx', '/city/garland_tx', '/city/grand_prairie_tx', '/city/irving_tx', '/city/laredo_tx', '/city/longview_tx', '/city/mcallen_tx', '/city/mesquite_tx', '/city/midland_tx', '/city/odessa_tx', '/city/pasadena_tx', '/city/plano_tx', '/city/port_arthur_tx', '/city/richardson_tx', '/city/san_angelo_tx', '/city/tyler_tx', '/city/waco_tx', '/city/wichita_falls_tx')),
Example(input='how many rivers are called colorado ?',
denotation=(1,)),
Example(input='how high is the highest point in montana ?',
denotation=(3901,)),
Example(input='how many states have cities named austin ?',
denotation=(1,)),
Example(input='which states does the missouri river pass through ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='what is the biggest city in the us ?',
denotation=('/city/new_york_ny',)),
Example(input='how big is new mexico ?',
denotation=(314942554216.8576,)),
Example(input='how many people live in south dakota ?',
denotation=(690767,)),
Example(input='what state is pittsburgh in ?',
denotation=('/state/pennsylvania',)),
Example(input='what rivers run through arizona ?',
denotation=('/river/colorado', '/river/gila')),
Example(input='how many major rivers cross ohio ?',
denotation=(0,)),
Example(input='how many people in boulder ?',
denotation=(76685,)),
Example(input='how many rivers are there in idaho ?',
denotation=(2,)),
Example(input='sacramento is the capital of which state ?',
denotation=('/state/california',)),
Example(input='how many cities are there in us ?',
denotation=(435,)),
Example(input='how many citizens live in california ?',
denotation=(23670000,)),
Example(input='what state has the largest urban population ?',
denotation=('/state/california',)),
Example(input='what states border the mississippi river ?',
denotation=('/state/arkansas', '/state/illinois', '/state/iowa', '/state/kentucky', '/state/louisiana', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/tennessee', '/state/wisconsin')),
Example(input='what can you tell me about the population of missouri ?',
denotation=(4916000,)),
Example(input='what rivers do not run through tennessee ?',
denotation=('/river/allegheny', '/river/arkansas', '/river/bighorn', '/river/canadian', '/river/chattahoochee', '/river/cheyenne', '/river/cimarron', '/river/clark_fork', '/river/colorado', '/river/columbia', '/river/connecticut', '/river/dakota', '/river/delaware', '/river/gila', '/river/green', '/river/hudson', '/river/little_missouri', '/river/missouri', '/river/neosho', '/river/niobrara', '/river/north_platte', '/river/ohio', '/river/ouachita', '/river/pearl', '/river/pecos', '/river/potomac', '/river/powder', '/river/red', '/river/republican', '/river/rio_grande', '/river/roanoke', '/river/rock', '/river/san_juan', '/river/smoky_hill', '/river/snake', '/river/south_platte', '/river/st._francis', '/river/tombigbee', '/river/wabash', '/river/washita', '/river/wateree_catawba', '/river/white', '/river/yellowstone')),
Example(input='what is the largest city in a state that borders texas ?',
denotation=('/city/new_orleans_la',)),
Example(input='name the longest river in us ?',
denotation=('/river/missouri',)),
Example(input='how many states does the mississippi run through ?',
denotation=(10,)),
Example(input='what is the largest of the state that the rio grande runs through ?',
denotation=('/state/texas',)),
Example(input='what is the size of the capital of texas ?',
denotation=(345496,)),
Example(input='what states have rivers running through them ?',
denotation=('/state/alabama', '/state/arizona', '/state/arkansas', '/state/california', '/state/colorado', '/state/connecticut', '/state/delaware', '/state/district_of_columbia', '/state/florida', '/state/georgia', '/state/idaho', '/state/illinois', '/state/indiana', '/state/iowa', '/state/kansas', '/state/kentucky', '/state/louisiana', '/state/maryland', '/state/massachusetts', '/state/michigan', '/state/minnesota', '/state/mississippi', '/state/missouri', '/state/montana', '/state/nebraska', '/state/nevada', '/state/new_hampshire', '/state/new_jersey', '/state/new_mexico', '/state/new_york', '/state/north_carolina', '/state/north_dakota', '/state/ohio', '/state/oklahoma', '/state/oregon', '/state/pennsylvania', '/state/south_carolina', '/state/south_dakota', '/state/tennessee', '/state/texas', '/state/utah', '/state/vermont', '/state/virginia', '/state/washington', '/state/west_virginia', '/state/wisconsin', '/state/wyoming')),
Example(input='what states border hawaii ?',
denotation=()),
Example(input='how many citizens in boulder ?',
denotation=(76685,)),
Example(input='what states border states that border states that border florida ?',
denotation=('/state/alabama', '/state/arkansas', '/state/florida', '/state/georgia', '/state/kentucky', '/state/louisiana', '/state/mississippi', '/state/missouri', '/state/north_carolina', '/state/south_carolina', '/state/tennessee', '/state/virginia')),
Example(input='which states border the longest river in the usa ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='what is the population density of wyoming ?',
denotation=(1.8535816873571475e-06,)),
Example(input='how many people are there in iowa ?',
denotation=(2913000,)),
Example(input='what is the highest point in the state with the most rivers ?',
denotation=('/place/mount_elbert',)),
Example(input='number of citizens in boulder ?',
denotation=(76685,)),
Example(input='what are the rivers of montana ?',
denotation=('/river/bighorn', '/river/clark_fork', '/river/little_missouri', '/river/missouri', '/river/powder', '/river/yellowstone')),
Example(input='how many states border on the state whose capital is boston ?',
denotation=(5,)),
Example(input='how many people live in washington ?',
denotation=(4113200,)),
Example(input='what is the largest state capital in population ?',
denotation=('/city/phoenix_az',)),
Example(input='what is the largest city in states that border california ?',
denotation=('/city/phoenix_az',)),
Example(input='what is the most populous city in wyoming ?',
denotation=('/city/casper_wy',)),
Example(input='what is the population density in the state with capital austin ?',
denotation=(2.0591092489704023e-05,)),
Example(input='what is the population of portland maine ?',
denotation=(61572,)),
Example(input='which state is kalamazoo in ?',
denotation=('/state/michigan',)),
Example(input='what is the population of the largest state that borders texas ?',
denotation=(1303000,)),
Example(input='what states border ohio ?',
denotation=('/state/indiana', '/state/kentucky', '/state/michigan', '/state/pennsylvania', '/state/west_virginia')),
Example(input='what river is the longest one in the united states ?',
denotation=('/river/missouri',)),
Example(input='what is the population density of the state with the smallest area ?',
denotation=(0.00022393925195461856,)),
Example(input='what is the largest capital ?',
denotation=('/city/phoenix_az',)),
Example(input='what state has the smallest capital ?',
denotation=('/state/west_virginia',)),
Example(input='how many big cities are in pennsylvania ?',
denotation=(11,)),
Example(input='which states lie on the largest river in the united states ?',
denotation=('/state/iowa', '/state/missouri', '/state/montana', '/state/nebraska', '/state/north_dakota', '/state/south_dakota')),
Example(input='where is houston ?',
denotation=('/country/usa', '/state/texas')),
Example(input='what rivers flow through states that border the state with the largest population ?',
denotation=('/river/colorado', '/river/columbia', '/river/gila', '/river/snake')),
Example(input='what is the highest point in the smallest state ?',
denotation=('/place/tenleytown',)),
Example(input='what river runs through virginia ?',
denotation=('/river/potomac', '/river/roanoke')),
Example(input='what state borders michigan ?',
denotation=('/state/indiana', '/state/ohio', '/state/wisconsin')),
Example(input='name the major lakes in michigan ?',
denotation=('/lake/st._clair',)),
Example(input='give me the cities in virginia ?',
denotation=('/city/alexandria_va', '/city/arlington_va', '/city/chesapeake_va', '/city/hampton_va', '/city/lynchburg_va', '/city/newport_news_va', '/city/norfolk_va', '/city/portsmouth_va', '/city/richmond_va', '/city/roanoke_va', '/city/virginia_beach_va')),
Example(input='which river runs through the most states ?',
denotation=('/river/mississippi',)),
Example(input='how many people live in new mexico ?',
denotation=(1303000,)),
Example(input='what is the largest city in alabama ?',
denotation=('/city/birmingham_al',)),
Example(input='how many people live in san francisco ?',
denotation=(678974,)),
Example(input='what is the population of the capital of the largest state ?',
denotation=()),
Example(input='what is the longest river in the us ?',
denotation=('/river/missouri',)),
Example(input='what is the largest state that borders the state with the highest population ?',
denotation=('/state/arizona',)),
Example(input='show me all the major lakes in the us ?',
denotation=('/lake/becharof', '/lake/champlain', '/lake/flathead', '/lake/iliamna', '/lake/lake_of_the_woods', '/lake/mille_lacs', '/lake/naknek', '/lake/okeechobee', '/lake/pontchartrain', '/lake/rainy', '/lake/red', '/lake/salton_sea', '/lake/st._clair', '/lake/tahoe', '/lake/teshekpuk', '/lake/winnebago')),
Example(input='where is springfield ?',
denotation=('/country/usa', '/state/illinois', '/state/massachusetts', '/state/missouri', '/state/ohio', '/state/oregon')),
Example(input='what state is des moines located in ?',
denotation=('/state/iowa',)),
Example(input='how many cities does texas have ?',