NP V NP.patient |
example |
"Jennifer baked the potatoes."
|
syntax |
Agent V Patient
|
semantics |
cause(Agent, E)
apply_heat(during(E), ?Instrument, Patient)
cooked(result(E), Form, Patient)
|
NP V NP PP.instrument |
example |
"Jennifer baked the potatoes in the oven."
|
syntax |
Agent V Patient {in on with} Instrument
|
semantics |
cause(Agent, E)
apply_heat(during(E), Instrument, Patient)
cooked(result(E), Form, Patient)
use(during(E), Agent, Instrument)
|
NP.patient V |
example |
"The potatoes baked."
|
syntax |
Patient V
|
semantics |
cooked(result(E), Form, Patient)
|
NP V ADV-Middle |
example |
"Idaho potatoes bake beautifully."
|
syntax |
Patient V ADV
|
semantics |
property(Patient, Prop)
Adv(Prop)
|
NP.instrument V NP |
example |
"This oven bakes potatoes."
|
syntax |
Instrument V Patient
|
semantics |
apply_heat(during(E), Instrument, Patient)
cooked(result(E), Form, Patient)
|
NP V NP PP.result |
example |
"Jennifer baked the potatoes to a crisp."
|
syntax |
Agent V Patient {to into} Result [+state]
|
semantics |
cause(Agent, E)
apply_heat(during(E), ?Instrument, Patient)
cooked(result(E), Form, Patient)
Pred(result(E), Patient)
|
NP V NP PP.result PP.instrument |
example |
"Jennifer baked the potatoes to a crisp in the oven."
|
syntax |
Agent V Patient {to into} Result [+state] {in on with} Instrument
|
semantics |
cause(Agent, E)
apply_heat(during(E), Instrument, Patient)
cooked(result(E), Form, Patient)
Pred(result(E), Patient)
use(during(E), Agent, Instrument)
|
NP V PP.result |
example |
"Potatoes bake to a crisp."
|
syntax |
Patient V {to into} Result [+state]
|
semantics |
apply_heat(during(E), ?Instrument, Patient)
cooked(result(E), Form, Patient)
Pred(result(E), Patient)
|
NP V PP.result PP.instrument |
example |
"Potatoes bake to a crisp in the oven."
|
syntax |
Patient V {to into} Result [+state] {in on with} Instrument
|
semantics |
apply_heat(during(E), Instrument, Patient)
cooked(result(E), Form, Patient)
Pred(result(E), Patient)
|
|