-
Notifications
You must be signed in to change notification settings - Fork 0
/
q_source.json
1124 lines (1124 loc) · 31.4 KB
/
q_source.json
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
[
{
"qid": "216f99dc-2826-4db8-92c3-f5066c8cf528",
"original_source": "graph",
"question": "When did Dwyane Wade leave the Miami Heat?",
"answer": "2016",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "76231a2c-36b8-43a2-8d99-6807d39e33da",
"original_source": "graph",
"question": "Does any of the players drafted by the Golden State Warriors, have a height greater than 2.1 metre?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "80c2e131-7403-46d9-badc-8a0243f47482",
"original_source": "graph",
"question": "What is the sport team number of Dwyane Wade who is a member of the Chicago Bulls?",
"answer": "3",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "4e466017-c877-47f1-96ab-009b5d995531",
"original_source": "graph",
"question": "When did Kareem Abdul-Jabbar start being a member of Milwaukee Bucks?",
"answer": "1969",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "cc6acb0e-d7fc-4176-bee3-98b21161ba02",
"original_source": "graph",
"question": "What is the mass of Tim Duncan(the one that belongs to United States of America) ?",
"answer": "113 kilogram",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "f1403599-09bb-441a-840d-8d68b964783d",
"original_source": "graph",
"question": "Is Robert Smith a member of Utah Jazz?",
"answer": "yes",
"provenance_sources": [
"doc",
"table",
"graph"
]
},
{
"qid": "2b4876b0-0039-4f8e-a9cb-e17772c1657c",
"original_source": "graph",
"question": "In 1996, did any member of Orlando Magic weigh less than 150 kg?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "bc1fecba-f856-4369-baf6-1cb9a24d9cc0",
"original_source": "graph",
"question": "What team was LeBron James drafted by in the 2003 NBA Draft?",
"answer": "Cleveland Cavaliers",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "d49e09b5-c09c-49d6-8469-7de7436afeb0",
"original_source": "graph",
"question": "What basketball team is Michael Jackson, born 1964-07-13, a member of?",
"answer": "Sacramento Kings",
"provenance_sources": [
"graph"
]
},
{
"qid": "6e3b46b3-b0df-4e4d-9a4b-94ea766cdcb9",
"original_source": "graph",
"question": "Was any member of Portland Trail Blazers born before 1940?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "0bbeae6f-90c9-4a11-a39b-915b1d97b111",
"original_source": "graph",
"question": "What is the date of birth of Michael Jackson who was born in Fairfax?",
"answer": "13 July 1964",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "b8b19f3d-185e-4a5d-92a3-60cc3a03f208",
"original_source": "graph",
"question": "When was the basketball team that included Jack Thompson as the member, established?",
"answer": "1967",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "254239eb-0e13-4c11-bd5c-36eabe25be14",
"original_source": "graph",
"question": "What is the sport number of Dennis Rodman, who is a member of the Detroit Pistons?",
"answer": "10",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "1b4c5848-1f47-487b-9241-57bfc74790f6",
"original_source": "graph",
"question": "What height is the person Ray Allen?",
"answer": "196 centimetre",
"provenance_sources": [
"graph"
]
},
{
"qid": "c57c222a-dcac-455f-88fa-b48794b08c90",
"original_source": "graph",
"question": "Which position is played by Detroit Pistons team member Dennis Rodman?",
"answer": "power forward",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "9f784815-2b08-4db9-b108-8781ce42b308",
"original_source": "graph",
"question": "Who is shorter LeBron James or Tim Duncan, a member from San Antonio Spurs?",
"answer": "LeBron James",
"provenance_sources": [
"graph"
]
},
{
"qid": "465ec6cf-1b04-4b6a-a918-a0374c8d6e91",
"original_source": "graph",
"question": "What is the end time which applies to Dennis Rodman as a team member of the Chicago Bulls?",
"answer": "1998",
"provenance_sources": [
"graph"
]
},
{
"qid": "9ae49542-058d-40f7-bb95-2d7758fdc643",
"original_source": "graph",
"question": "At what time point did Dwyane Wade receive Sports Illustrated Sportsperson of the Year?",
"answer": "2006",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "981a0677-513f-4316-a7a3-046fe8a1190d",
"original_source": "graph",
"question": "When did Kevin Garnett leave the Boston Celtics?",
"answer": "12 July 2013",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "26852e64-f199-47d4-ba76-db4d2a1ead74",
"original_source": "graph",
"question": "What is the sports number of Allen Iverson who is a member of Memphis Grizzlies?",
"answer": "3",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "79049a5a-47d8-46a1-8120-489de363bb59",
"original_source": "graph",
"question": "What is the name of a basketball team that drafted Michael Jordan Michael Jordan (the one whose nickname is G.O.A.T.)?",
"answer": "Chicago Bulls",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "ce8aedbb-e96f-40d7-9d0b-0b5fcd38b478",
"original_source": "graph",
"question": "Was any person who was drafted by San Antonio Spurs born in 1976?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "c948da55-818a-4fef-9abd-4055297985fa",
"original_source": "graph",
"question": "Is the formation date of the Sacramento Kings on 1871-01-01?",
"answer": "no",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "2db39307-2ed6-48ea-a957-67ab7125ffae",
"original_source": "graph",
"question": "When was Cleveland Cavaliers established?",
"answer": "1970",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "a42d0939-ec54-4f5a-abda-d885d1ebffca",
"original_source": "graph",
"question": "Does, Jack Thompson, born 1946-03-26, plays the position of point guard?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "1096eb2b-e409-4a14-b6a4-11356543eea9",
"original_source": "graph",
"question": "When did Tim Duncan (whose position is power forward) win the NBA Rookie of the Year Award?",
"answer": "1998",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "8fb38221-d40e-4806-909c-63cded192f52",
"original_source": "graph",
"question": "Does basketball's Michael McDonald tip the scales at over 170 lbs?",
"answer": "yes",
"provenance_sources": [
"graph"
]
},
{
"qid": "884e9cab-2a76-4ae7-895a-8cfd7e0e7029",
"original_source": "graph",
"question": "Is Allen Iverson a member of the Memphis Grizzlies?",
"answer": "yes",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "553b1996-ffc1-4c50-9059-9b12c33c24a3",
"original_source": "graph",
"question": "Was the basketball team with the member Chuck Connors, who died of natural causes, founded prior to 1961?",
"answer": "yes",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "3d3966e7-0253-43a8-b8b6-379b1f25d53d",
"original_source": "graph",
"question": "Who weighs less, Kareem Abdul-Jabbar or Johnny Green (the one that is a member of Washington Wizards)?",
"answer": "Johnny Green",
"provenance_sources": [
"graph"
]
},
{
"qid": "d59b28da-354d-42d1-bb24-406afc2d88e0",
"original_source": "graph",
"question": "How much does Michael Jackson (the one whose date of birth is 1964-07-13) weigh?",
"answer": "183 pound",
"provenance_sources": [
"graph"
]
},
{
"qid": "cb80e444-6390-4c3d-b95b-d0609e4800f1",
"original_source": "graph",
"question": "When did Kevin Garnett join the Minnesota Timberwolves?",
"answer": "1995",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "2fa77d01-95e4-4832-a14c-956a62f635b0",
"original_source": "graph",
"question": "Tell me the basketball team that has Michael McDonald (who is 208 centimetres in height) as a member.",
"answer": "Charlotte Hornets",
"provenance_sources": [
"graph"
]
},
{
"qid": "aab8025d-7414-42cc-bc4a-86bbb1cc2903",
"original_source": "doc",
"question": "Named for it's proximity to the local NBA team, what is the name of the WNBA team in Phoenix?",
"answer": "Mercury",
"provenance_sources": [
"doc",
"table"
]
},
{
"qid": "e9475289-6e9f-4f71-89d6-9c8bdccebafd",
"original_source": "doc",
"question": "In which American city do the 'Wizards' play Basketball?",
"answer": "Washington",
"provenance_sources": [
"doc",
"table",
"graph"
]
},
{
"qid": "926f3488-358e-4719-9bd9-8759e5ed7403",
"original_source": "doc",
"question": "US basketballer LeBron James caused headlines in 2010 and 2014 by first leaving and then returning to what team?",
"answer": "Cleveland Cavaliers",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "4424eab4-abbe-4def-82ba-cac2da187af7",
"original_source": "doc",
"question": "What is Magic Johnson's real first name?",
"answer": "Earvin",
"provenance_sources": [
"doc"
]
},
{
"qid": "b406bacb-ddb9-4f98-aadb-aeceb64117af",
"original_source": "doc",
"question": "Famous in NBA Basketball, Michael Jordan first retired in 1993 to develop a career in what?",
"answer": "Baseball player",
"provenance_sources": [
"doc"
]
},
{
"qid": "1baa61ad-bd7f-4b2e-906a-d60862d9e5f9",
"original_source": "doc",
"question": "David Stern was the commissioner of what organization?",
"answer": "NBA",
"provenance_sources": [
"doc"
]
},
{
"qid": "d3133c43-688c-45e6-abad-066ba33b4634",
"original_source": "doc",
"question": "How many Madison Square Gardens have there been before the existing one?",
"answer": "3",
"provenance_sources": [
"doc"
]
},
{
"qid": "d8c053ab-b2ff-40cd-87eb-a0f8c7420b73",
"original_source": "doc",
"question": "In which American city do the 'Rockets' play their home basketball games?",
"answer": "Houston, Texas",
"provenance_sources": [
"doc",
"table",
"graph"
]
},
{
"qid": "346422b2-6a21-42ed-bd9c-0959c98dbd9e",
"original_source": "doc",
"question": "What player was Michael Jordan's second fiddle?",
"answer": "Pippen",
"provenance_sources": [
"doc"
]
},
{
"qid": "9763e6e6-76a8-4a0c-80ee-7f64a2b285a2",
"original_source": "doc",
"question": "What movie starred Michael Jordan?",
"answer": "Space Jam",
"provenance_sources": [
"doc"
]
},
{
"qid": "9469c4ac-6d73-4848-8ed1-367a96b5834c",
"original_source": "doc",
"question": "Which team won the 2010 NBA Finals, beating the Boston Celtics by 4 games to 3?",
"answer": "Los Angeles Lakers",
"provenance_sources": [
"doc",
"table"
]
},
{
"qid": "04f5a2a7-f0f3-40b9-ba8c-dce88fb696ca",
"original_source": "doc",
"question": "In which American city do the 'Supersonics' play their home basketball games?",
"answer": "Seattle, Wa",
"provenance_sources": [
"doc"
]
},
{
"qid": "cd0b5f0c-27b4-4f09-860e-43213bcc2374",
"original_source": "doc",
"question": "When Kobe Bryant of the Lakers played the farewell game of his 20 year NBA career in 2016 what was his score as part of his side's 101-96 win?",
"answer": "60",
"provenance_sources": [
"doc"
]
},
{
"qid": "b3779f35-b422-4538-9bd0-38cccd2180b1",
"original_source": "doc",
"question": "Michael Jordan played for which NBA team from 1984 to 1998, except for a season of retirement in 1993-94?",
"answer": "Chicago Bulls",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "95b3386a-89a3-4a23-9d7b-5c6f2110115b",
"original_source": "doc",
"question": "In which 1996 live-action/animation movie did basketball icon Michael Jordan star?",
"answer": "Space Jam",
"provenance_sources": [
"doc"
]
},
{
"qid": "a335866b-e4f3-4c3d-ab96-1dcc2e030461",
"original_source": "doc",
"question": "when did michael jordan win first nba championship",
"answer": "1991",
"provenance_sources": [
"doc"
]
},
{
"qid": "b4cb25ed-f228-44b9-b666-d8322b05add2",
"original_source": "doc",
"question": "who has the most finals mvps in the nba",
"answer": "Michael Jordan",
"provenance_sources": [
"doc"
]
},
{
"qid": "81cd8a67-de73-47e3-902a-710b1e4704b7",
"original_source": "doc",
"question": "what position did michael jordan play in the nba",
"answer": "Shooting guard",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "2e2a238f-d7cc-44b4-ab26-783cd78eec8d",
"original_source": "doc",
"question": "how many teams are in the western conference nba",
"answer": "15",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "58f522f5-ae8b-4f7d-911f-7f323b1abd0e",
"original_source": "doc",
"question": "how many nba titles did michael jordan win",
"answer": "6",
"provenance_sources": [
"doc"
]
},
{
"qid": "1c934438-ee8b-4094-a3df-efc5d44dd7d7",
"original_source": "doc",
"question": "who brings the ball up the court in basketball",
"answer": "point guard",
"provenance_sources": [
"doc"
]
},
{
"qid": "249be9bf-88b4-4310-977c-2d599b4052a9",
"original_source": "doc",
"question": "how many games in nba season per team",
"answer": "82 games",
"provenance_sources": [
"doc"
]
},
{
"qid": "1f577c20-cbf4-4f47-a265-045cd77662e1",
"original_source": "doc",
"question": "what year did the golden state warriors win their first nba championship",
"answer": "1947",
"provenance_sources": [
"doc"
]
},
{
"qid": "ffdc5023-a810-4b4f-ab76-0db2d0cb1e7f",
"original_source": "doc",
"question": "who has won the most mvp awards in the nba",
"answer": "Kareem Abdul - Jabbar",
"provenance_sources": [
"doc"
]
},
{
"qid": "9fe66732-a71d-40f8-b6f6-9ae3841861a4",
"original_source": "doc",
"question": "who has made it to the nba finals the most",
"answer": "The Los Angeles Lakers",
"provenance_sources": [
"doc"
]
},
{
"qid": "c1c09422-cb65-47d2-b719-8b13fb03b7aa",
"original_source": "doc",
"question": "when did stephen curry get drafted to the nba",
"answer": "2009",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "fc63a933-f400-4426-ba60-92eefdd40c1a",
"original_source": "doc",
"question": "when did chicago bulls win their first nba championship",
"answer": "1991",
"provenance_sources": [
"doc"
]
},
{
"qid": "29ef91ae-2463-4372-99e5-62ec35aa2b58",
"original_source": "doc",
"question": "how many games in a regular season nba",
"answer": "82",
"provenance_sources": [
"doc"
]
},
{
"qid": "33d19a19-3ec7-4cd7-b65e-728e3c6e864e",
"original_source": "doc",
"question": "when was the last time celtics won a championship",
"answer": "2008",
"provenance_sources": [
"doc"
]
},
{
"qid": "5375c6ee-4844-456d-86a8-549bfc007862",
"original_source": "doc",
"question": "Which team did the head coach who resigned early in the season of The 2005\u201306 Miami Heat season go on to coach from 2007 to 2012?",
"answer": "Orlando Magic",
"provenance_sources": [
"doc"
]
},
{
"qid": "977cb162-4fa5-4361-8a42-0138d22fa967",
"original_source": "doc",
"question": "When was the 1993-94 Washington Bullets head coach born?",
"answer": "March 14, 1946",
"provenance_sources": [
"doc"
]
},
{
"qid": "ae3e0796-e81d-4226-bf15-8b47d61fc7ac",
"original_source": "doc",
"question": "What basketball player was drafted third overall in the 2005 NBA draft by the Utah Jazz and featured as a cover athlete for the game NBA Baller Beats?",
"answer": "Deron Williams",
"provenance_sources": [
"doc",
"table"
]
},
{
"qid": "4281f6fd-d87d-4891-abec-859cecfd69a7",
"original_source": "doc",
"question": "Which American retired professional basketball player featured in 1960 NBA Finals as member of Hall of Famers",
"answer": "Thomas William Heinsohn",
"provenance_sources": [
"doc"
]
},
{
"qid": "4985a67b-daa2-4e30-a822-b997a1a7a23b",
"original_source": "doc",
"question": "in the 2004\u201305 Denver Nuggets off-season, the Nuggets acquired a player from New Jersey Nets who was born in which year ?",
"answer": "1977",
"provenance_sources": [
"doc"
]
},
{
"qid": "8288a2e2-9c93-44f9-a37a-108da50a2c88",
"original_source": "doc",
"question": "In what arena did Bison Dele play home games for the NBA in 1997?",
"answer": "United Center",
"provenance_sources": [
"doc"
]
},
{
"qid": "e677334e-de1d-4c2d-9052-0a3505d8a2a7",
"original_source": "doc",
"question": "In what city was Ryan Richards drafted by the Spurs?",
"answer": "New York City",
"provenance_sources": [
"doc"
]
},
{
"qid": "eb750f00-419b-4444-88ca-d0ca64200c06",
"original_source": "doc",
"question": "What team was Adam Morrison's Co-Player of the Year drafted to in the NBA?",
"answer": "Orlando Magic",
"provenance_sources": [
"doc"
]
},
{
"qid": "d391561a-38a8-4dac-adda-0ca477c7bf4a",
"original_source": "doc",
"question": "In the season where the Raptors recruit the shortest player to ever play in the NBA, what place did the team finish in the Central Division?",
"answer": "third",
"provenance_sources": [
"doc"
]
},
{
"qid": "ff94b8a4-beaa-43fb-9a76-3832dfa1da5c",
"original_source": "doc",
"question": "Who opted out due to injury The 1997 NBA All-Star Game, who currently serves as a color commentator for Houston Rockets home games?",
"answer": "Clyde Austin \"The Glide\" Drexler",
"provenance_sources": [
"doc"
]
},
{
"qid": "b5118661-a3e5-49d9-81c5-e4dfb8358f88",
"original_source": "doc",
"question": "Which 2-time All-American from Louisville was inducted into the Naismith Memorial Basketball Hall of Fame in 1988?",
"answer": "Wes Unseld",
"provenance_sources": [
"doc"
]
},
{
"qid": "f930f4e5-5460-42ab-989f-70c94884a591",
"original_source": "doc",
"question": "Which video game featured the Houston Rockets player named NBA Sixth Man of the Year in 2012?",
"answer": "James Harden",
"provenance_sources": [
"doc"
]
},
{
"qid": "867cc3eb-6f6f-4be5-9d34-f00f0cae6c23",
"original_source": "doc",
"question": "What was the nickname of one of the members of the Eastern Conference Southeast Division that was viewed as one of the best dunkers in the National Basketball Association's history?",
"answer": "The Human Highlight Film",
"provenance_sources": [
"doc"
]
},
{
"qid": "75c6c9d8-e31e-44db-a7b0-e43a3adcab94",
"original_source": "doc",
"question": "Alonzo Mourning was traded to the Toronto Raptors but ultimately played for what team?",
"answer": "Miami Heat",
"provenance_sources": [
"doc"
]
},
{
"qid": "c9f61b34-80ff-4e22-95a6-9d63b582c1f9",
"original_source": "doc",
"question": "On what date was Taylor Griffin's younger brother born?",
"answer": "March 16, 1989",
"provenance_sources": [
"doc"
]
},
{
"qid": "86fe09ab-128d-4880-865b-3cfd47036cf2",
"original_source": "doc",
"question": "The basketball player that was traded to the Sacramento Kings following the 1997\u201398 Washington Wizards season was indicted for his involvement in what scandal?",
"answer": "the Ed Martin scandal",
"provenance_sources": [
"doc"
]
},
{
"qid": "0b8c46ff-ba89-4037-854c-0050b2a21f3e",
"original_source": "doc",
"question": "The 1992\u201393 NBA season was which number season for the Charlotte Hornets in the National Basketball Association, the Hornets selected with Muggsy Bogues?",
"answer": "fifth",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "8fc3a824-e8a2-4b89-acee-9ecaf5df0c14",
"original_source": "doc",
"question": "From 1972-1982, Randy Smith played in every regular season basketball game en route to a record of 906 straight games, which has since been broken by a player who has played for the Lakers, Suns, Mavericks, and what other team?",
"answer": "Miami Heat",
"provenance_sources": [
"doc"
]
},
{
"qid": "8a93912d-4a88-4314-b10b-c7572f6ddf7b",
"original_source": "doc",
"question": "What pick did Damian Lillard get drafted?",
"answer": "6th overall",
"provenance_sources": [
"doc"
]
},
{
"qid": "aff4e58c-f5ef-4f46-836a-31eb73c8fe32",
"original_source": "doc",
"question": "The 2013\u201314 Toronto Raptors season included a trade to the Sacramento Kings for the player of what nationality who played college for Maryland?",
"answer": "Venezuelan",
"provenance_sources": [
"doc"
]
},
{
"qid": "51c20dee-f19f-4698-ad4b-ba70b80b786c",
"original_source": "doc",
"question": "At what stadium did Mychal George Thompson play home games with the San Antonio Spurs?",
"answer": "AT&T Center in San Antonio",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "ccc7d907-0c1c-4a38-be99-c02624716fd1",
"original_source": "doc",
"question": "In which year was this player born who announced his retirement due to a back injury early in the season during the unfortunate 2002\u201303 Toronto Raptors season?",
"answer": "1963",
"provenance_sources": [
"doc"
]
},
{
"qid": "cd9b8c02-33be-4d17-8daf-d76c2b7a81cd",
"original_source": "doc",
"question": "When was the building that was built for the Minnesota National Guard in 1935\u201336 demolished?",
"answer": "1989",
"provenance_sources": [
"doc"
]
},
{
"qid": "ebb8f47c-7c09-46a8-995f-606216985792",
"original_source": "doc",
"question": "What retired professional basketball player was Kenny Green selected a spot ahead of during an NBA draft?",
"answer": "Karl Malone",
"provenance_sources": [
"doc"
]
},
{
"qid": "2745c40f-4585-4183-9d33-ecc550a05c2a",
"original_source": "doc",
"question": "In the illustrious career of NBA superstar Paul Pierce, which happened first: Becoming McDonald's All-American or being traded to the Brooklyn Nets?",
"answer": "McDonald's All-American",
"provenance_sources": [
"doc"
]
},
{
"qid": "cca84009-501b-44f7-8b5f-ec4d5c81fabb",
"original_source": "doc",
"question": "The Finals Most Valuable Player (MVP) of the 2014 NBA Finals was born in this year?",
"answer": "1991",
"provenance_sources": [
"doc",
"graph"
]
},
{
"qid": "e7404f56-ebbb-4ec4-9d58-f49f2411f37c",
"original_source": "doc",
"question": "Who was taken sixth in an event that occured on June 28th 2005 in the Theatre at Madison Square Garden?",
"answer": "Martell Webster",
"provenance_sources": [
"doc"
]
},
{
"qid": "dd08cbcb-f724-438c-af17-3b8f18edbb6a",
"original_source": "doc",
"question": "The 2012\u201313 Toronto Raptors season began with an acquisition of which former Villanova player?",
"answer": "Kyle Lowry",
"provenance_sources": [
"doc"
]
},
{
"qid": "3ac9e10c-373f-40f9-95f7-06989e52be19",
"original_source": "doc",
"question": "How tall is the basketball player that Jamison was traded to the Golden State Warriors for?",
"answer": "6 ft",
"provenance_sources": [
"doc"
]
},
{
"qid": "a4c4b4d8-5227-4c28-8a17-b804a3b6bd78",
"original_source": "doc",
"question": "Rod Strickland is the godfather of an NBA player who won an NBA championship with the cavaliers in which year ?",
"answer": "2016",
"provenance_sources": [
"doc"
]
},
{
"qid": "40b8f59e-de26-407c-8741-9cdc1bf3a953",
"original_source": "doc",
"question": "Whats the name of the twin brother of Washington Bullets player Harvey Grant?",
"answer": "Horace Grant",
"provenance_sources": [
"doc"
]
},
{
"qid": "2",
"original_source": "table",
"question": "How many players on the Charlotte Sting team in the 2006 season had more than 100 assists?",
"provenance_sources": [
"table"
]
},
{
"qid": "4",
"original_source": "table",
"question": "Identify the player with the least number of assists in the 2006 season for the Charlotte Sting.",
"provenance_sources": [
"table"
]
},
{
"qid": "6",
"original_source": "table",
"question": "Can you calculate the total number of rebounds by the Seattle Storm team in the 2005 season?",
"provenance_sources": [
"table"
]
},
{
"qid": "7",
"original_source": "table",
"question": "How many players in the Seattle Storm team had more than 100 assists in the 2005 season?",
"provenance_sources": [
"table"
]
},
{
"qid": "8",
"original_source": "table",
"question": "What is the average number of points scored by the Seattle Storm players in the 2005 season?",
"provenance_sources": [
"table"
]
},
{
"qid": "9",
"original_source": "table",
"question": "Identify the player with the least minutes of games played in the Seattle Storm team during the 2005 season.",
"provenance_sources": [
"table"
]
},
{
"qid": "11",
"original_source": "table",
"question": "Can you calculate the total number of rebounds by the Houston Comets players in the 2004 season?",
"provenance_sources": [
"table"
]
},
{
"qid": "12",
"original_source": "table",
"question": "How many players from the Houston Comets in the 2004 season had more than 100 assists?",
"provenance_sources": [
"table"
]
},
{
"qid": "13",
"original_source": "table",
"question": "What is the average minutes of games played by the Houston Comets players in the 2004 season?",
"provenance_sources": [
"table"
]
},
{
"qid": "14",
"original_source": "table",
"question": "Identify the player with the least number of assists in the Houston Comets team during the 2004 season.",
"provenance_sources": [
"table"
]
},
{
"qid": "47",
"original_source": "table",
"question": "Which game in February 2009 had the least attendance for the Lakers?",
"provenance_sources": [
"table"
]
},
{
"qid": "48",
"original_source": "table",
"question": "Who scored the most points in a single game in February 2009?",
"provenance_sources": [
"table"
]
},
{
"qid": "50",
"original_source": "table",
"question": "How many games did the Lakers win in February 2009?",
"provenance_sources": [
"table"
]
},
{
"qid": "52",
"original_source": "table",
"question": "Tell me the player who had the most high assists in a single game in November 2004 for Toronto Raptors?",
"provenance_sources": [
"table"
]
},
{
"qid": "53",
"original_source": "table",
"question": "Who was the player with the least high points in a single game in November 2004 for Toronto Raptors?",
"provenance_sources": [
"table"
]
},
{
"qid": "54",
"original_source": "table",
"question": "What was the highest attendance in a game in November 2004 for Toronto Raptors?",
"provenance_sources": [
"table"