qid
stringlengths
6
9
source
stringlengths
6
259
target
stringlengths
6
409
anonymized_target
stringlengths
16
454
atis_4884
what's the cheapest one way flight from oakland to washington dc
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 oakland : ci ) ( to $0 washington : ci ) ) ( fare $0 ) )
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
atis_2967
show me all flights from san diego to dulles on boeing 767
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( aircraft_code $0 767 : ac ) ( from $0 san_diego : ci ) ( to $0 iad : ap ) ) )
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 ANON_ENTITY : mf ) ( aircraft_code $0 ANON_ENTITY : ac ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ap ) ) )
atis_3061
show me all the night fares between philadelphia and san francisco
( lambda $0 e ( exists $1 ( and ( during_day $1 late : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4709
what is the most expensive one way fare from boston to atlanta on american airlines
( max $0 ( exists $1 ( and ( oneway $1 ) ( airline $1 aa : al ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
( max $0 ( exists $1 ( and ( oneway $1 ) ( airline $1 ANON_ENTITY : al ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_745
give me a combination of continental flights from chicago to seattle that have meals early saturday morning
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_814
give me the flights from chicago to seattle on continental that have meals early saturday morning
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2211
list nonstop flights from houston to dallas which arrive after 8pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4798
what nonstop flights between boston and washington arrive after 4 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1600 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4799
what nonstop flights between boston and washington arrive after 5 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_516
find me the earliest flight from boston to denver that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_524
find the earliest breakfast flight from boston to oakland
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_525
find the earliest flight from boston to oakland that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_1221
i need the earliest flight from denver to boston that serves dinner
( argmin $0 ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_2607
please list the earliest lunch flight from columbus to phoenix
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 columbus : ci ) ( to $0 phoenix : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_3345
show me the earliest flight from san jose to pittsburgh that serves a snack
( argmin $0 ( and ( flight $0 ) ( meal $0 snack : me ) ( from $0 san_jose : ci ) ( to $0 pittsburgh : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_4527
what is the earliest breakfast flight from philadelphia to fort worth
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 philadelphia : ci ) ( to $0 fort_worth : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_4532
what is the earliest flight between pittsburgh and denver that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_4614
what is the first flight from atlanta to baltimore that serves lunch
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_4622
what is the first flight that goes from atlanta to baltimore that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_4623
what is the first flight that travels from atlanta to baltimore that serves lunch
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
atis_1424
i would like a flight from washington to boston flight 324 on august twentieth
( lambda $0 e ( and ( flight $0 ) ( flight_number $0 324 : fn ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
( lambda $0 e ( and ( flight $0 ) ( flight_number $0 ANON_ENTITY : fn ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
atis_71
all right what us air flights leave from indianapolis to san diego after 130 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1330 : ti ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1640
i'd like a flight on united airlines from dallas to san francisco that leaves after 815am
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( > ( departure_time $0 ) 815 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1896
is there a flight from denver to san francisco on continental airlines leaving after 12 o'clock in the afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2059
list all flights on continental from denver to chicago which depart after 934pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( to $0 chicago : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2832
show flights leaving miami to cleveland on us air that leave after noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2991
show me all flights on us airlines from boston to oakland california which leave after 11 o'clock am
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1100 : ti ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4206
what flights does delta have from dallas to denver after 5 o'clock
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 dallas : ci ) ( to $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 ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4207
what flights does delta have from denver to dallas after 5
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4997
which delta flights depart from san francisco heading toward boston after 12 noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_208
can you list costs of denver rental cars
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 denver : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1018
how much does it cost to rent a car in tacoma
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 tacoma : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1041
how much would car rental cost in atlanta
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 atlanta : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_2646
please list the prices for a rental car in pittsburgh
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 pittsburgh : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_3832
what are the costs of car rental in dallas
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 dallas : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_3966
what are the rental car rates in dallas
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 dallas : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_3967
what are the rental car rates in san francisco
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 san_francisco : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1054
i have two friends that would like to visit me on wednesday here in washington dc one of them lives in denver and the other lives in miami
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( from $1 denver : ci ) ( from $1 miami : ci ) ) ( to $1 washington : ci ) ( day $1 wednesday : da ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( from $1 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ) ) )
atis_3572
show me the least expensive flight leaving miami on sunday after 12 o'clock noon and arriving cleveland
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 sunday : da ) ) ( fare $0 ) )
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( fare $0 ) )
atis_162
atlanta to pittsburgh
( lambda $0 e ( and ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_166
baltimore to philadelphia
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_172
boston to pittsburgh
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_263
chicago to milwaukee
( lambda $0 e ( and ( from $0 chicago : ci ) ( to $0 milwaukee : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_315
dallas to baltimore
( lambda $0 e ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_326
denver to atlanta
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_388
do you have one to denver from philadelphia
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_706
from atlanta to washington dc
( lambda $0 e ( and ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_707
from baltimore to san francisco
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_708
from denver to baltimore
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_712
from las vegas to montreal
( lambda $0 e ( and ( from $0 las_vegas : ci ) ( to $0 montreal : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_715
from las vegas to phoenix
( lambda $0 e ( and ( from $0 las_vegas : ci ) ( to $0 phoenix : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_718
from montreal to las vegas
( lambda $0 e ( and ( from $0 montreal : ci ) ( to $0 las_vegas : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_720
from philadelphia to toronto
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 toronto : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_723
from pittsburgh to baltimore
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_724
from san francisco to denver
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_725
from seattle to salt lake city
( lambda $0 e ( and ( from $0 seattle : ci ) ( to $0 salt_lake_city : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_729
from washington to atlanta
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_921
how do i get from boston to pittsburgh
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1056
i live in denver and i'd like to make a trip to atlanta
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1057
i live in denver and i'd like to make a trip to pittsburgh
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1163
i need a reservation from baltimore to san francisco
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1172
i need a ticket from nashville tennessee to seattle
( lambda $0 e ( and ( from $0 nashville : ci ) ( to $0 seattle : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1173
i need a ticket from nashville to seattle
( lambda $0 e ( and ( from $0 nashville : ci ) ( to $0 seattle : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1202
i need information from denver to pittsburgh
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1247
i need to go from boston to dallas
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1249
i need to go from philadelphia to dallas
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1257
i need to make reservations from denver to boston
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1357
i want to go between boston and san francisco
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1362
i want to go from boston to oakland
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1367
i want to go from denver to oakland
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1368
i want to go from san francisco to denver
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1380
i want to make a trip from washington to san francisco
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1616
i would like to travel from boston to denver
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1617
i would like to travel from denver to pittsburgh
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1675
i'd like information on boston to washington
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1751
i'd like to go from boston to san francisco
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1754
i'd like to go to boston from denver and i'd like to get there
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1773
i'd like to make a trip from washington to san francisco
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1794
i'd like to travel from burbank to milwaukee
( lambda $0 e ( and ( from $0 burbank : ci ) ( to $0 milwaukee : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1822
i'm planning a trip to pittsburgh and i live in denver can you help me
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1829
i'm traveling to dallas from philadelphia
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1974
let's look at baltimore to philadelphia again
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2351
newark to cleveland
( lambda $0 e ( and ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2355
no i want to go from denver to oakland
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2364
now get me from pittsburgh to denver
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2387
oakland to denver
( lambda $0 e ( and ( from $0 oakland : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2389
oakland to philadelphia
( lambda $0 e ( and ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2478
philadelphia to san francisco please
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2480
philadelphia to san francisco
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2481
phoenix to denver
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2490
pittsburgh to denver
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2746
san francisco to denver
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_2747
san francisco to philadelphia please
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_3638
st petersburg to detroit
( lambda $0 e ( and ( from $0 st_petersburg : ci ) ( to $0 detroit : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_3641
sure i want to go from philadelphia to dallas
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_3702
we're going from denver to san francisco
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4817
what time does flight aa 459 depart
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 459 : fn ) ( = ( departure_time $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_800
give me the earliest flight on american airlines tomorrow from st. petersburg to milwaukee
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
atis_802
give me the earliest flight tomorrow on northwest airlines from st. petersburg to milwaukee
( argmin $0 ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
atis_803
give me the earliest flight tomorrow on united airlines from st. petersburg to milwaukee
( argmin $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )