-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_atis-ud-dev.conllu
8360 lines (7788 loc) · 341 KB
/
en_atis-ud-dev.conllu
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
# sent_id = 0001.dev
# text = i would like the cheapest flight from pittsburgh to atlanta leaving april twenty fifth and returning may sixth
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 would will AUX _ _ 3 aux _ _
3 like like VERB _ VerbForm=Inf 0 root _ _
4 the the DET _ PronType=Art 6 det _ _
5 cheapest cheap ADJ _ Degree=Sup 6 amod _ _
6 flight flight NOUN _ Number=Sing 3 obj _ _
7 from from ADP _ _ 8 case _ _
8 pittsburgh Pittsburgh PROPN _ Number=Sing 6 nmod _ _
9 to to ADP _ _ 10 case _ _
10 atlanta Atlanta PROPN _ Number=Sing 8 nmod _ _
11 leaving leave VERB _ Tense=Pres|VerbForm=Part 6 acl:relcl _ _
12 april April NOUN _ Number=Sing 11 obl _ _
13 twenty twenty NUM _ NumType=Card 12 appos _ _
14 fifth five ADJ _ Degree=Pos|NumType=Ord 13 amod _ _
15 and and CCONJ _ _ 16 cc _ _
16 returning return VERB _ Tense=Pres|VerbForm=Part 11 conj _ _
17 may May NOUN _ Number=Sing 16 obl _ _
18 sixth six ADJ _ Degree=Pos|NumType=Ord 17 amod _ _
# sent_id = 0002.dev
# text = i want a flight from memphis to seattle that arrives no later than 3 pm
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 want want VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 a a DET _ PronType=Art 4 det _ _
4 flight flight NOUN _ Number=Sing 2 obj _ _
5 from from ADP _ _ 6 case _ _
6 memphis Memphis PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 seattle Seattle PROPN _ Number=Sing 4 nmod _ _
9 that that ADP _ _ 10 nsubj _ _
10 arrives arrive VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 acl:relcl _ _
11 no no DET _ PronType=Art 12 det _ _
12 later late ADV _ Degree=Pos 10 obl _ _
13 than than ADP _ _ 15 case _ _
14 3 3 NUM _ NumType=Card 15 nummod _ _
15 pm pm NOUN _ Number=Sing 12 nmod _ _
# sent_id = 0003.dev
# text = show me round trip flights from chicago to detroit leaving next tuesday and returning the day after
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 round round NOUN _ Number=Sing 4 compound _ _
4 trip trip NOUN _ Number=Sing 5 compound _ _
5 flights flight NOUN _ Number=Plur 1 obj _ _
6 from from ADP _ _ 7 case _ _
7 chicago Chicago PROPN _ Number=Sing 5 nmod _ _
8 to to ADP _ _ 9 case _ _
9 detroit Detroit PROPN _ Number=Sing 5 nmod _ _
10 leaving leave VERB _ Tense=Pres|VerbForm=Part 5 acl:relcl _ _
11 next next ADJ _ Degree=Pos 12 amod _ _
12 tuesday Tuesday NOUN _ Number=Sing 10 obl _ _
13 and and CCONJ _ _ 14 cc _ _
14 returning return VERB _ Tense=Pres|VerbForm=Part 10 conj _ _
15 the the DET _ PronType=Art 16 det _ _
16 day day NOUN _ Number=Sing 14 obl _ _
17 after after ADP _ _ 16 amod _ _
# sent_id = 0004.dev
# text = what does d s stand for for meals
1 what what PRON _ PronType=Int,Rel 5 obj _ _
2 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _
3 d D PROPN _ Number=Sing 5 nsubj _ _
4 s S PROPN _ Number=Sing 3 flat _ _
5 stand stand VERB _ VerbForm=Inf 0 root _ _
6 for for ADP _ _ 5 compound:prt _ _
7 for for ADP _ _ 8 case _ _
8 meals meal NOUN _ Number=Plur 5 obl _ _
# sent_id = 0005.dev
# text = show me all flights from atlanta to denver which leave after 5 o'clock pm the day after tomorrow
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 all all DET _ PronType=Art 4 det _ _
4 flights flight NOUN _ Number=Plur 1 obj _ _
5 from from ADP _ _ 6 case _ _
6 atlanta Atlanta PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 denver Denver PROPN _ Number=Sing 4 nmod _ _
9 which which DET _ PronType=Int,Rel 10 nsubj _ _
10 leave leave VERB _ VerbForm=Inf 4 acl:relcl _ _
11 after after ADP _ _ 13 case _ _
12 5 5 NUM _ NumType=Card 13 nummod _ _
13 o'clock o'clock ADV _ Degree=Pos 14 compound _ _
14 pm pm NOUN _ Number=Sing 10 obl _ _
15 the the DET _ PronType=Art 16 det _ _
16 day day NOUN _ Number=Sing 10 obl _ _
17 after after ADP _ _ 18 case _ _
18 tomorrow tomorrow NOUN _ Number=Sing 16 nmod _ _
# sent_id = 0006.dev
# text = what flight from denver to pittsburgh arrives earliest in the morning
1 what what DET _ PronType=Int,Rel 2 det _ _
2 flight flight NOUN _ Number=Sing 7 nsubj _ _
3 from from ADP _ _ 4 case _ _
4 denver Denver PROPN _ Number=Sing 2 nmod _ _
5 to to ADP _ _ 6 case _ _
6 pittsburgh Pittsburgh PROPN _ Number=Sing 2 nmod _ _
7 arrives arrive VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
8 earliest early ADJ _ Degree=Sup 11 amod _ _
9 in in ADP _ _ 11 case _ _
10 the the DET _ PronType=Art 11 det _ _
11 morning morning NOUN _ Number=Sing 7 obl _ _
# sent_id = 0007.dev
# text = could i have listings of flights from new york to montreal canada leaving on wednesday
1 could can AUX _ _ 3 aux _ _
2 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
3 have have VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
4 listings listing NOUN _ Number=Plur 3 obj _ _
5 of of ADP _ _ 6 case _ _
6 flights flight NOUN _ Number=Plur 4 nmod _ _
7 from from ADP _ _ 8 case _ _
8 new New PROPN _ Number=Sing 6 nmod _ _
9 york York PROPN _ Number=Sing 8 flat _ _
10 to to ADP _ _ 11 case _ _
11 montreal Montreal PROPN _ Number=Sing 6 nmod _ _
12 canada Canada PROPN _ Number=Sing 11 appos _ _
13 leaving leave VERB _ Tense=Pres|VerbForm=Part 6 acl:relcl _ _
14 on on ADP _ _ 15 case _ _
15 wednesday Wednesday NOUN _ Number=Sing 13 obl _ _
# sent_id = 0008.dev
# text = list the tower air flights on mondays
1 list list VERB _ VerbForm=Inf 0 root _ _
2 the the DET _ PronType=Art 5 det _ _
3 tower Tower PROPN _ Number=Sing 5 compound _ _
4 air Air PROPN _ Number=Sing 3 flat _ _
5 flights flight NOUN _ Number=Plur 1 obj _ _
6 on on ADP _ _ 7 case _ _
7 mondays monday PROPN _ Number=Plur 5 nmod:tmod _ _
# sent_id = 0009.dev
# text = display all flights leaving from toronto to san diego on us air laying over in washington dc
1 display display VERB _ VerbForm=Inf 0 root _ _
2 all all DET _ PronType=Art 3 det _ _
3 flights flight NOUN _ Number=Plur 1 obj _ _
4 leaving leave VERB _ Tense=Pres|VerbForm=Part 3 acl:relcl _ _
5 from from ADP _ _ 6 case _ _
6 toronto Toronto PROPN _ Number=Sing 4 obl _ _
7 to to ADP _ _ 8 case _ _
8 san San PROPN _ Number=Sing 4 obl _ _
9 diego Diego PROPN _ Number=Sing 8 flat _ _
10 on on ADP _ _ 11 case _ _
11 us US PROPN _ Number=Sing 4 obl _ _
12 air air NOUN _ Number=Sing 11 flat _ _
13 laying lay VERB _ Tense=Pres|VerbForm=Part 3 acl:relcl _ _
14 over over ADP _ _ 13 compound:prt _ _
15 in in ADP _ _ 16 case _ _
16 washington Washington PROPN _ Number=Sing 13 obl _ _
17 dc DC PROPN _ Number=Sing 16 flat _ _
# sent_id = 0010.dev
# text = what is restriction ap57
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 restriction restriction NOUN _ Number=Sing 4 compound _ _
4 ap57 Ap57 PROPN _ Number=Sing 1 nsubj _ _
# sent_id = 0011.dev
# text = i need information for ground transportation denver colorado
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 need need VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 information information NOUN _ Number=Sing 2 obj _ _
4 for for ADP _ _ 6 case _ _
5 ground ground NOUN _ Number=Sing 6 compound _ _
6 transportation transportation NOUN _ Number=Sing 3 nmod _ _
7 denver Denver PROPN _ Number=Sing 6 list _ _
8 colorado Colorado PROPN _ Number=Sing 7 appos _ _
# sent_id = 0012.dev
# text = what are the nonstop flights from kansas city to burbank arriving on saturday may twenty two
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 5 det _ _
4 nonstop nonstop ADJ _ Degree=Pos 5 amod _ _
5 flights flight NOUN _ Number=Plur 1 nsubj _ _
6 from from ADP _ _ 7 case _ _
7 kansas Kansas PROPN _ Number=Sing 5 nmod _ _
8 city City PROPN _ Number=Sing 7 flat _ _
9 to to ADP _ _ 10 case _ _
10 burbank Burbank PROPN _ Number=Sing 5 nmod _ _
11 arriving arrive VERB _ Tense=Pres|VerbForm=Part 5 acl:relcl _ _
12 on on ADP _ _ 13 case _ _
13 saturday Saturday NOUN _ Number=Sing 11 obl _ _
14 may May NOUN _ Number=Sing 13 appos _ _
15 twenty twenty NUM _ NumType=Card 16 compound _ _
16 two two NUM _ NumType=Card 14 nummod _ _
# sent_id = 0013.dev
# text = i would like to book a flight on june first from los angeles to pittsburgh in the late afternoon
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 would will AUX _ _ 3 aux _ _
3 like like VERB _ VerbForm=Inf 0 root _ _
4 to to ADP _ _ 5 case _ _
5 book book VERB _ VerbForm=Inf 3 xcomp _ _
6 a a DET _ PronType=Art 7 det _ _
7 flight flight NOUN _ Number=Sing 5 obj _ _
8 on on ADP _ _ 9 case _ _
9 june June NOUN _ Number=Sing 7 nmod:tmod _ _
10 first one ADJ _ Degree=Pos|NumType=Ord 9 amod _ _
11 from from ADP _ _ 12 case _ _
12 los Los PROPN _ Number=Sing 7 nmod _ _
13 angeles Angeles PROPN _ Number=Sing 12 flat _ _
14 to to ADP _ _ 15 case _ _
15 pittsburgh Pittsburgh PROPN _ Number=Sing 7 nmod _ _
16 in in ADP _ _ 19 case _ _
17 the the DET _ PronType=Art 19 det _ _
18 late late ADJ _ Degree=Pos 19 amod _ _
19 afternoon afternoon NOUN _ Number=Sing 7 nmod:tmod _ _
# sent_id = 0014.dev
# text = what is meal code sb
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 meal meal NOUN _ Number=Sing 4 compound _ _
4 code code NOUN _ Number=Sing 1 nsubj _ _
5 sb SB PROPN _ Number=Sing 4 appos _ _
# sent_id = 0015.dev
# text = and now show me ground transportation that i could get in boston late night
1 and and CCONJ _ _ 3 cc _ _
2 now now ADV _ Degree=Pos 3 advmod _ _
3 show show VERB _ VerbForm=Inf 0 root _ _
4 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 3 iobj _ _
5 ground ground NOUN _ Number=Sing 6 compound _ _
6 transportation transportation NOUN _ Number=Sing 3 obj _ _
7 that that ADP _ _ 10 obj _ _
8 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 10 nsubj _ _
9 could can AUX _ _ 10 aux _ _
10 get get VERB _ VerbForm=Inf 6 acl:relcl _ _
11 in in ADP _ _ 12 case _ _
12 boston Boston PROPN _ Number=Sing 10 obl _ _
13 late late ADJ _ Degree=Pos 14 amod _ _
14 night night NOUN _ Number=Sing 10 obl _ _
# sent_id = 0016.dev
# text = show me the nonstop flights from atlanta to oakland that leave in the afternoon and arrive between 430 pm and 630 pm
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 the the DET _ PronType=Art 5 det _ _
4 nonstop nonstop ADJ _ Degree=Pos 5 amod _ _
5 flights flight NOUN _ Number=Plur 1 obj _ _
6 from from ADP _ _ 7 case _ _
7 atlanta Atlanta PROPN _ Number=Sing 5 nmod _ _
8 to to ADP _ _ 9 case _ _
9 oakland Oakland PROPN _ Number=Sing 5 nmod _ _
10 that that ADP _ _ 11 nsubj _ _
11 leave leave VERB _ VerbForm=Inf 5 acl:relcl _ _
12 in in ADP _ _ 14 case _ _
13 the the DET _ PronType=Art 14 det _ _
14 afternoon afternoon NOUN _ Number=Sing 11 obl _ _
15 and and CCONJ _ _ 16 cc _ _
16 arrive arrive VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 11 conj _ _
17 between between ADP _ _ 19 case _ _
18 430 430 NUM _ NumType=Card 19 nummod _ _
19 pm pm NOUN _ Number=Sing 16 obl _ _
20 and and CCONJ _ _ 22 cc _ _
21 630 630 NUM _ NumType=Card 22 nummod _ _
22 pm pm NOUN _ Number=Sing 19 conj _ _
# sent_id = 0017.dev
# text = on monday i would like to travel from charlotte north carolina to phoenix arizona i would like to arrive in phoenix before 4 pm
1 on on ADP _ _ 2 case _ _
2 monday Monday NOUN _ Number=Sing 5 obl _ _
3 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 5 nsubj _ _
4 would will AUX _ _ 5 aux _ _
5 like like VERB _ VerbForm=Inf 17 parataxis _ _
6 to to PART _ _ 7 mark _ _
7 travel travel VERB _ VerbForm=Inf 5 xcomp _ _
8 from from ADP _ _ 9 case _ _
9 charlotte Charlotte PROPN _ Number=Sing 7 obl _ _
10 north North PROPN _ Number=Sing 9 appos _ _
11 carolina Carolina PROPN _ Number=Sing 10 flat _ _
12 to to ADP _ _ 13 case _ _
13 phoenix Phoenix PROPN _ Number=Sing 7 obl _ _
14 arizona Arizona PROPN _ Number=Sing 13 appos _ _
15 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 17 nsubj _ _
16 would will AUX _ _ 17 aux _ _
17 like like VERB _ VerbForm=Inf 0 root _ _
18 to to ADP _ _ 19 case _ _
19 arrive arrive VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 17 xcomp _ _
20 in in ADP _ _ 21 case _ _
21 phoenix Phoenix PROPN _ Number=Sing 19 obl _ _
22 before before ADP _ _ 24 case _ _
23 4 4 NUM _ NumType=Card 24 nummod _ _
24 pm pm NOUN _ Number=Sing 19 obl _ _
# sent_id = 0018.dev
# text = show me all ground transportation in washington dc
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 all all DET _ PronType=Art 5 det _ _
4 ground ground NOUN _ Number=Sing 5 compound _ _
5 transportation transportation NOUN _ Number=Sing 1 obj _ _
6 in in ADP _ _ 7 case _ _
7 washington Washington PROPN _ Number=Sing 5 nmod _ _
8 dc DC PROPN _ Number=Sing 7 flat _ _
# sent_id = 0019.dev
# text = can you show me flights that are economy class from baltimore to dallas
1 can can AUX _ _ 3 aux _ _
2 you you PRON _ Case=Nom|Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
3 show show VERB _ VerbForm=Inf 0 root _ _
4 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 3 iobj _ _
5 flights flight NOUN _ Number=Plur 3 obj _ _
6 that that ADP _ _ 9 nsubj _ _
7 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 9 cop _ _
8 economy economy NOUN _ Number=Sing 9 compound _ _
9 class class NOUN _ Number=Sing 5 acl:relcl _ _
10 from from ADP _ _ 11 case _ _
11 baltimore Baltimore PROPN _ Number=Sing 5 nmod _ _
12 to to ADP _ _ 13 case _ _
13 dallas Dallas PROPN _ Number=Sing 5 nmod _ _
# sent_id = 0020.dev
# text = flights from pittsburgh to baltimore between 10 am and 2 pm
1 flights flight NOUN _ Number=Plur 0 root _ _
2 from from ADP _ _ 3 case _ _
3 pittsburgh Pittsburgh PROPN _ Number=Sing 1 nmod _ _
4 to to ADP _ _ 5 case _ _
5 baltimore Baltimore PROPN _ Number=Sing 1 nmod _ _
6 between between ADP _ _ 8 case _ _
7 10 10 NUM _ NumType=Card 8 nummod _ _
8 am am NOUN _ Number=Sing 1 nmod:tmod _ _
9 and and CCONJ _ _ 11 cc _ _
10 2 2 NUM _ NumType=Card 11 nummod _ _
11 pm pm NOUN _ Number=Sing 8 conj _ _
# sent_id = 0021.dev
# text = what meals are served on american flight 811 from tampa to milwaukee
1 what what DET _ PronType=Int,Rel 2 det _ _
2 meals meal NOUN _ Number=Plur 4 nsubj _ _
3 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux _ _
4 served serve VERB _ Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
5 on on ADP _ _ 7 case _ _
6 american American PROPN _ Number=Sing 7 compound _ _
7 flight flight NOUN _ Number=Sing 4 obl _ _
8 811 811 NUM _ NumType=Card 7 appos _ _
9 from from ADP _ _ 10 case _ _
10 tampa Tampa PROPN _ Number=Sing 7 nmod _ _
11 to to ADP _ _ 12 case _ _
12 milwaukee Milwaukee PROPN _ Number=Sing 7 nmod _ _
# sent_id = 0022.dev
# text = i need to go from boston to atlanta and back in the same day find me the earliest flight from boston
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 need need VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 15 parataxis _ _
3 to to PART _ _ 4 mark _ _
4 go go VERB _ VerbForm=Inf 2 xcomp _ _
5 from from ADP _ _ 6 case _ _
6 boston Boston PROPN _ Number=Sing 4 obl _ _
7 to to ADP _ _ 8 case _ _
8 atlanta Atlanta PROPN _ Number=Sing 4 obl _ _
9 and and CCONJ _ _ 10 cc _ _
10 back back ADV _ Degree=Pos 8 conj _ _
11 in in ADP _ _ 14 case _ _
12 the the DET _ PronType=Art 14 det _ _
13 same same ADJ _ Degree=Pos 14 amod _ _
14 day day NOUN _ Number=Sing 4 obl _ _
15 find find VERB _ VerbForm=Inf 0 root _ _
16 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 15 iobj _ _
17 the the DET _ PronType=Art 19 det _ _
18 earliest early ADJ _ Degree=Sup 19 amod _ _
19 flight flight NOUN _ Number=Sing 15 obj _ _
20 from from ADP _ _ 21 case _ _
21 boston Boston PROPN _ Number=Sing 19 nmod _ _
# sent_id = 0023.dev
# text = what is the earliest arriving flight from houston to orlando
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 6 det _ _
4 earliest early ADV _ Degree=Sup 5 advmod _ _
5 arriving arrive VERB _ Tense=Pres|VerbForm=Part 6 acl _ _
6 flight flight NOUN _ Number=Sing 1 nsubj _ _
7 from from ADP _ _ 8 case _ _
8 houston Houston PROPN _ Number=Sing 6 nmod _ _
9 to to ADP _ _ 10 case _ _
10 orlando Orlando PROPN _ Number=Sing 6 nmod _ _
# sent_id = 0024.dev
# text = what are the first class and coach fares for flights from chicago to kansas city arriving around 7 pm next thursday
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 8 det _ _
4 first one ADJ _ Degree=Pos|NumType=Ord 5 amod _ _
5 class class NOUN _ Number=Sing 8 compound _ _
6 and and CCONJ _ _ 7 cc _ _
7 coach Coach PROPN _ Number=Sing 5 conj _ _
8 fares fare NOUN _ Number=Plur 1 nsubj _ _
9 for for ADP _ _ 10 case _ _
10 flights flight NOUN _ Number=Plur 8 nmod _ _
11 from from ADP _ _ 12 case _ _
12 chicago Chicago PROPN _ Number=Sing 10 nmod _ _
13 to to ADP _ _ 14 case _ _
14 kansas Kansas PROPN _ Number=Sing 10 nmod _ _
15 city City PROPN _ Number=Sing 14 flat _ _
16 arriving arrive VERB _ Tense=Pres|VerbForm=Part 10 acl:relcl _ _
17 around around ADP _ _ 18 case _ _
18 7 7 NUM _ NumType=Card 19 nummod _ _
19 pm pm NOUN _ Number=Sing 16 obl _ _
20 next next ADJ _ Degree=Pos 21 amod _ _
21 thursday Thursday NOUN _ Number=Sing 16 obl _ _
# sent_id = 0025.dev
# text = what does ap 57 mean
1 what what PRON _ PronType=Int,Rel 5 xcomp _ _
2 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _
3 ap AP PROPN _ Number=Sing 5 nsubj _ _
4 57 57 NUM _ NumType=Card 3 flat _ _
5 mean mean VERB _ VerbForm=Inf 0 root _ _
# sent_id = 0026.dev
# text = explain restriction ap 57
1 explain explain VERB _ VerbForm=Inf 0 root _ _
2 restriction restriction NOUN _ Number=Sing 1 obj _ _
3 ap AP PROPN _ Number=Sing 2 flat _ _
4 57 57 NUM _ NumType=Card 3 flat _ _
# sent_id = 0027.dev
# text = i want to fly from denver to san francisco with at least one stop
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 want want VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 to to ADP _ _ 4 case _ _
4 fly fly VERB _ VerbForm=Inf 2 xcomp _ _
5 from from ADP _ _ 6 case _ _
6 denver Denver PROPN _ Number=Sing 4 obl _ _
7 to to ADP _ _ 8 case _ _
8 san San PROPN _ Number=Sing 4 obl _ _
9 francisco Francisco PROPN _ Number=Sing 8 flat _ _
10 with with ADP _ _ 14 case _ _
11 at at ADP _ _ 12 case _ _
12 least least ADJ _ Degree=Sup 14 amod _ _
13 one one NUM _ NumType=Card 14 nummod _ _
14 stop stop NOUN _ Number=Sing 4 obl _ _
# sent_id = 0028.dev
# text = please list the shortest one stop flight from ontario california to orlando florida
1 please please INTJ _ _ 2 discourse _ _
2 list list VERB _ VerbForm=Inf 0 root _ _
3 the the DET _ PronType=Art 7 det _ _
4 shortest short ADJ _ Degree=Sup 7 amod _ _
5 one one NUM _ NumType=Card 6 nummod _ _
6 stop stop NOUN _ Number=Sing 7 compound _ _
7 flight flight NOUN _ Number=Sing 2 obj _ _
8 from from ADP _ _ 9 case _ _
9 ontario Ontario PROPN _ Number=Sing 7 nmod _ _
10 california California PROPN _ Number=Sing 9 appos _ _
11 to to ADP _ _ 12 case _ _
12 orlando Orlando PROPN _ Number=Sing 7 nmod _ _
13 florida Florida PROPN _ Number=Sing 12 appos _ _
# sent_id = 0029.dev
# text = tell me about flights leaving from atlanta and going to charlotte north carolina next monday i need to know about flights that arrive in charlotte between 415 and 530 pm
1 tell tell VERB _ VerbForm=Inf 17 parataxis _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 about about ADP _ _ 4 case _ _
4 flights flight NOUN _ Number=Plur 1 obj _ _
5 leaving leave VERB _ Tense=Pres|VerbForm=Part 4 acl:relcl _ _
6 from from ADP _ _ 7 case _ _
7 atlanta Atlanta PROPN _ Number=Sing 5 obl _ _
8 and and CCONJ _ _ 9 cc _ _
9 going go VERB _ Tense=Pres|VerbForm=Part 5 conj _ _
10 to to ADP _ _ 11 case _ _
11 charlotte Charlotte PROPN _ Number=Sing 9 obl _ _
12 north North PROPN _ Number=Sing 11 appos _ _
13 carolina Carolina PROPN _ Number=Sing 12 flat _ _
14 next next ADJ _ Degree=Pos 15 amod _ _
15 monday Monday NOUN _ Number=Sing 9 obl _ _
16 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 17 nsubj _ _
17 need need VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
18 to to PART _ _ 19 mark _ _
19 know know VERB _ VerbForm=Inf 17 xcomp _ _
20 about about ADP _ _ 21 case _ _
21 flights flight NOUN _ Number=Plur 19 obl _ _
22 that that ADP _ _ 23 nsubj _ _
23 arrive arrive VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 21 acl:relcl _ _
24 in in ADP _ _ 25 case _ _
25 charlotte Charlotte PROPN _ Number=Sing 23 obl _ _
26 between between ADP _ _ 30 case _ _
27 415 415 NUM _ NumType=Card 30 nummod _ _
28 and and CCONJ _ _ 29 cc _ _
29 530 530 NUM _ NumType=Card 27 conj _ _
30 pm pm NOUN _ Number=Sing 23 obl _ _
# sent_id = 0030.dev
# text = list all the flights from atlanta to charlotte north carolina that leave next monday
1 list list VERB _ VerbForm=Inf 0 root _ _
2 all all DET _ PronType=Art 4 det _ _
3 the the DET _ PronType=Art 4 det _ _
4 flights flight NOUN _ Number=Plur 1 obj _ _
5 from from ADP _ _ 6 case _ _
6 atlanta Atlanta PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 charlotte Charlotte PROPN _ Number=Sing 4 nmod _ _
9 north North PROPN _ Number=Sing 8 appos _ _
10 carolina Carolina PROPN _ Number=Sing 9 flat _ _
11 that that ADP _ _ 12 nsubj _ _
12 leave leave VERB _ VerbForm=Inf 4 acl:relcl _ _
13 next next ADJ _ Degree=Pos 14 amod _ _
14 monday Monday NOUN _ Number=Sing 12 obl _ _
# sent_id = 0031.dev
# text = show me all the flights between dallas fort worth and either san francisco or oakland that depart between 5 and 7 pm
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 all all DET _ PronType=Art 5 det _ _
4 the the DET _ PronType=Art 5 det _ _
5 flights flight NOUN _ Number=Plur 1 obj _ _
6 between between ADP _ _ 7 case _ _
7 dallas Dallas PROPN _ Number=Sing 5 nmod _ _
8 fort Fort PROPN _ Number=Sing 7 appos _ _
9 worth Worth PROPN _ Number=Sing 8 flat _ _
10 and and CCONJ _ _ 12 cc _ _
11 either either CCONJ _ _ 12 cc:preconj _ _
12 san San PROPN _ Number=Sing 7 conj _ _
13 francisco Francisco PROPN _ Number=Sing 12 flat _ _
14 or or CCONJ _ _ 15 cc _ _
15 oakland Oakland PROPN _ Number=Sing 12 conj _ _
16 that that ADP _ _ 17 nsubj _ _
17 depart depart VERB _ VerbForm=Inf 5 acl:relcl _ _
18 between between ADP _ _ 22 case _ _
19 5 5 NUM _ NumType=Card 22 nummod _ _
20 and and CCONJ _ _ 21 cc _ _
21 7 7 NUM _ NumType=Card 19 conj _ _
22 pm pm NOUN _ Number=Sing 17 obl _ _
# sent_id = 0032.dev
# text = show delta airlines flights from jfk to miami
1 show show VERB _ VerbForm=Inf 0 root _ _
2 delta Delta PROPN _ Number=Sing 4 compound _ _
3 airlines airline PROPN _ Number=Plur 2 flat _ _
4 flights flight NOUN _ Number=Plur 1 obj _ _
5 from from ADP _ _ 6 case _ _
6 jfk JFK PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 miami Miami PROPN _ Number=Sing 4 nmod _ _
# sent_id = 0033.dev
# text = all flights from sfo to long beach
1 all all DET _ PronType=Art 2 det _ _
2 flights flight NOUN _ Number=Plur 0 root _ _
3 from from ADP _ _ 4 case _ _
4 sfo Sfo PROPN _ Number=Sing 2 nmod _ _
5 to to ADP _ _ 6 case _ _
6 long Long PROPN _ Number=Sing 2 nmod _ _
7 beach Beach PROPN _ Number=Sing 6 flat _ _
# sent_id = 0034.dev
# text = what is the number of first class flights on american airlines
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 4 det _ _
4 number number NOUN _ Number=Sing 1 nsubj _ _
5 of of ADP _ _ 8 case _ _
6 first one ADJ _ Degree=Pos|NumType=Ord 7 amod _ _
7 class class NOUN _ Number=Sing 8 compound _ _
8 flights flight NOUN _ Number=Plur 4 nmod _ _
9 on on ADP _ _ 10 case _ _
10 american American PROPN _ Number=Sing 8 nmod _ _
11 airlines airline PROPN _ Number=Plur 10 flat _ _
# sent_id = 0035.dev
# text = i 'm trying to find the flight number from a flight from orlando to cleveland on us air and it arrives around 10 pm
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 'm be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _
3 trying try VERB _ Tense=Pres|VerbForm=Part 0 root _ _
4 to to PART _ _ 5 mark _ _
5 find find VERB _ VerbForm=Inf 3 xcomp _ _
6 the the DET _ PronType=Art 8 det _ _
7 flight flight NOUN _ Number=Sing 8 compound _ _
8 number number NOUN _ Number=Sing 5 obj _ _
9 from from ADP _ _ 11 case _ _
10 a a DET _ PronType=Art 11 det _ _
11 flight flight NOUN _ Number=Sing 8 nmod _ _
12 from from ADP _ _ 13 case _ _
13 orlando Orlando PROPN _ Number=Sing 11 nmod _ _
14 to to ADP _ _ 15 case _ _
15 cleveland Cleveland PROPN _ Number=Sing 11 nmod _ _
16 on on ADP _ _ 17 case _ _
17 us US PROPN _ Number=Sing 11 nmod _ _
18 air Air PROPN _ Number=Sing 17 flat _ _
19 and and CCONJ _ _ 21 cc _ _
20 it it PRON _ Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 21 nsubj _ _
21 arrives arrive VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 conj _ _
22 around around ADP _ _ 24 case _ _
23 10 10 NUM _ NumType=Card 24 nummod _ _
24 pm pm NOUN _ Number=Sing 21 obl _ _
# sent_id = 0036.dev
# text = rental cars in boston
1 rental rental ADJ _ Degree=Pos 2 amod _ _
2 cars car NOUN _ Number=Plur 0 root _ _
3 in in ADP _ _ 4 case _ _
4 boston Boston PROPN _ Number=Sing 2 nmod _ _
# sent_id = 0037.dev
# text = please list the rental car information in pittsburgh
1 please please INTJ _ _ 2 discourse _ _
2 list list VERB _ VerbForm=Inf 0 root _ _
3 the the DET _ PronType=Art 6 det _ _
4 rental rental ADJ _ Degree=Pos 5 amod _ _
5 car car NOUN _ Number=Sing 6 compound _ _
6 information information NOUN _ Number=Sing 2 obj _ _
7 in in ADP _ _ 8 case _ _
8 pittsburgh Pittsburgh PROPN _ Number=Sing 6 nmod _ _
# sent_id = 0038.dev
# text = what is the ap57 restriction
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 5 det _ _
4 ap57 Ap57 PROPN _ Number=Sing 5 compound _ _
5 restriction restriction NOUN _ Number=Sing 1 nsubj _ _
# sent_id = 0039.dev
# text = list the flights arriving in atlanta from boston between 4 and 8 pm
1 list list VERB _ VerbForm=Inf 0 root _ _
2 the the DET _ PronType=Art 3 det _ _
3 flights flight NOUN _ Number=Plur 1 obj _ _
4 arriving arrive VERB _ Tense=Pres|VerbForm=Part 3 acl:relcl _ _
5 in in ADP _ _ 6 case _ _
6 atlanta Atlanta PROPN _ Number=Sing 4 obl _ _
7 from from ADP _ _ 8 case _ _
8 boston Boston PROPN _ Number=Sing 4 obl _ _
9 between between ADP _ _ 13 case _ _
10 4 4 NUM _ NumType=Card 13 nummod _ _
11 and and CCONJ _ _ 12 cc _ _
12 8 8 NUM _ NumType=Card 10 conj _ _
13 pm pm NOUN _ Number=Sing 4 obl _ _
# sent_id = 0040.dev
# text = list all flights on all types of aircraft arriving in denver between 8 and 9 pm
1 list list VERB _ VerbForm=Inf 0 root _ _
2 all all DET _ PronType=Art 3 det _ _
3 flights flight NOUN _ Number=Plur 1 obj _ _
4 on on ADP _ _ 6 case _ _
5 all all DET _ PronType=Art 6 det _ _
6 types type NOUN _ Number=Plur 3 nmod _ _
7 of of ADP _ _ 8 case _ _
8 aircraft aircraft NOUN _ Number=Sing 6 nmod _ _
9 arriving arrive VERB _ Tense=Pres|VerbForm=Part 3 acl:relcl _ _
10 in in ADP _ _ 11 case _ _
11 denver Denver PROPN _ Number=Sing 9 obl _ _
12 between between ADP _ _ 16 case _ _
13 8 8 NUM _ NumType=Card 16 nummod _ _
14 and and CCONJ _ _ 15 cc _ _
15 9 9 NUM _ NumType=Card 13 conj _ _
16 pm pm NOUN _ Number=Sing 9 obl _ _
# sent_id = 0041.dev
# text = what are the fares for flights between atlanta and dfw provided by american airlines
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 4 det _ _
4 fares fare NOUN _ Number=Plur 1 nsubj _ _
5 for for ADP _ _ 6 case _ _
6 flights flight NOUN _ Number=Plur 4 nmod _ _
7 between between ADP _ _ 8 case _ _
8 atlanta Atlanta PROPN _ Number=Sing 6 nmod _ _
9 and and CCONJ _ _ 10 cc _ _
10 dfw Dfw PROPN _ Number=Sing 8 conj _ _
11 provided provide VERB _ Mood=Ind|Tense=Past|VerbForm=Fin 6 acl:relcl _ _
12 by by ADP _ _ 13 case _ _
13 american American PROPN _ Number=Sing 11 obl _ _
14 airlines airline PROPN _ Number=Plur 13 flat _ _
# sent_id = 0042.dev
# text = what 's the earliest flight from boston to bwi that serves lunch
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 's be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 5 det _ _
4 earliest early ADJ _ Degree=Sup 5 amod _ _
5 flight flight NOUN _ Number=Sing 1 nsubj _ _
6 from from ADP _ _ 7 case _ _
7 boston Boston PROPN _ Number=Sing 5 nmod _ _
8 to to ADP _ _ 9 case _ _
9 bwi Bwi PROPN _ Number=Sing 5 nmod _ _
10 that that ADP _ _ 11 nsubj _ _
11 serves serve VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 acl:relcl _ _
12 lunch lunch NOUN _ Number=Sing 11 obj _ _
# sent_id = 0043.dev
# text = to what cities from boston does america west fly first class
1 to to ADP _ _ 3 case _ _
2 what what DET _ PronType=Int,Rel 3 det _ _
3 cities city NOUN _ Number=Plur 9 obl _ _
4 from from ADP _ _ 5 case _ _
5 boston Boston PROPN _ Number=Sing 9 obl _ _
6 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux _ _
7 america America PROPN _ Number=Sing 9 nsubj _ _
8 west West PROPN _ Number=Sing 7 flat _ _
9 fly fly VERB _ VerbForm=Inf 0 root _ _
10 first one ADJ _ Degree=Pos|NumType=Ord 11 amod _ _
11 class class NOUN _ Number=Sing 9 obl _ _
# sent_id = 0044.dev
# text = what cities does northwest fly out of
1 what what DET _ PronType=Int,Rel 2 det _ _
2 cities city NOUN _ Number=Plur 5 obl _ _
3 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _
4 northwest Northwest PROPN _ Number=Sing 5 nsubj _ _
5 fly fly VERB _ VerbForm=Inf 0 root _ _
6 out out ADP _ _ 2 case _ _
7 of of ADP _ _ 2 case _ _
# sent_id = 0045.dev
# text = show me all the us air flights leaving pittsburgh between 12 and 4 in the afternoon
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 all all DET _ PronType=Art 7 det _ _
4 the the DET _ PronType=Art 7 det _ _
5 us US PROPN _ Number=Sing 7 compound _ _
6 air Air PROPN _ Number=Sing 5 flat _ _
7 flights flight NOUN _ Number=Plur 1 obj _ _
8 leaving leave VERB _ Tense=Pres|VerbForm=Part 7 acl:relcl _ _
9 pittsburgh Pittsburgh PROPN _ Number=Sing 8 obj _ _
10 between between ADP _ _ 11 case _ _
11 12 12 NUM _ NumType=Card 8 obl _ _
12 and and CCONJ _ _ 13 cc _ _
13 4 4 NUM _ NumType=Card 11 conj _ _
14 in in ADP _ _ 16 case _ _
15 the the DET _ PronType=Art 16 det _ _
16 afternoon afternoon NOUN _ Number=Sing 11 nmod:tmod _ _
# sent_id = 0046.dev
# text = list limousine rates for the city of boston
1 list list VERB _ VerbForm=Inf 0 root _ _
2 limousine limousine NOUN _ Number=Sing 3 compound _ _
3 rates rate NOUN _ Number=Plur 1 obj _ _
4 for for ADP _ _ 6 case _ _
5 the the DET _ PronType=Art 6 det _ _
6 city City PROPN _ Number=Sing 3 nmod _ _
7 of of ADP _ _ 8 case _ _
8 boston Boston PROPN _ Number=Sing 6 nmod _ _
# sent_id = 0047.dev
# text = how much does it cost to get downtown from the atlanta airport by limousine
1 how how ADV _ PronType=Int,Rel 2 advmod _ _
2 much much ADJ _ Degree=Pos 5 advmod _ _
3 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _
4 it it PRON _ Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _
5 cost cost VERB _ VerbForm=Inf 0 root _ _
6 to to PART _ _ 7 mark _ _
7 get get VERB _ VerbForm=Inf 5 obl _ _
8 downtown downtown NOUN _ Number=Sing 7 obl _ _
9 from from ADP _ _ 12 case _ _
10 the the DET _ PronType=Art 12 det _ _
11 atlanta Atlanta PROPN _ Number=Sing 12 compound _ _
12 airport Airport PROPN _ Number=Sing 7 obl _ _
13 by by ADP _ _ 14 case _ _
14 limousine limousine NOUN _ Number=Sing 7 obl _ _
# sent_id = 0048.dev
# text = please list all flights from dallas to pittsburgh on july fourth 1991
1 please please INTJ _ _ 2 discourse _ _
2 list list VERB _ VerbForm=Inf 0 root _ _
3 all all DET _ PronType=Art 4 det _ _
4 flights flight NOUN _ Number=Plur 2 obj _ _
5 from from ADP _ _ 6 case _ _
6 dallas Dallas PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 pittsburgh Pittsburgh PROPN _ Number=Sing 4 nmod _ _
9 on on ADP _ _ 10 case _ _
10 july July NOUN _ Number=Sing 4 nmod:tmod _ _
11 fourth four ADJ _ Degree=Pos|NumType=Ord 10 amod _ _
12 1991 1991 NUM _ NumType=Card 10 appos _ _
# sent_id = 0049.dev
# text = from denver to washington dc on monday november eleventh 1991
1 from from ADP _ _ 2 case _ _
2 denver Denver PROPN _ Number=Sing 0 root _ _
3 to to ADP _ _ 4 case _ _
4 washington Washington PROPN _ Number=Sing 2 list _ _
5 dc DC PROPN _ Number=Sing 4 flat _ _
6 on on ADP _ _ 7 case _ _
7 monday Monday NOUN _ Number=Sing 2 list _ _
8 november November NOUN _ Number=Sing 7 appos _ _
9 eleventh eleven ADJ _ Degree=Pos 8 amod _ _
10 1991 1991 NUM _ NumType=Card 7 appos _ _
# sent_id = 0050.dev
# text = show me a list of flights from denver to san francisco for september first 1991
1 show show VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 a a DET _ PronType=Art 4 det _ _
4 list list NOUN _ Number=Sing 1 obj _ _
5 of of ADP _ _ 6 case _ _
6 flights flight NOUN _ Number=Plur 4 nmod _ _
7 from from ADP _ _ 8 case _ _
8 denver Denver PROPN _ Number=Sing 6 obl _ _
9 to to ADP _ _ 10 case _ _
10 san San PROPN _ Number=Sing 6 obl _ _
11 francisco Francisco PROPN _ Number=Sing 10 flat _ _
12 for for ADP _ _ 13 case _ _
13 september September NOUN _ Number=Sing 6 obl _ _
14 first one ADJ _ Degree=Pos|NumType=Ord 13 amod _ _
15 1991 1991 NUM _ NumType=Card 13 appos _ _
# sent_id = 0051.dev
# text = what is the departure time of the latest flight of united airlines from denver to boston
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 5 det _ _
4 departure departure NOUN _ Number=Sing 5 compound _ _
5 time time NOUN _ Number=Sing 1 nsubj _ _
6 of of ADP _ _ 9 case _ _
7 the the DET _ PronType=Art 9 det _ _
8 latest late ADJ _ Degree=Sup 9 amod _ _
9 flight flight NOUN _ Number=Sing 5 nmod _ _
10 of of ADP _ _ 11 case _ _
11 united United PROPN _ Number=Sing 9 nmod _ _
12 airlines airline PROPN _ Number=Plur 11 flat _ _
13 from from ADP _ _ 14 case _ _
14 denver Denver PROPN _ Number=Sing 9 nmod _ _
15 to to ADP _ _ 16 case _ _
16 boston Boston PROPN _ Number=Sing 9 nmod _ _
# sent_id = 0052.dev
# text = list departure times from denver to philadelphia which are later than 10 o'clock and earlier than 2 pm
1 list list VERB _ VerbForm=Inf 0 root _ _
2 departure departure NOUN _ Number=Sing 3 compound _ _
3 times time NOUN _ Number=Plur 1 obj _ _
4 from from ADP _ _ 5 case _ _
5 denver Denver PROPN _ Number=Sing 3 nmod _ _
6 to to ADP _ _ 7 case _ _
7 philadelphia Philadelphia PROPN _ Number=Sing 3 nmod _ _
8 which which PRON _ PronType=Int,Rel 10 nsubj _ _
9 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 10 cop _ _
10 later late ADV _ Degree=Pos 3 acl:relcl _ _
11 than than ADP _ _ 13 case _ _
12 10 10 NUM _ NumType=Card 13 nummod _ _
13 o'clock o'clock ADV _ Degree=Pos 10 nmod _ _
14 and and CCONJ _ _ 15 cc _ _
15 earlier early ADJ _ Degree=Cmp 10 conj _ _
16 than than ADP _ _ 18 case _ _
17 2 2 NUM _ NumType=Card 18 nummod _ _
18 pm pm NOUN _ Number=Sing 15 nmod _ _
# sent_id = 0053.dev
# text = please list the flight times from newark to boston
1 please please INTJ _ _ 2 discourse _ _
2 list list VERB _ VerbForm=Inf 0 root _ _
3 the the DET _ PronType=Art 5 det _ _
4 flight flight NOUN _ Number=Sing 5 compound _ _
5 times time NOUN _ Number=Plur 2 obj _ _
6 from from ADP _ _ 7 case _ _
7 newark Newark PROPN _ Number=Sing 5 nmod _ _
8 to to ADP _ _ 9 case _ _
9 boston Boston PROPN _ Number=Sing 5 nmod _ _
# sent_id = 0054.dev
# text = i need a round trip from atlanta to washington dc and the fares leaving in the morning
1 i I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 need need VERB _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 a a DET _ PronType=Art 5 det _ _
4 round round NOUN _ Number=Sing 5 compound _ _
5 trip trip NOUN _ Number=Sing 2 obj _ _
6 from from ADP _ _ 7 case _ _
7 atlanta Atlanta PROPN _ Number=Sing 5 nmod _ _
8 to to ADP _ _ 9 case _ _
9 washington Washington PROPN _ Number=Sing 5 nmod _ _
10 dc DC PROPN _ Number=Sing 9 flat _ _
11 and and CCONJ _ _ 13 cc _ _
12 the the DET _ PronType=Art 13 det _ _
13 fares fare NOUN _ Number=Plur 5 conj _ _
14 leaving leave VERB _ Tense=Pres|VerbForm=Part 13 acl:relcl _ _
15 in in ADP _ _ 17 case _ _
16 the the DET _ PronType=Art 17 det _ _
17 morning morning NOUN _ Number=Sing 14 obl _ _
# sent_id = 0055.dev
# text = all flights and fares from pittsburgh to dallas round trip after 12 pm less than 1100 dollars
1 all all DET _ PronType=Art 2 det _ _
2 flights flight NOUN _ Number=Plur 0 root _ _
3 and and CCONJ _ _ 4 cc _ _
4 fares fare NOUN _ Number=Plur 2 conj _ _
5 from from ADP _ _ 6 case _ _
6 pittsburgh Pittsburgh PROPN _ Number=Sing 2 nmod _ _
7 to to ADP _ _ 8 case _ _
8 dallas Dallas PROPN _ Number=Sing 2 nmod _ _
9 round round NOUN _ Number=Sing 10 compound _ _
10 trip trip NOUN _ Number=Sing 2 nmod _ _
11 after after ADP _ _ 13 case _ _
12 12 12 NUM _ NumType=Card 13 nummod _ _
13 pm pm NOUN _ Number=Sing 10 nmod:tmod _ _
14 less less ADJ _ Degree=Cmp 10 amod _ _
15 than than ADP _ _ 17 case _ _
16 1100 1100 NUM _ NumType=Card 17 nummod _ _
17 dollars dollar NOUN _ Number=Plur 14 nmod _ _
# sent_id = 0056.dev
# text = show all flights and fares from denver to san francisco
1 show show VERB _ VerbForm=Inf 0 root _ _
2 all all DET _ PronType=Art 3 det _ _
3 flights flight NOUN _ Number=Plur 1 obj _ _
4 and and CCONJ _ _ 5 cc _ _
5 fares fare NOUN _ Number=Plur 3 conj _ _
6 from from ADP _ _ 7 case _ _
7 denver Denver PROPN _ Number=Sing 3 nmod _ _
8 to to ADP _ _ 9 case _ _
9 san San PROPN _ Number=Sing 3 nmod _ _
10 francisco Francisco PROPN _ Number=Sing 9 flat _ _
# sent_id = 0057.dev
# text = what is mia
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 mia Mia PROPN _ Number=Sing 1 nsubj _ _
# sent_id = 0058.dev
# text = what does ewr stand for
1 what what PRON _ PronType=Int,Rel 4 xcomp _ _
2 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux _ _
3 ewr Ewr PROPN _ Number=Sing 4 nsubj _ _
4 stand stand VERB _ VerbForm=Inf 0 root _ _
5 for for ADP _ _ 4 compound:prt _ _
# sent_id = 0059.dev
# text = ground transportation atl to atlanta
1 ground ground NOUN _ Number=Sing 2 compound _ _
2 transportation transportation NOUN _ Number=Sing 0 root _ _
3 atl Atl PROPN _ Number=Sing 2 nmod _ _
4 to to ADP _ _ 5 case _ _
5 atlanta Atlanta PROPN _ Number=Sing 3 nmod _ _
# sent_id = 0060.dev
# text = how long does it take to fly from boston to atlanta
1 how how ADV _ PronType=Int,Rel 2 advmod _ _
2 long long ADJ _ Degree=Pos 5 advmod _ _
3 does do AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _
4 it it PRON _ Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _
5 take take VERB _ VerbForm=Inf 0 root _ _
6 to to PART _ _ 7 mark _ _
7 fly fly VERB _ VerbForm=Inf 5 obl _ _
8 from from ADP _ _ 9 case _ _
9 boston Boston PROPN _ Number=Sing 7 nmod _ _
10 to to ADP _ _ 11 case _ _
11 atlanta Atlanta PROPN _ Number=Sing 7 nmod _ _
# sent_id = 0061.dev
# text = list the distance in miles from toronto international airport to downtown toronto
1 list list VERB _ VerbForm=Inf 0 root _ _
2 the the DET _ PronType=Art 3 det _ _
3 distance Distance PROPN _ Number=Sing 1 obj _ _
4 in in ADP _ _ 5 case _ _
5 miles mile NOUN _ Number=Plur 3 nmod _ _
6 from from ADP _ _ 7 case _ _
7 toronto Toronto PROPN _ Number=Sing 5 nmod _ _
8 international International PROPN _ Number=Sing 9 amod _ _
9 airport Airport PROPN _ Number=Sing 7 flat _ _
10 to to ADP _ _ 12 case _ _
11 downtown downtown NOUN _ Number=Sing 12 amod _ _
12 toronto Toronto PROPN _ Number=Sing 5 nmod _ _
# sent_id = 0062.dev
# text = tell me distance from orlando airport to the city
1 tell tell VERB _ VerbForm=Inf 0 root _ _
2 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 1 iobj _ _
3 distance Distance PROPN _ Number=Sing 1 obj _ _
4 from from ADP _ _ 5 case _ _
5 orlando Orlando PROPN _ Number=Sing 3 nmod _ _
6 airport Airport PROPN _ Number=Sing 5 flat _ _
7 to to ADP _ _ 9 case _ _
8 the the DET _ PronType=Art 9 det _ _
9 city city NOUN _ Number=Sing 3 nmod _ _
# sent_id = 0063.dev
# text = what is the name of the airport at denver
1 what what PRON _ PronType=Int,Rel 0 root _ _
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _
3 the the DET _ PronType=Art 4 det _ _
4 name name NOUN _ Number=Sing 1 nsubj _ _
5 of of ADP _ _ 7 case _ _
6 the the DET _ PronType=Art 7 det _ _
7 airport airport NOUN _ Number=Sing 4 nmod _ _
8 at at ADP _ _ 9 case _ _
9 denver Denver PROPN _ Number=Sing 7 nmod _ _
# sent_id = 0064.dev
# text = airports
1 airports airport NOUN _ Number=Plur 0 root _ _
# sent_id = 0065.dev
# text = where do the flights from boston to oakland stop
1 where where ADV _ PronType=Int,Rel 9 advmod _ _
2 do do AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 9 aux _ _
3 the the DET _ PronType=Art 4 det _ _
4 flights flight NOUN _ Number=Plur 9 nsubj _ _
5 from from ADP _ _ 6 case _ _
6 boston Boston PROPN _ Number=Sing 4 nmod _ _
7 to to ADP _ _ 8 case _ _
8 oakland Oakland PROPN _ Number=Sing 4 nmod _ _
9 stop stop NOUN _ Number=Sing 0 root _ _
# sent_id = 0066.dev
# text = is fare code b the same as business class
1 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _