-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion_queries.json
4909 lines (4909 loc) · 238 KB
/
question_queries.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
[
{
"query_id": "1",
"query_text": "Antitrust Cases Pending",
"split": "3",
"questions": [
"What are the current antitrust cases that are pending?",
"Which companies or industries are involved in pending antitrust cases?"
]
},
{
"query_id": "2",
"query_text": "Acquisitions",
"split": "2",
"questions": [
"What datasets are available on recent corporate acquisitions?",
"Where can I find data on mergers and acquisitions within a specific industry or region?"
]
},
{
"query_id": "3",
"query_text": "Debt Rescheduling",
"split": "1",
"questions": [
"What datasets are available on global debt rescheduling agreements?",
"Which countries or organizations have recently gone through debt rescheduling?"
]
},
{
"query_id": "4",
"query_text": "Third World Debt Relief",
"split": "2",
"questions": [
"What datasets are available on the effectiveness of third world debt relief programs?",
"Which countries have benefited the most from debt relief?"
]
},
{
"query_id": "5",
"query_text": "U.S. Budget Deficit",
"split": "3",
"questions": [
"What datasets are available on the U.S. federal budget deficit?",
"What is the current level of the U.S. budget deficit?"
]
},
{
"query_id": "6",
"query_text": "Economic Projections",
"split": "1",
"questions": [
"What datasets are available on economic projections for a specific country or region?",
"What are the projected trends for key economic indicators such as GDP, inflation, and unemployment in the near future?"
]
},
{
"query_id": "7",
"query_text": "AIDS treatments",
"split": "0",
"questions": [
"What datasets are available on the efficacy of various AIDS treatments?",
"Which treatments have shown the most promising results in terms of reducing viral load and improving quality of life for HIV-positive individuals?"
]
},
{
"query_id": "8",
"query_text": "Water Pollution",
"split": "4",
"questions": [
"What datasets are available on water pollution levels in a specific region or country?",
"Which sources of water pollution are the most significant contributors to contamination?"
]
},
{
"query_id": "9",
"query_text": "us savings bonds",
"split": "0",
"questions": [
"What datasets are available on U.S. savings bonds, their issuance, and redemption?",
"What is the historical trend of savings bond interest rates?"
]
},
{
"query_id": "10",
"query_text": "Drug Approval",
"split": "3",
"questions": [
"What datasets are available on the FDA drug approval process and timelines?",
"Which drugs have been approved by the FDA in the last year?"
]
},
{
"query_id": "11",
"query_text": "International Trade Liberalization Talks",
"split": "1",
"questions": [
"What datasets are available on the progress and outcomes of international trade liberalization talks?",
"Which countries and industries are the major stakeholders in these talks?"
]
},
{
"query_id": "12",
"query_text": "Patent Infringement Lawsuits",
"split": "2",
"questions": [
"What datasets are available on patent infringement lawsuits filed in a specific industry or region?",
"Which companies have been involved in the most patent infringement lawsuits?"
]
},
{
"query_id": "13",
"query_text": "New Medical Technology",
"split": "0",
"questions": [
"What datasets are available on new medical technologies and innovations?",
"Which medical technologies have been recently developed?"
]
},
{
"query_id": "14",
"query_text": "Companies Capable of Producing Document Management Systems",
"split": "1",
"questions": [
"What datasets are available on companies capable of producing document management systems?",
"Which companies are the largest providers of document management systems?"
]
},
{
"query_id": "15",
"query_text": "Analyses of Savings and Loan Failures",
"split": "2",
"questions": [
"What datasets are available on analyses of savings and loan failures in a specific time period or region?",
"What were the main causes of the savings and loan failures?"
]
},
{
"query_id": "16",
"query_text": "Computer or Communications Systems Upgrade",
"split": "3",
"questions": [
"What datasets are available on computer or communications systems upgrades in a specific industry or organization?",
"What types of upgrades have been made to computer or communications systems?"
]
},
{
"query_id": "17",
"query_text": "U.S. Technology Policy",
"split": "4",
"questions": [
"What datasets are available on U.S. technology policy and its impact on innovation and economic growth?",
"Which technology policies have been implemented in the U.S.?"
]
},
{
"query_id": "18",
"query_text": "Purchasers of Modern Communications Equipment",
"split": "3",
"questions": [
"What datasets are available on purchasers of modern communications equipment in a specific industry or region?",
"Which organizations or businesses are the major purchasers of modern communications equipment?"
]
},
{
"query_id": "19",
"query_text": "Who's working with Supercomputers",
"split": "1",
"questions": [
"-"
]
},
{
"query_id": "20",
"query_text": "Leveraged Buyouts",
"split": "0",
"questions": [
"What datasets are available on leveraged buyouts in a specific industry or region?",
"Which companies have been involved in leveraged buyouts?"
]
},
{
"query_id": "21",
"query_text": "Satellite Launch Contracts",
"split": "3",
"questions": [
"What datasets are available on satellite launch contracts and their value in a specific time period or region?",
"Which companies are the major providers of satellite launch services?"
]
},
{
"query_id": "22",
"query_text": "MCI",
"split": "1",
"questions": [
"What is the historical financial performance of MCI?",
"What are its current revenue and profit figures?"
]
},
{
"query_id": "23",
"query_text": "Merit-Pay vs. Seniority",
"split": "1",
"questions": [
"What datasets are available on the efficacy of merit-pay vs. seniority pay systems in the workplace?",
"What are the differences in performance, job satisfaction, and retention rates between employees compensated through merit-pay vs. seniority pay systems?"
]
},
{
"query_id": "24",
"query_text": "Machine Translation",
"split": "3",
"questions": [
"What datasets are available on machine translation performance for specific languages or language pairs?",
"How do different machine translation systems compare in terms of accuracy, fluency, and processing speed?"
]
},
{
"query_id": "25",
"query_text": "Hostage-Taking",
"split": "4",
"questions": [
"What datasets are available on hostage-taking incidents in a specific region or time period?",
"What are the characteristics of hostage-taking incidents?"
]
},
{
"query_id": "26",
"query_text": "Information Retrieval Systems",
"split": "0",
"questions": [
"What are the available datasets for training and evaluating information retrieval systems?",
"What datasets are commonly used for benchmarking the effectiveness of various information retrieval techniques?"
]
},
{
"query_id": "27",
"query_text": "Natural Language Processing",
"split": "1",
"questions": [
"What datasets are available on the performance of natural language processing models for specific tasks or domains?",
"How do different natural language processing models compare in terms of accuracy, efficiency, and generalization ability?"
]
},
{
"query_id": "28",
"query_text": "Surrogate Motherhood",
"split": "1",
"questions": [
"What datasets are available on the practice and outcomes of surrogate motherhood in a specific region or time period?",
"What are the motivations and experiences of surrogate mothers and intended parents?"
]
},
{
"query_id": "29",
"query_text": "Border Incursions",
"split": "3",
"questions": [
"What datasets are available on border incursions in a specific region or time period?",
"What are the characteristics of border incursions?"
]
},
{
"query_id": "30",
"query_text": "Demographic Shifts in the U.S.",
"split": "2",
"questions": [
"What datasets are available on demographic shifts in the U.S. population over time?",
"What are the changes in the distribution of age, race, ethnicity, gender, education, and other demographic factors?"
]
},
{
"query_id": "31",
"query_text": "Demographic Shifts across National Boundaries",
"split": "3",
"questions": [
"What datasets are available on demographic shifts across national boundaries?",
"What are the patterns and drivers of demographic shifts?"
]
},
{
"query_id": "32",
"query_text": "Automation",
"split": "4",
"questions": [
"What datasets are available on the impact of automation on the workforce and the economy?",
"What are the industries and occupations most affected by automation?"
]
},
{
"query_id": "33",
"query_text": "Greenpeace",
"split": "4",
"questions": [
"What datasets are available on the activities and campaigns of Greenpeace?",
"What are the issues and causes that Greenpeace focuses on?"
]
},
{
"query_id": "34",
"query_text": "FRG Political Party Positions",
"split": "0",
"questions": [
"What datasets are available on the political positions and ideologies of political parties in the Federal Republic of Germany?",
"What are the policy stances of different political parties on key issues?"
]
},
{
"query_id": "35",
"query_text": "1988 Presidential Candidates Platforms",
"split": "3",
"questions": [
"What datasets are available on the platforms and policy positions of the presidential candidates in the 1988 U.S. presidential election?",
"What were the main issues and themes of the election?"
]
},
{
"query_id": "36",
"query_text": "Genetic Engineering",
"split": "1",
"questions": [
"What datasets are available on the ethical, social, and environmental implications of genetic engineering?",
"What are the scientific advances and technological applications of genetic engineering?"
]
},
{
"query_id": "37",
"query_text": "Alternative/renewable Energy Plant & Equipment Installation",
"split": "3",
"questions": [
"What datasets are available on the installation and deployment of alternative and renewable energy plant and equipment?",
"What are the trends and patterns in the installation of solar, wind, hydro, geothermal, and other types of renewable energy systems?"
]
},
{
"query_id": "38",
"query_text": "Official Corruption",
"split": "3",
"questions": [
"What datasets are available on the prevalence and impact of official corruption in different countries and regions?",
"What are the types and forms of corruption?"
]
},
{
"query_id": "39",
"query_text": "Bank Failures",
"split": "3",
"questions": [
"What are some datasets available on bank failures in the United States?",
"Where can I find datasets on the number and causes of bank failures in different countries?"
]
},
{
"query_id": "40",
"query_text": "Criminal Actions Against Officers of Failed Financial Institutions",
"split": "4",
"questions": [
"What datasets are available on criminal actions taken against officers of failed financial institutions?",
"Can you provide a dataset containing information on criminal charges against individuals associated with failed financial institutions?"
]
},
{
"query_id": "41",
"query_text": "Crude Oil Price Trends",
"split": "1",
"questions": [
"What is the historical trend of crude oil prices over the past decade?",
"Is there a dataset available that shows the relationship between crude oil prices and global events or economic indicators?"
]
},
{
"query_id": "42",
"query_text": "Downstream Investments by OPEC Member States",
"split": "3",
"questions": [
"What is the dataset that contains information about the downstream investments made by member states of OPEC?",
"How can I access a dataset related to the investments made by OPEC member states in downstream projects?"
]
},
{
"query_id": "43",
"query_text": "Data on Proven Reserves of Oil & Natural Gas Producers",
"split": "2",
"questions": [
"What dataset contains information on the proven reserves of oil and natural gas producers?",
"Is there a dataset that lists the proven reserves of oil and natural gas for different producers?",
"Where can I find a dataset with information on the proven reserves of oil and natural gas companies?",
"What is the name of the dataset that contains information on the proven reserves of oil and natural gas producers?"
]
},
{
"query_id": "44",
"query_text": "International Military Equipment Sales",
"split": "2",
"questions": [
"What is the global trend in military equipment sales in the last decade?",
"Which countries are the largest importers and exporters of military equipment worldwide?",
"How has the sales of military equipment by major arms exporting countries changed over time?",
"What are the types of military equipment sold by different countries in the international market?"
]
},
{
"query_id": "45",
"query_text": "What Backing Does the National Rifle Association Have?",
"split": "3",
"questions": [
"-"
]
},
{
"query_id": "46",
"query_text": "Computer-aided Crime",
"split": "1",
"questions": [
"Is there a dataset available that contains information on the frequency and types of crimes that involve the use of computer technology?",
"Can you provide me with a dataset that includes information on the tools and techniques used by law enforcement agencies to investigate and prevent computer-aided crimes?"
]
},
{
"query_id": "47",
"query_text": "Computer-aided Crime Detection",
"split": "4",
"questions": [
"What datasets are available for computer-aided crime detection?",
"Where can I find datasets related to computer-aided crime detection and prevention?",
"Is there a dataset on crime incidents that have been detected using computer-aided techniques?",
"What kind of data is typically used in computer-aided crime detection?"
]
},
{
"query_id": "48",
"query_text": "Fiber Optics Applications",
"split": "4",
"questions": [
"What are some applications of fiber optics technology in the telecommunications industry?",
"Can you provide a dataset of the usage of fiber optics technology in different industries and applications?"
]
},
{
"query_id": "49",
"query_text": "Fiber Optics Equipment Manufacturers",
"split": "0",
"questions": [
"What are the top fiber optics equipment manufacturers by revenue?",
"Can you provide a list of fiber optics equipment manufacturers and their product offerings?",
"What is the market share of different fiber optics equipment manufacturers?",
"Is there a dataset available on the financial performance of fiber optics equipment manufacturers?",
"What are the historical trends in the revenue and growth of fiber optics equipment manufacturers?"
]
},
{
"query_id": "50",
"query_text": "Welfare Reform",
"split": "2",
"questions": [
"What datasets are available on the impact of welfare reform on employment rates?",
"Is there a dataset on the effects of welfare reform on poverty rates in the United States?",
"Where can I find a dataset on the implementation of welfare reform policies in different states?",
"What data is available on the effectiveness of welfare-to-work programs in reducing dependence on public assistance?"
]
},
{
"query_id": "51",
"query_text": "Catastrophic Health Insurance",
"split": "4",
"questions": [
"What datasets are available on catastrophic health insurance policies?",
"Is there a dataset that compares the cost and coverage of catastrophic health insurance plans across different providers?",
"Can I find a dataset on the number of individuals enrolled in catastrophic health insurance plans by state?",
"What is the historical trend of premiums for catastrophic health insurance plans in the US?"
]
},
{
"query_id": "52",
"query_text": "Find Innovative Companies",
"split": "4",
"questions": [
"Is there a dataset available on patent filings by companies, specifically those related to cutting-edge technologies or novel products?",
"Are there any datasets that track venture capital funding for startups that are developing innovative products or services?",
"Can you provide a list of companies that have won innovation awards or received recognition from industry experts?"
]
},
{
"query_id": "53",
"query_text": "Funding Biotechnology",
"split": "1",
"questions": [
"What are the top biotechnology companies by funding amount?",
"Which venture capital firms have invested the most in biotechnology startups?",
"What is the average funding round size for biotechnology companies?"
]
},
{
"query_id": "54",
"query_text": "New Space Satellite Applications",
"split": "3",
"questions": [
"What are some datasets on new space satellite applications and their usage?",
"Can you provide a dataset on the applications and benefits of new space satellite technology?",
"Where can I find datasets related to new and innovative uses of space satellites?"
]
},
{
"query_id": "55",
"query_text": "Non-commercial Satellite Launches",
"split": "1",
"questions": [
"What organizations or entities have launched non-commercial satellites into space?",
"Are there any patterns or trends in non-commercial satellite launches, such as geographical distribution or frequency of launches?"
]
},
{
"query_id": "56",
"query_text": "Impact of the 1986 Immigration Law",
"split": "1",
"questions": [
"What has been the impact of the 1986 Immigration Law on the US economy, particularly in terms of employment and wages?",
"How has the 1986 Immigration Law affected the social and demographic composition of immigrant communities in the US?",
"What has been the impact of the 1986 Immigration Law on US border security and immigration enforcement?"
]
},
{
"query_id": "57",
"query_text": "Generic Drug Substitutions",
"split": "4",
"questions": [
"What datasets are available on generic drug substitutions?",
"Is there a dataset that provides information on the effectiveness of generic drug substitutions compared to brand-name medications?",
"Are there any datasets that analyze the cost savings associated with using generic drug substitutions over brand-name drugs?"
]
},
{
"query_id": "58",
"query_text": "Capacity of the U.S. Cellular Telephone Network",
"split": "0",
"questions": [
"Is there a dataset that shows the growth of the U.S. cellular telephone network's capacity over time?",
"Are there any datasets that analyze the utilization rates and congestion levels of the U.S. cellular telephone network?",
"Where can I find data on the growth and capacity of the U.S. cellular telephone network?"
]
},
{
"query_id": "59",
"query_text": "Actions Against International Terrorists",
"split": "3",
"questions": [
"What are the statistics on international terrorist incidents by country, year, and type of attack?",
"What is the global distribution of terrorist groups, their activities, and their target types?",
"Is there a dataset that provides information on the effectiveness of various types of actions taken against international terrorists, such as military strikes or targeted sanctions?"
]
},
{
"query_id": "60",
"query_text": "Death from Cancer",
"split": "4",
"questions": [
"What is the dataset containing information on deaths caused by different types of cancer in the United States over a certain period of time?",
"Is there a dataset that provides information on cancer-related deaths by age, race, and gender for a particular country or region?"
]
},
{
"query_id": "61",
"query_text": "RDT&E of New Cancer Fighting Drugs",
"split": "4",
"questions": [
"What datasets are available for the pre-clinical research and development of new cancer fighting drugs?",
"Can you provide a dataset that compares the effectiveness of different cancer drugs in treating specific types of cancer?"
]
},
{
"query_id": "62",
"query_text": "Alternatives to Traditional Cancer Therapies",
"split": "1",
"questions": [
"What datasets are available on alternative cancer therapies such as immunotherapy, targeted therapy, or hormone therapy?",
"Are there any datasets on the effectiveness of alternative cancer therapies compared to traditional treatments such as chemotherapy and radiation therapy?",
"What datasets exist on the use of complementary and alternative medicine (CAM) in cancer treatment?"
]
},
{
"query_id": "63",
"query_text": "Anti-smoking Actions by Government",
"split": "4",
"questions": [
"What are the datasets available on the effectiveness of government anti-smoking actions in reducing smoking rates?",
"How has the implementation of government anti-smoking actions impacted smoking-related health outcomes?"
]
},
{
"query_id": "64",
"query_text": "Medical Ethics and Modern Technology",
"split": "1",
"questions": [
"Is there a dataset on the use of artificial intelligence in medical decision-making and its ethical implications?",
"Are there datasets available that examine the ethical considerations surrounding gene editing and gene therapy?",
"Can I find a dataset that explores the ethical concerns related to the use of big data in medical research and healthcare delivery?"
]
},
{
"query_id": "65",
"query_text": "Privatization of State Assets",
"split": "1",
"questions": [
"What are the datasets available on the privatization of state assets?",
"What datasets track the effects of privatization on state assets?",
"What are the datasets that analyze the impact of privatization on employment rates and economic growth?"
]
},
{
"query_id": "66",
"query_text": "McDonnell Douglas Contracts for Military Aircraft",
"split": "4",
"questions": [
"What datasets are available on McDonnell Douglas contracts for military aircraft?",
"Is there a dataset that provides information on the total value of McDonnell Douglas contracts awarded for military aircraft over time?",
"Are there any datasets that analyze the types of military aircraft produced by McDonnell Douglas under contract and their capabilities and performance?"
]
},
{
"query_id": "67",
"query_text": "The Human Genome Project",
"split": "4",
"questions": [
"What datasets are available on the human genome project?",
"Is there a dataset that provides information on the sequencing and mapping of the human genome, including genetic variations and their association with diseases?",
"Are there any datasets available that analyze the impact of the human genome project on biomedical research, drug development, and personalized medicine?"
]
},
{
"query_id": "68",
"query_text": "Productivity Trends in the U.S. Economy",
"split": "2",
"questions": [
"What is the trend in productivity in the U.S. economy?",
"What datasets are available on productivity trends in the U.S. economy?",
"Are there any datasets available that analyze the factors driving productivity growth in the U.S. economy, such as technological innovation, workforce demographics, and government policies?"
]
},
{
"query_id": "69",
"query_text": "Industrial Espionage",
"split": "4",
"questions": [
"Is there a dataset that provides information on the frequency and types of industrial espionage incidents reported by different industries and countries?",
"Are there any datasets that analyze the economic impact of industrial espionage on affected industries?"
]
},
{
"query_id": "70",
"query_text": "U.S. Political Campaign Financing",
"split": "4",
"questions": [
"What are the sources of funding for political campaigns in the US?",
"Can you provide a dataset on the amount of money spent on political campaigns in the US by year and candidate/party?"
]
},
{
"query_id": "71",
"query_text": "Coping with overcrowded prisons",
"split": "4",
"questions": [
"Is there a dataset that provides information on the demographics and offenses of inmates in overcrowded prisons?",
"Are there any datasets available that analyze the effectiveness of different strategies for reducing prison overcrowding?"
]
},
{
"query_id": "72",
"query_text": "Insurance Coverage which pays for Long Term Care",
"split": "4",
"questions": [
"What are the available datasets on insurance coverage for long-term care in the United States?",
"Is there a dataset that provides information on the types of insurance policies that cover long-term care?",
"Are there any datasets that analyze the affordability and accessibility of long-term care insurance coverage?"
]
},
{
"query_id": "73",
"query_text": "Oil Spills",
"split": "1",
"questions": [
"What datasets are available on the environmental impact of oil spills?",
"Is there a dataset on the frequency and severity of oil spills in a particular region?"
]
},
{
"query_id": "74",
"query_text": "Efforts to enact Gun Control Legislation",
"split": "0",
"questions": [
"What are the recent statistics on gun violence incidents in the United States?",
"What are the arguments for and against gun control legislation in the United States?",
"What datasets are available on gun sales, gun ownership, and gun violence incidents in the United States?"
]
},
{
"query_id": "75",
"query_text": "Causes and treatments of multiple sclerosis (MS)",
"split": "4",
"questions": [
"Is there a dataset that provides information on the genetic, environmental, and lifestyle factors that contribute to the development of MS?",
"Are there any datasets available that analyze the socioeconomic impact of MS?"
]
},
{
"query_id": "76",
"query_text": "Electric Car Development",
"split": "2",
"questions": [
"What are the latest trends in electric car development?",
"Is there a dataset that provides information on the growth and market share of electric cars, broken down by manufacturer, model, and region?",
"Are there any datasets available that analyze the technological advancements and innovations in electric car production?"
]
},
{
"query_id": "77",
"query_text": "Acid Rain",
"split": "0",
"questions": [
"What are the sources of acid rain?",
"Is there a dataset that provides information on the sources and distribution of acid rain?",
"Are there any datasets available that analyze the policy responses and mitigation strategies for acid rain?"
]
},
{
"query_id": "78",
"query_text": "Automobile Recalls",
"split": "2",
"questions": [
"What datasets are available on automobile recalls in the United States?",
"What data is available on the causes of automobile recalls?",
"Are there any datasets on the financial impact of automobile recalls on manufacturers?"
]
},
{
"query_id": "79",
"query_text": "Vietnam Veterans and Agent Orange",
"split": "3",
"questions": [
"What are the long-term health effects of Agent Orange exposure among Vietnam veterans?",
"How many Vietnam veterans have been affected by health problems associated with Agent Orange exposure?",
"Which areas of Vietnam were heavily sprayed with Agent Orange during the war?"
]
},
{
"query_id": "80",
"query_text": "Tobacco company advertising and the young",
"split": "1",
"questions": [
"What is the correlation between tobacco advertising exposure and youth smoking rates?",
"Is there a dataset that provides information on the health effects of Agent Orange exposure among U.S. military personnel who served in Vietnam?",
"Are there any datasets available that analyze the compensation and benefits provided to Vietnam veterans and their families who have been affected by Agent Orange exposure?"
]
},
{
"query_id": "81",
"query_text": "Standardized testing and cultural bias",
"split": "3",
"questions": [
"What datasets are available on standardized testing and cultural bias?",
"Are there any datasets that explore the relationship between cultural bias and standardized testing?",
"Can you recommend any datasets on the impact of cultural bias on standardized testing scores?"
]
},
{
"query_id": "82",
"query_text": "Financing AMTRAK",
"split": "1",
"questions": [
"What datasets are available on the financial performance of AMTRAK and its funding sources?",
"Can you recommend any datasets that explore the effectiveness of different financing models for AMTRAK?",
"What are the major sources of revenue for AMTRAK besides federal funding?"
]
},
{
"query_id": "83",
"query_text": "Cost of Garbage/Trash Removal",
"split": "4",
"questions": [
"What datasets are available on the cost of garbage/trash removal in different cities around the world?",
"Are there any datasets that explore the relationship between the cost of garbage/trash removal and local recycling initiatives?",
"Can you recommend any datasets on the economic impact of reducing waste through improved garbage/trash removal practices?"
]
},
{
"query_id": "84",
"query_text": "The Consequences of Implantation of Silicone Gel Breast Devices",
"split": "2",
"questions": [
"What are the health consequences of the implantation of silicone gel breast devices?",
"Is there a dataset available that details the complications and side effects of silicone gel breast implants?"
]
},
{
"query_id": "85",
"query_text": "Use of Mutual Funds in an Individual's Retirement Strategy",
"split": "4",
"questions": [
"Are there any datasets that explore the relationship between the type of mutual fund and retirement savings outcomes?",
"Can you recommend any datasets on the long-term performance of mutual funds as part of an individual's retirement strategy?",
"How do mutual funds impact an individual's retirement savings plan?"
]
},
{
"query_id": "86",
"query_text": "The Effectiveness of Medical Products and Related Programs Utilized in the Cessation of Smoking.",
"split": "3",
"questions": [
"What is the impact of smoking cessation programs on long-term quitting rates?",
"What datasets are available on the effectiveness of medical products, such as nicotine replacement therapy, in smoking cessation programs?",
"Are there any datasets that explore the relationship between the length of smoking cessation programs and success rates using medical products?"
]
},
{
"query_id": "87",
"query_text": "Smoking Bans",
"split": "2",
"questions": [
"What is the impact of smoking bans on public health?",
"What datasets are available on the impact of smoking bans on public health?",
"Are there any datasets that explore the relationship between smoking bans and changes in smoking behavior or tobacco consumption?"
]
},
{
"query_id": "88",
"query_text": "Hazardous Waste Cleanup",
"split": "4",
"questions": [
"What datasets are available on the environmental impact of hazardous waste cleanup efforts?",
"Are there any datasets that explore the relationship between the type of hazardous waste and the effectiveness of cleanup methods?",
"Can you recommend any datasets on the economic impact of hazardous waste cleanup?"
]
},
{
"query_id": "89",
"query_text": "Real-life private investigators",
"split": "0",
"questions": [
"What datasets are available on the success rates of private investigators in solving real-life cases?",
"Are there any datasets that explore the relationship between the experience level of a private investigator and their success rate in solving cases?",
"Can you recommend any datasets on the economic impact of private investigator services?"
]
},
{
"query_id": "90",
"query_text": "English as the Official Language in U.S.",
"split": "0",
"questions": [
"What datasets are available on the impact of English as the official language in the US on communication and integration among diverse communities?",
"Are there any datasets that explore the relationship between language proficiency and access to resources or opportunities in the US?",
"Can you recommend any datasets on the economic impact of adopting English as the official language in the US?"
]
},
{
"query_id": "91",
"query_text": "Dog Maulings",
"split": "1",
"questions": [
"What is the dataset that provides information on dog maulings?",
"Is there a comprehensive dataset available that documents incidents of dog maulings?",
"Where can I find a dataset related to dog attacks and maulings?"
]
},
{
"query_id": "92",
"query_text": "U. S. Restaurants in Foreign Lands",
"split": "4",
"questions": [
"Is there a dataset available that lists U.S. restaurants operating in foreign countries?",
"Where can I find data on U.S. restaurant chains that have locations in foreign countries?",
"What dataset provides information on the presence of American restaurants in international markets?"
]
},
{
"query_id": "93",
"query_text": "Abuse of the Elderly by Family Members, and Medical and Nonmedical Personnel, and Initiatives Being Taken to Minimize This Mistreatment",
"split": "3",
"questions": [
"What datasets are available on the abuse of elderly individuals by family members and medical/non-medical personnel?",
"Where can I find data on mistreatment of the elderly, including abuse by family members and healthcare professionals?",
"Is there a comprehensive dataset available that documents incidents of elder abuse perpetrated by family members and caregivers?"
]
},
{
"query_id": "94",
"query_text": "Asbestos Related Lawsuits",
"split": "1",
"questions": [
"What is the dataset that provides information on asbestos-related lawsuits?",
"Where can I find data on legal cases related to asbestos exposure and resulting health problems?",
"Is there a comprehensive dataset available that documents asbestos-related litigation, including the outcomes of lawsuits and settlements?"
]
},
{
"query_id": "95",
"query_text": "Corporate Pension Plans/Funds",
"split": "2",
"questions": [
"What datasets are available on corporate pension plans and funds?",
"Where can I find data on the investments and performance of corporate pension plans?",
"Is there a comprehensive dataset available that documents information about corporate-sponsored retirement plans?"
]
},
{
"query_id": "96",
"query_text": "Reform of the U.S. Welfare System",
"split": "3",
"questions": [
"What is the dataset that provides information on the U.S. welfare system reform?",
"Where can I find data on the implementation and impact of welfare reform efforts in the United States?",
"Is there a comprehensive dataset available that documents changes made to the U.S. welfare system in recent years?"
]
},
{
"query_id": "97",
"query_text": "Difference of Learning Levels Among Inner City and More Suburban School Students",
"split": "0",
"questions": [
"What are the main factors contributing to differences in learning levels between inner city and suburban students?",
"How do inner city schools compare to suburban schools in terms of resources, teacher qualifications, and teaching methods?",
"Where can I find data on academic achievement disparities between students from inner city schools versus those from suburban schools?"
]
},
{
"query_id": "98",
"query_text": "Beachfront Erosion",
"split": "0",
"questions": [
"What is the dataset that provides information on beachfront erosion?",
"Where can I find data on the rates and causes of coastal erosion, particularly in beachfront areas?",
"Is there a comprehensive dataset available that documents the extent of beachfront erosion over time?"
]
},
{
"query_id": "99",
"query_text": "Real Motives for Murder",
"split": "1",
"questions": [
"What datasets are available that analyze the motives behind murder cases?",
"Is there a dataset that explores the underlying reasons behind different types of murders?",
"Where can I find a dataset that analyzes the motives of murderers in various criminal cases?"
]
},
{
"query_id": "100",
"query_text": "Efforts to Improve U.S. Schooling",
"split": "4",
"questions": [
"What initiatives have been implemented to improve the quality of education in the United States?",
"How has the U.S. government worked to address the achievement gap between students in low-income, urban areas and those in more affluent suburbs?",
"What research has been done on effective teaching strategies and classroom environments that have shown to positively impact student performance?",
"How have advancements in technology and online learning impacted traditional classroom instruction in American schools?"
]
},
{
"query_id": "101",
"query_text": "Oil Spill Cleanup",
"split": "3",
"questions": [
"Where can I find a comprehensive dataset on the environmental impact of oil spills?",
"Is there a dataset that tracks the effectiveness of different oil spill cleaning techniques?"
]
},
{
"query_id": "102",
"query_text": "Gene Therapy and Its Benefits to Humankind",
"split": "1",
"questions": [
"What datasets are available on successful treatments?",
"Can you recommend a dataset that showcases the impact of gene therapy on diseases in humans?"
]
},
{
"query_id": "103",
"query_text": "Impact of foreign textile imports on U.S. textile industry",
"split": "2",
"questions": [
"What is the effect of foreign textile imports on the U.S. textile industry?",
"How has the influx of imported textiles affected the economic growth and sustainability of the U.S. textile industry?",
"Can you recommend a dataset that showcases the extent to which foreign textile imports have displaced domestic production in the U.S.?"
]
},
{
"query_id": "104",
"query_text": "Non-invasive procedures for persons with heart ailments",
"split": "4",
"questions": [
"What are some non-invasive medical procedures that can be used to treat heart ailments?",
"Is there a dataset available that lists non-invasive treatments for individuals with heart conditions?",
"Can you suggest some non-invasive techniques for managing heart disease in patients?"
]
},
{
"query_id": "105",
"query_text": "Environmental Protection",
"split": "4",
"questions": [
"What datasets are available related to environmental protection?",
"How do environmental protection measures impact different industries?",
"Can you provide data on the effectiveness of various environmental protection policies?"
]
},