Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----------
- input: {'sentence': 'Some fish got sold to Steve by John.'}
- VFrame: GET
- Theme : Some fish
- 'thing gotten' : Some fish
- Goal : sold to Steve by John
- 'Replacing.New' : sold to Steve by John
- 'giver' : sold to Steve by John
- EF: (got (ARG1: Some fish) (ARG2: sold to Steve by John) )
- LF: (get (Theme: Some fish) (Goal: sold to Steve by John) )
- PC:
- frame(g19,vframe,'get').
- frame(g19,theme,'Some fish').
- frame(g19,goal,'sold to Steve by John').
- ----------
- VFrame: SELL
- Agent : by John
- 'Seller' : by John
- Theme : Some fish
- 'Thing Sold' : Some fish
- Recipient : to Steve
- 'Buyer' : to Steve
- EF: (sold (ARG0: by John) (ARG1: Some fish) (ARG2: to Steve) )
- LF: (sell (Agent: by John) (Theme: Some fish) (Recipient: to Steve) )
- PC:
- sframe(g20,g19,goal).
- frame(g20,agent,'by John').
- frame(g20,theme,'Some fish').
- frame(g20,recipient,'to Steve').
- ----------
- input: {'sentence': 'To Steve, John sold.'}
- VFrame: SELL
- Agent : John
- 'Seller' : John
- ARGM-DIS : Steve
- ARGM-PRP : To
- EF: (sold (ARG0: John) (ARGM-DIS: Steve) (ARGM-PRP: To) )
- LF: (sell (Agent: John) (ARGM-DIS: Steve) (ARGM-PRP: To) )
- PC:
- frame(g21,vframe,'sell').
- frame(g21,agent,'John').
- frame(g21,argm-dis,'Steve').
- frame(g21,argm-prp,'To').
- ----------
- input: {'sentence': 'Snoopy is a dog.'}
- VFrame: BE
- SPEC : Snoopy
- 'thing that is' : Snoopy
- GENL : a dog
- 'attributive, comment on utterance, topic of utterance' : a dog
- EF: (is (ARG1: Snoopy) (ARG2: a dog) )
- LF: (be (SPEC: Snoopy) (GENL: a dog) )
- PC:
- frame(g22,vframe,'be').
- frame(g22,spec,'Snoopy').
- frame(g22,genl,'a dog').
- ----------
- input: {'sentence': 'Every man is mortal.'}
- VFrame: BE
- SPEC : Every man
- 'thing that is' : Every man
- GENL : mortal
- 'attributive, comment on utterance, topic of utterance' : mortal
- EF: (is (ARG1: Every man) (ARG2: mortal) )
- LF: (be (SPEC: Every man) (GENL: mortal) )
- PC:
- frame(g23,vframe,'be').
- frame(g23,spec,'Every man').
- frame(g23,genl,'mortal').
- ----------
- input: {'sentence': 'Joe arrived home yesterday.'}
- VFrame: ARRIVE
- Theme : Joe
- 'Motion.Theme' : Joe
- 'entity in motion / \'comer\'' : Joe
- Destination : home
- 'Motion.Goal' : home
- 'end point, destination' : home
- ARGM-TMP : yesterday
- EF: (arrived (ARG1: Joe) (ARG4: home) (ARGM-TMP: yesterday) )
- LF: (arrive (Theme: Joe) (Destination: home) (ARGM-TMP: yesterday) )
- PC:
- frame(g24,vframe,'arrive').
- frame(g24,theme,'Joe').
- frame(g24,destination,'home').
- frame(g24,argm-tmp,'yesterday').
- ----------
- input: {'sentence': 'Tell Daddy how much you love him.'}
- VFrame: TELL
- Topic : how much you love him
- 'Utterance' : how much you love him
- Recipient : Daddy
- 'Hearer' : Daddy
- EF: (Tell (ARG1: how much you love him) (ARG2: Daddy) )
- LF: (tell (Topic: how much you love him) (Recipient: Daddy) )
- PC:
- frame(g25,vframe,'tell').
- frame(g25,topic,'how much you love him').
- frame(g25,recipient,'Daddy').
- ----------
- VFrame: LOVE
- Experiencer : you
- 'lover' : you
- Stimulus : him
- 'loved' : him
- ARGM-EXT : how much
- EF: (love (ARG0: you) (ARG1: him) (ARGM-EXT: how much) )
- LF: (love (Experiencer: you) (Stimulus: him) (ARGM-EXT: how much) )
- PC:
- sframe(g26,g25,topic).
- frame(g26,experiencer,'you').
- frame(g26,stimulus,'him').
- frame(g26,argm-ext,'how much').
- ----------
- input: {'sentence': 'I love you.'}
- VFrame: LOVE
- Experiencer : I
- 'lover' : I
- Stimulus : you
- 'loved' : you
- EF: (love (ARG0: I) (ARG1: you) )
- LF: (love (Experiencer: I) (Stimulus: you) )
- PC:
- frame(g27,vframe,'love').
- frame(g27,experiencer,'I').
- frame(g27,stimulus,'you').
- ----------
- input: {'sentence': 'I know you do.'}
- VFrame: KNOW
- Agent : I
- 'knower' : I
- Theme : you do
- 'fact that is known' : you do
- EF: (know (ARG0: I) (ARG1: you do) )
- LF: (know (Agent: I) (Theme: you do) )
- PC:
- frame(g28,vframe,'know').
- frame(g28,agent,'I').
- frame(g28,theme,'you do').
- ----------
- input: {'sentence': 'Do you love me?'}
- VFrame: LOVE
- Experiencer : you
- 'lover' : you
- Stimulus : me
- 'loved' : me
- EF: (love (ARG0: you) (ARG1: me) )
- LF: (love (Experiencer: you) (Stimulus: me) )
- PC:
- frame(g31,vframe,'love').
- frame(g31,experiencer,'you').
- frame(g31,stimulus,'me').
- ----------
- input: {'sentence': 'Why do you love me?'}
- VFrame: LOVE
- Experiencer : you
- 'lover' : you
- Stimulus : me
- 'loved' : me
- ARGM-CAU : Why
- EF: (love (ARG0: you) (ARG1: me) (ARGM-CAU: Why) )
- LF: (love (Experiencer: you) (Stimulus: me) (ARGM-CAU: Why) )
- PC:
- frame(g33,vframe,'love').
- frame(g33,experiencer,'you').
- frame(g33,stimulus,'me').
- frame(g33,argm-cau,'Why').
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement