source
stringlengths 3
103
| target
stringlengths 3
172
|
---|---|
Aiden snapped the block in a cabinet .
|
snap ( agent = Aiden , theme = * block ( nmod . in = cabinet ) )
|
A pizza was examined .
|
examine ( theme = pizza )
|
The rose was sold to Liam .
|
sell ( theme = * rose , recipient = Liam )
|
The girl gave William the cake .
|
give ( agent = * girl , recipient = William , theme = * cake )
|
The child sent the cookie on a table to Emma .
|
send ( agent = * child , theme = * cookie ( nmod . on = table ) , recipient = Emma )
|
A child burned the zebra .
|
burn ( agent = child , theme = * zebra )
|
Emma gave a donut in a room to a boy .
|
give ( agent = Emma , theme = donut ( nmod . in = room ) , recipient = boy )
|
Liam rented a patient the donut beside a table .
|
rent ( agent = Liam , recipient = patient , theme = * donut ( nmod . beside = table ) )
|
A teacher liked the dog .
|
like ( agent = teacher , theme = * dog )
|
A girl gave Daniel the cake .
|
give ( agent = girl , recipient = Daniel , theme = * cake )
|
The balloon was brought to a cat .
|
bring ( theme = * balloon , recipient = cat )
|
Emma lended the girl the cookie .
|
lend ( agent = Emma , recipient = * girl , theme = * cookie )
|
The judge rolled the cake in the vase .
|
roll ( agent = * judge , theme = * cake ( nmod . in = * vase ) )
|
A butterfly hoped to run .
|
hope ( agent = butterfly , xcomp = run ( agent = butterfly ) )
|
A ring was burned .
|
burn ( theme = ring )
|
Camila wanted to run .
|
want ( agent = Camila , xcomp = run ( agent = Camila ) )
|
A dog wanted to run .
|
want ( agent = dog , xcomp = run ( agent = dog ) )
|
The kid said that the baby rolled a girl on a table .
|
say ( agent = * kid , ccomp = roll ( agent = * baby , theme = girl ( nmod . on = table ) ) )
|
A duke rented a cake to the frog .
|
rent ( agent = duke , theme = cake , recipient = * frog )
|
The boy was returned a donut beside a table .
|
return ( recipient = * boy , theme = donut ( nmod . beside = table ) )
|
The boy supported that the rose was given to Emma by Liam .
|
support ( agent = * boy , ccomp = give ( theme = * rose , recipient = Emma , agent = Liam ) )
|
Emma declared that Lily lended Olivia the box in a house .
|
declare ( agent = Emma , ccomp = lend ( agent = Lily , recipient = Olivia , theme = * box ( nmod . in = house ) ) )
|
A lion gave the boy the cake .
|
give ( agent = lion , recipient = * boy , theme = * cake )
|
The dog lended a girl a shoe .
|
lend ( agent = * dog , recipient = girl , theme = shoe )
|
The donut was loved by a girl .
|
love ( theme = * donut , agent = girl )
|
Emma declared that the balloon was drawn by Ava .
|
declare ( agent = Emma , ccomp = draw ( theme = * balloon , agent = Ava ) )
|
The toothbrush was liked by the girl .
|
like ( theme = * toothbrush , agent = * girl )
|
A crystal was sent to Ethan .
|
send ( theme = crystal , recipient = Ethan )
|
The baby was fed a molecule .
|
feed ( recipient = * baby , theme = molecule )
|
A cake was burned by a giraffe .
|
burn ( theme = cake , agent = giraffe )
|
The teacher was offered a mirror .
|
offer ( recipient = * teacher , theme = mirror )
|
The donut was changed by a girl .
|
change ( theme = * donut , agent = girl )
|
The tiger froze Sophia .
|
freeze ( agent = * tiger , theme = Sophia )
|
Ava liked that the drink was cooked by the butterfly .
|
like ( agent = Ava , ccomp = cook ( theme = * drink , agent = * butterfly ) )
|
The donut was liked by the kitty .
|
like ( theme = * donut , agent = * kitty )
|
Ava sold a cake to a mouse .
|
sell ( agent = Ava , theme = cake , recipient = mouse )
|
Amelia fed Liam the donut .
|
feed ( agent = Amelia , recipient = Liam , theme = * donut )
|
A tiger froze the cat in the house .
|
freeze ( agent = tiger , theme = * cat ( nmod . in = * house ) )
|
The cake was given to a politician .
|
give ( theme = * cake , recipient = politician )
|
Noah painted a donut .
|
paint ( agent = Noah , theme = donut )
|
Emma was wired the pillow beside the skull .
|
wire ( recipient = Emma , theme = * pillow ( nmod . beside = * skull ) )
|
Liam was returned a cake by the tourist .
|
return ( recipient = Liam , theme = cake , agent = * tourist )
|
William discovered a donut .
|
discover ( agent = William , theme = donut )
|
The cake was reddened by Mason .
|
redden ( theme = * cake , agent = Mason )
|
A champion was lended a glue in a house .
|
lend ( recipient = champion , theme = glue ( nmod . in = house ) )
|
A kitty tolerated that Noah was wired the cake by the driver .
|
tolerate ( agent = kitty , ccomp = wire ( recipient = Noah , theme = * cake , agent = * driver ) )
|
Elizabeth planned to sneeze .
|
plan ( agent = Elizabeth , xcomp = sneeze ( agent = Elizabeth ) )
|
A boy ate a girl .
|
eat ( agent = boy , theme = girl )
|
Sophia rolled a pizza .
|
roll ( agent = Sophia , theme = pizza )
|
The cat drew the cake .
|
draw ( agent = * cat , theme = * cake )
|
William proved that the cat passed the crown to a student .
|
prove ( agent = William , ccomp = pass ( agent = * cat , theme = * crown , recipient = student ) )
|
A girl planned to sleep .
|
plan ( agent = girl , xcomp = sleep ( agent = girl ) )
|
A butterfly appreciated a cake .
|
appreciate ( agent = butterfly , theme = cake )
|
Charlotte passed Emma a chalk .
|
pass ( agent = Charlotte , recipient = Emma , theme = chalk )
|
The balloon was inflated .
|
inflate ( theme = * balloon )
|
A horse rolled the girl beside a book .
|
roll ( agent = horse , theme = * girl ( nmod . beside = book ) )
|
A professor tried to call .
|
try ( agent = professor , xcomp = call ( agent = professor ) )
|
A chair was sent to Emma by the girl .
|
send ( theme = chair , recipient = Emma , agent = * girl )
|
The fish dreamed to walk .
|
dream ( agent = * fish , xcomp = walk ( agent = * fish ) )
|
A boy rolled the bear on a stage .
|
roll ( agent = boy , theme = * bear ( nmod . on = stage ) )
|
The girl gave a child a box beside the sink .
|
give ( agent = * girl , recipient = child , theme = box ( nmod . beside = * sink ) )
|
Mia preferred to walk .
|
prefer ( agent = Mia , xcomp = walk ( agent = Mia ) )
|
Emma cooked the girl .
|
cook ( agent = Emma , theme = * girl )
|
The visitor passed Hannah a cake in a box .
|
pass ( agent = * visitor , recipient = Hannah , theme = cake ( nmod . in = box ) )
|
A box was adored by a girl .
|
adore ( theme = box , agent = girl )
|
The fruit froze .
|
freeze ( theme = * fruit )
|
Liam rolled a drink .
|
roll ( agent = Liam , theme = drink )
|
A dog was awarded the yogurt by Emma .
|
award ( recipient = dog , theme = * yogurt , agent = Emma )
|
The baby was sold the cake .
|
sell ( recipient = * baby , theme = * cake )
|
The butterfly grew .
|
grow ( theme = * butterfly )
|
A bear was rented a cake .
|
rent ( recipient = bear , theme = cake )
|
A monster gasped .
|
gasp ( agent = monster )
|
The baby rolled .
|
roll ( theme = * baby )
|
A doll was cleaned by the boy .
|
clean ( theme = doll , agent = * boy )
|
A hamburger was mailed to Violet .
|
mail ( theme = hamburger , recipient = Violet )
|
The beer was eaten .
|
eat ( theme = * beer )
|
A cake was called by William .
|
call ( theme = cake , agent = William )
|
Emma was given the cake by Liam .
|
give ( recipient = Emma , theme = * cake , agent = Liam )
|
Jaxon was given a bottle by Emma .
|
give ( recipient = Jaxon , theme = bottle , agent = Emma )
|
Emma liked that William sketched .
|
like ( agent = Emma , ccomp = sketch ( agent = William ) )
|
The boy rolled a sandwich .
|
roll ( agent = * boy , theme = sandwich )
|
Charlotte liked a boy beside the keyboard on a table .
|
like ( agent = Charlotte , theme = boy ( nmod . beside = * keyboard ( nmod . on = table ) ) )
|
James confessed that Emma painted the chicken .
|
confess ( agent = James , ccomp = paint ( agent = Emma , theme = * chicken ) )
|
Aubrey liked a donut .
|
like ( agent = Aubrey , theme = donut )
|
The scientist offered a lion a cake beside a chair .
|
offer ( agent = * scientist , recipient = lion , theme = cake ( nmod . beside = chair ) )
|
A boy valued the cake on the table .
|
value ( agent = boy , theme = * cake ( nmod . on = * table ) )
|
Harper was loaned a melon in the shoe by Emma .
|
loan ( recipient = Harper , theme = melon ( nmod . in = * shoe ) , agent = Emma )
|
The mandarin was frozen .
|
freeze ( theme = * mandarin )
|
The donut was given to Emma by a child .
|
give ( theme = * donut , recipient = Emma , agent = child )
|
The girl wired the cookie beside the hedge to a monkey .
|
wire ( agent = * girl , theme = * cookie ( nmod . beside = * hedge ) , recipient = monkey )
|
Lillian rolled the sandwich .
|
roll ( agent = Lillian , theme = * sandwich )
|
Emma helped a brush .
|
help ( agent = Emma , theme = brush )
|
The crayon was admired .
|
admire ( theme = * crayon )
|
The girl was rented a box by Liam .
|
rent ( recipient = * girl , theme = box , agent = Liam )
|
Logan rolled the cake .
|
roll ( agent = Logan , theme = * cake )
|
A balloon was eaten by Michael .
|
eat ( theme = balloon , agent = Michael )
|
A box was lended to a producer .
|
lend ( theme = box , recipient = producer )
|
A mouse was served the cake on the barrel by the girl .
|
serve ( recipient = mouse , theme = * cake ( nmod . on = * barrel ) , agent = * girl )
|
Emma helped the dog in a garden .
|
help ( agent = Emma , theme = * dog ( nmod . in = garden ) )
|
Olivia rolled a cake beside the table .
|
roll ( agent = Olivia , theme = cake ( nmod . beside = * table ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.