qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
atis_1868
|
is fare code b the same as business class
|
( lambda $0 e ( and ( fare_basis_code $0 b : fb ) ( booking_class $0 business : cl ) ) )
|
( lambda $0 e ( and ( fare_basis_code $0 ANON_ENTITY : fb ) ( booking_class $0 ANON_ENTITY : cl ) ) )
|
atis_2838
|
show me a list of flights from boston to atlanta leaving after noon and arriving before 7pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_5006
|
which flights depart burbank after noon and arrive in denver by 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 burbank : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_104
|
and what is the last flight from denver to boston for tomorrow evening
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_1766
|
i'd like to know the shortest trip between boston and san francisco
|
( argmin $0 ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( time_elapsed $0 ) )
|
( argmin $0 ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( time_elapsed $0 ) )
|
atis_332
|
display all fare codes
|
( lambda $0 e ( fare_basis_code $0 ) )
|
( lambda $0 e ( fare_basis_code $0 ) )
|
atis_464
|
explain the fare codes
|
( lambda $0 e ( fare_basis_code $0 ) )
|
( lambda $0 e ( fare_basis_code $0 ) )
|
atis_3623
|
show me what fare codes symbols stand for
|
( lambda $0 e ( fare_basis_code $0 ) )
|
( lambda $0 e ( fare_basis_code $0 ) )
|
atis_4426
|
what is the abbreviation for canadian airlines international
|
( abbrev canadian_airlines_international : al )
|
( abbrev ANON_ENTITY : al )
|
atis_4498
|
what is the cost of a business class ticket going from boston to dallas leaving july first
|
( lambda $0 e ( exists $1 ( and ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( day_number $1 1 : dn ) ( month $1 july : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3736
|
what airlines flies out of atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_2287
|
list the northwest airlines flights that leave denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_2567
|
please list all flights on united airlines out of denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_2568
|
please list all flights that leave denver before noon on northwest airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_4321
|
what flights leave denver before noon on northwest airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_4800
|
what northwest airline flights leave denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_4801
|
what northwest airlines flights leave denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_4802
|
what northwest flights leave denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_287
|
could you please give me information concerning american airlines a flight from washington dc to philadelphia the earliest one in the morning as possible
|
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 morning : pd ) ( from $0 washington : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_1849
|
information on american airline flights from washington to philadelphia early morning times of flight
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( flight $1 ) ( airline $1 aa : al ) ( during_day $1 early : pd ) ( during_day $1 morning : pd ) ( from $1 washington : ci ) ( to $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_405
|
does any airline offer dc10 service between denver and boston
|
( lambda $0 e ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( aircraft_code $1 dc10 : ac ) ( from $1 denver : ci ) ( to $1 boston : ci ) ( airline $1 $0 ) ) ) ) )
|
( lambda $0 e ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( aircraft_code $1 ANON_ENTITY : ac ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) ) )
|
atis_3219
|
show me flights to san francisco arriving before 1
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 100 : ti ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1071
|
i need a flight from atlanta to philadelphia and i'm looking for the cheapest fare
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1331
|
i want to fly from boston to atlanta i would like the cheapest fare please
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1723
|
i'd like to fly from boston to san francisco could you find me the cheapest fare
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4443
|
what is the cheapest fare for flights from boston to dallas
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_397
|
does american airlines fly to san francisco from atlanta
|
( lambda $0 e ( and ( to $0 san_francisco : ci ) ( from $0 atlanta : ci ) ( flight $0 ) ( airline $0 aa : al ) ) )
|
( lambda $0 e ( and ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ) )
|
atis_1919
|
is there a round trip flight from baltimore to dallas connecting in denver
|
( lambda $0 e ( and ( flight $0 ) ( stop $0 denver : ci ) ( to $0 dallas : ci ) ( from $0 baltimore : ci ) ( round_trip $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( stop $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( round_trip $0 ) ) )
|
atis_1
|
a breakfast flight from denver to san francisco please
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2134
|
list flights between boston and san francisco that serve breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2390
|
oakland to san francisco please breakfast flight
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 oakland : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2921
|
show me all flights from denver to pittsburgh which serve dinner
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3030
|
show me all the flights from boston to denver that serve lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3338
|
show me the dinner flights from baltimore to oakland
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_942
|
how many airlines fly from new york to los angeles by way of milwaukee
|
( count $0 ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( from $1 new_york : ci ) ( to $1 los_angeles : ci ) ( stop $1 milwaukee : ci ) ( airline $1 $0 ) ) ) ) )
|
( count $0 ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) ) )
|
atis_4433
|
what is the arrival time in san francisco for the 755am flight leaving washington
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 755 : ti ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( = ( arrival_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( arrival_time $1 ) $0 ) ) ) )
|
atis_1583
|
i would like to know flights on june fifteenth from long beach to columbus after 12 noon please
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 long_beach : ci ) ( to $0 columbus : ci ) ( day_number $0 15 : dn ) ( month $0 june : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_1817
|
i'm looking for a flight that goes from san jose to houston on may thirtieth and that leaves after noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ( day_number $0 30 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_2845
|
show me a list of flights on july twenty second leaving dc to dallas leaving dc after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 dallas : ci ) ( day_number $0 22 : dn ) ( month $0 july : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_2882
|
show me all flights between san francisco and philadelphia on september fifteenth with departure time after 12pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ( day_number $0 15 : dn ) ( month $0 september : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_4338
|
what flights leave pittsburgh july fifth after 7pm and arrive in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day_number $0 5 : dn ) ( month $0 july : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_53
|
all flights from sfo to long beach
|
( lambda $0 e ( and ( flight $0 ) ( from $0 sfo : ap ) ( to $0 long_beach : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2161
|
list flights from la guardia to burbank
|
( lambda $0 e ( and ( flight $0 ) ( from $0 lga : ap ) ( to $0 burbank : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4122
|
what flights are between dfw and oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dfw : ap ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3729
|
what airline is the flight originating in atlanta on november seventh at noon and arriving in san francisco at 210pm
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 1200 : ti ) ( arrival_time $1 1410 : ti ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 ANON_ENTITY : ti ) ( arrival_time $1 ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_3764
|
what airlines have nonstop early afternoon flights from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( during_day $1 early : pd ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_1917
|
is there a red eye flight from san jose to nashville on wednesday the nineteenth of may
|
( lambda $0 e ( and ( flight $0 ) ( overnight $0 ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 wednesday : da ) ( day_number $0 19 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( overnight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_96
|
and a flight from st. louis to burbank that leaves tuesday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 st_louis : ci ) ( to $0 burbank : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_115
|
are there any flights available from baltimore to dallas monday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_139
|
are there any flights next monday morning from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_157
|
are there wednesday morning flights between pittsburgh and boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_191
|
can you give me the evening flight on wednesday from washington to atlanta again
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_222
|
can you show me flights from dallas to atlanta on tuesday night
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_234
|
can you tell me about flights from san jose to nashville on saturday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_384
|
do you have any flights from pittsburgh to boston on wednesday of next week in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_496
|
find flight from san diego to phoenix on monday am
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 san_diego : ci ) ( to $0 phoenix : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_560
|
flight from denver to philadelphia saturday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_604
|
flights from atlanta to washington dc on thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_678
|
flights from phoenix to milwaukee on wednesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_683
|
flights from pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_748
|
give me a flight from charlotte to baltimore on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_749
|
give me a flight from charlotte to baltimore on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_774
|
give me flights from chicago to seattle on saturday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_777
|
give me flights from san francisco to boston on thursday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_815
|
give me the flights from chicago to seattle on saturday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_825
|
give me the flights from milwaukee to st. louis leaving sunday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 milwaukee : ci ) ( to $0 st_louis : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_831
|
give me the flights from phoenix to milwaukee on wednesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_835
|
give me the flights from pittsburgh to los angeles on thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_836
|
give me the flights from pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_837
|
give me the flights from pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_908
|
how about a flight from milwaukee to st. louis that leaves monday night
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 milwaukee : ci ) ( to $0 st_louis : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_909
|
how about a flight leaving tuesday night from st. louis to burbank
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 st_louis : ci ) ( to $0 burbank : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_912
|
how about flights from dallas to atlanta on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1098
|
i need a flight from los angeles to pittsburgh on monday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1112
|
i need a flight from philadelphia to dallas next wednesday in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1118
|
i need a flight from phoenix to detroit leaving monday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1120
|
i need a flight from pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1126
|
i need a flight from san diego california to indianapolis indiana leaving in the afternoon on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1127
|
i need a flight from san diego to indianapolis leaving in the afternoon on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1146
|
i need a flight this sunday from miami to las vegas and i would prefer a morning flight
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 miami : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1153
|
i need a late flight from san francisco to boston on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1157
|
i need a listing of flights from new york city to montreal canada departing thursday in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1159
|
i need a morning flight from burbank to milwaukee on next monday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 burbank : ci ) ( to $0 milwaukee : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1190
|
i need flight information on thursday leaving pittsburgh and arriving in baltimore in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1200
|
i need information for flights leaving san francisco on thursday evening and returning to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1217
|
i need late flight wednesday from oakland to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1232
|
i need to fly from baltimore to dallas on tuesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1242
|
i need to fly from st. louis to milwaukee on wednesday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 st_louis : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1254
|
i need to know information for flights leaving dallas on tuesday evening and returning to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1255
|
i need to know what flights leave atlanta on sunday evening and arrive in baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1278
|
i want a flight from houston to memphis on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1289
|
i want a flight from san diego to indianapolis that leaves tuesday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1347
|
i want to fly from milwaukee to orlando on wednesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1432
|
i would like a flight on friday morning from toronto to montreal
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 toronto : ci ) ( to $0 montreal : ci ) ( day $0 friday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1433
|
i would like a flight on tuesday which leaves from san diego to indianapolis indiana and that leaves in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1455
|
i would like an afternoon flight leaving tuesday san diego to indianapolis
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1468
|
i would like information information on flights from san francisco to denver on thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1470
|
i would like information on any flights from pittsburgh to san francisco leaving thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1473
|
i would like information on flights from dallas fort worth to atlanta on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1476
|
i would like information on flights from oakland california to dallas leaving on sunday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.