source
stringlengths 3
103
| target
stringlengths 3
172
|
---|---|
William doubled a boy beside the seat .
|
double ( agent = William , theme = boy ( nmod . beside = * seat ) )
|
The balloon was valued by a baby .
|
value ( theme = * balloon , agent = baby )
|
The butterfly respected that a hen examined Joshua .
|
respect ( agent = * butterfly , ccomp = examine ( agent = hen , theme = Joshua ) )
|
The girl tossed a visitor in the cup .
|
toss ( agent = * girl , theme = visitor ( nmod . in = * cup ) )
|
Ava rolled a cookie in the house .
|
roll ( agent = Ava , theme = cookie ( nmod . in = * house ) )
|
The donut was rolled by a girl .
|
roll ( theme = * donut , agent = girl )
|
A girl noticed that Isabella painted Ava .
|
notice ( agent = girl , ccomp = paint ( agent = Isabella , theme = Ava ) )
|
The turtle mailed the donut to Emma .
|
mail ( agent = * turtle , theme = * donut , recipient = Emma )
|
Jayden lended Liam the rose on a table .
|
lend ( agent = Jayden , recipient = Liam , theme = * rose ( nmod . on = table ) )
|
Liam cooked the baby .
|
cook ( agent = Liam , theme = * baby )
|
The girl was given a rose by Emma .
|
give ( recipient = * girl , theme = rose , agent = Emma )
|
The donut was noticed .
|
notice ( theme = * donut )
|
The president was slipped the drink .
|
slip ( recipient = * president , theme = * drink )
|
A cake was discovered by Emma .
|
discover ( theme = cake , agent = Emma )
|
Emma worshipped the purse .
|
worship ( agent = Emma , theme = * purse )
|
Emma drew a bear .
|
draw ( agent = Emma , theme = bear )
|
The drink slid .
|
slide ( theme = * drink )
|
Noah floated .
|
float ( theme = Noah )
|
Emma returned a flower beside a stage to a girl .
|
return ( agent = Emma , theme = flower ( nmod . beside = stage ) , recipient = girl )
|
The donut was touched .
|
touch ( theme = * donut )
|
Noah planned to walk .
|
plan ( agent = Noah , xcomp = walk ( agent = Noah ) )
|
A customer was sent the box .
|
send ( recipient = customer , theme = * box )
|
A sheep nursed a boy in a room .
|
nurse ( agent = sheep , theme = boy ( nmod . in = room ) )
|
Theodore cleaned .
|
clean ( agent = Theodore )
|
Liam liked that the liver was slipped to Emma .
|
like ( agent = Liam , ccomp = slip ( theme = * liver , recipient = Emma ) )
|
The sandwich was lended to the girl by the boy .
|
lend ( theme = * sandwich , recipient = * girl , agent = * boy )
|
The donut was loved by the boy .
|
love ( theme = * donut , agent = * boy )
|
A manager inflated a coach .
|
inflate ( agent = manager , theme = coach )
|
The jigsaw was improved by the dog .
|
improve ( theme = * jigsaw , agent = * dog )
|
The cake was liked by Carter .
|
like ( theme = * cake , agent = Carter )
|
Noah gave the chicken the drink .
|
give ( agent = Noah , recipient = * chicken , theme = * drink )
|
A box was frozen by the chicken .
|
freeze ( theme = box , agent = * chicken )
|
A goose dusted .
|
dust ( agent = goose )
|
Emma liked that a bat was crumpled .
|
like ( agent = Emma , ccomp = crumple ( theme = bat ) )
|
The cake was admired by Emma .
|
admire ( theme = * cake , agent = Emma )
|
A fig was frozen by Olivia .
|
freeze ( theme = fig , agent = Olivia )
|
crumple
|
crumple
|
A girl loved a donut in the glass in the house .
|
love ( agent = girl , theme = donut ( nmod . in = * glass ( nmod . in = * house ) ) )
|
The cake was painted by the giraffe .
|
paint ( theme = * cake , agent = * giraffe )
|
A boy frowned .
|
frown ( agent = boy )
|
A basket was rolled by Liam .
|
roll ( theme = basket , agent = Liam )
|
A cat liked that Emma was lended the clock .
|
like ( agent = cat , ccomp = lend ( recipient = Emma , theme = * clock ) )
|
The cookie was poked by a guard .
|
poke ( theme = * cookie , agent = guard )
|
The girl sold a pancake on the piano to Gabriel .
|
sell ( agent = * girl , theme = pancake ( nmod . on = * piano ) , recipient = Gabriel )
|
A cake was nursed by Elizabeth .
|
nurse ( theme = cake , agent = Elizabeth )
|
A cake was burned by a girl .
|
burn ( theme = cake , agent = girl )
|
A journalist was sold a watch by the girl .
|
sell ( recipient = journalist , theme = watch , agent = * girl )
|
The cake was worshipped .
|
worship ( theme = * cake )
|
The crayon was painted .
|
paint ( theme = * crayon )
|
Michael stabbed Emma .
|
stab ( agent = Michael , theme = Emma )
|
A creature ate .
|
eat ( agent = creature )
|
A girl stabbed the pizza .
|
stab ( agent = girl , theme = * pizza )
|
A rose was rented to a boy by Emma .
|
rent ( theme = rose , recipient = boy , agent = Emma )
|
A girl liked that the bird believed that a sandwich was frozen .
|
like ( agent = girl , ccomp = believe ( agent = * bird , ccomp = freeze ( theme = sandwich ) ) )
|
A cake was helped by the researcher .
|
help ( theme = cake , agent = * researcher )
|
The coach collapsed a box on the speaker beside a chair .
|
collapse ( agent = * coach , theme = box ( nmod . on = * speaker ( nmod . beside = chair ) ) )
|
A box was studied by Olivia .
|
study ( theme = box , agent = Olivia )
|
The girl was given a donut beside the bench .
|
give ( recipient = * girl , theme = donut ( nmod . beside = * bench ) )
|
A fish burned .
|
burn ( theme = fish )
|
The box was passed to the girl by Sebastian .
|
pass ( theme = * box , recipient = * girl , agent = Sebastian )
|
Liam liked the cake .
|
like ( agent = Liam , theme = * cake )
|
Liam wanted to sneeze .
|
want ( agent = Liam , xcomp = sneeze ( agent = Liam ) )
|
A monster broke .
|
break ( theme = monster )
|
William was promised a sweetcorn in the room .
|
promise ( recipient = William , theme = sweetcorn ( nmod . in = * room ) )
|
The key was eaten .
|
eat ( theme = * key )
|
A tool was nursed by the mouse .
|
nurse ( theme = tool , agent = * mouse )
|
The girl posted Liam the cake .
|
post ( agent = * girl , recipient = Liam , theme = * cake )
|
Emma fed a girl a rose .
|
feed ( agent = Emma , recipient = girl , theme = rose )
|
James ate a cake on the stand .
|
eat ( agent = James , theme = cake ( nmod . on = * stand ) )
|
The boy brought the glue to a baby .
|
bring ( agent = * boy , theme = * glue , recipient = baby )
|
A donut was offered to a cat by Liam .
|
offer ( theme = donut , recipient = cat , agent = Liam )
|
Emma liked that Noah ate .
|
like ( agent = Emma , ccomp = eat ( agent = Noah ) )
|
Jack proved that the cake was lended to a princess by Benjamin .
|
prove ( agent = Jack , ccomp = lend ( theme = * cake , recipient = princess , agent = Benjamin ) )
|
Noah shortened the boy beside the chair .
|
shorten ( agent = Noah , theme = * boy ( nmod . beside = * chair ) )
|
Ava rolled a needle .
|
roll ( agent = Ava , theme = needle )
|
A needle was painted by the deer .
|
paint ( theme = needle , agent = * deer )
|
John was sold the cake by a duck .
|
sell ( recipient = John , theme = * cake , agent = duck )
|
Emma was loaned the rose on the bed .
|
loan ( recipient = Emma , theme = * rose ( nmod . on = * bed ) )
|
The cake was sold to the student by William .
|
sell ( theme = * cake , recipient = * student , agent = William )
|
The cake was frozen by a cat .
|
freeze ( theme = * cake , agent = cat )
|
A jar was pierced by the cat .
|
pierce ( theme = jar , agent = * cat )
|
Emma was given a raisin in a cup .
|
give ( recipient = Emma , theme = raisin ( nmod . in = cup ) )
|
Daniel liked a donut .
|
like ( agent = Daniel , theme = donut )
|
Lily was rented the balloon beside the table by Olivia .
|
rent ( recipient = Lily , theme = * balloon ( nmod . beside = * table ) , agent = Olivia )
|
Emma admired the cake in a house .
|
admire ( agent = Emma , theme = * cake ( nmod . in = house ) )
|
The dog needed to clean .
|
need ( agent = * dog , xcomp = clean ( agent = * dog ) )
|
The towel was valued .
|
value ( theme = * towel )
|
A hammer was dusted .
|
dust ( theme = hammer )
|
A customer lended the cake on a tree to the hen .
|
lend ( agent = customer , theme = * cake ( nmod . on = tree ) , recipient = * hen )
|
A cookie was poked by Emma .
|
poke ( theme = cookie , agent = Emma )
|
Emma burned the lion beside the stage .
|
burn ( agent = Emma , theme = * lion ( nmod . beside = * stage ) )
|
Emma rolled the mandarin .
|
roll ( agent = Emma , theme = * mandarin )
|
The cake was offered to the girl by Emma .
|
offer ( theme = * cake , recipient = * girl , agent = Emma )
|
Emma hoped that Victoria ate .
|
hope ( agent = Emma , ccomp = eat ( agent = Victoria ) )
|
A girl admired a box .
|
admire ( agent = girl , theme = box )
|
A pretzel was rolled by the chicken .
|
roll ( theme = pretzel , agent = * chicken )
|
The cookie was floated by Liam .
|
float ( theme = * cookie , agent = Liam )
|
Elijah smiled .
|
smile ( agent = Elijah )
|
The book was liked by the frog .
|
like ( theme = * book , agent = * frog )
|
The duck threw the box in the bag .
|
throw ( agent = * duck , theme = * box ( nmod . in = * bag ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.