Equations
- One or more equations did not get rendered due to their size.
Instances For
Parse a simple transitive sentence into a clause.
Equations
- One or more equations did not get rendered due to their size.
- DepGrammar.Coreference.parseSimpleClause ws = none
Instances For
Subject and object are co-dependents of the same verb, hence in the same local domain.
Equations
Instances For
Path length from subject to object = 2 (Subj --subj--> V <--obj-- Obj).
Equations
- DepGrammar.Coreference.pathLength _clause = 2
Instances For
W1 d-commands W2 if both are dependents of the same head H and W1 is the subject.
Equations
Instances For
Object does not d-command subject.
Equations
Instances For
Reflexive is licensed if d-commanded by an agreeing antecedent in the local domain.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Reciprocals must be d-commanded by a plural antecedent in the local domain.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A pronoun must not be d-commanded by a coreferent antecedent locally.
Equations
- One or more equations did not get rendered due to their size.
Instances For
R-expression freedom in dependency grammar
Equations
- One or more equations did not get rendered due to their size.
Instances For
Is a sentence grammatical for coreference under dependency binding?
Equations
- One or more equations did not get rendered due to their size.
Instances For
Check if reflexive is licensed in a sentence
Equations
- DepGrammar.Coreference.reflexiveLicensedInSentence ws = match DepGrammar.Coreference.parseSimpleClause ws with | none => false | some clause => DepGrammar.Coreference.reflexiveLicensed clause
Instances For
Check if pronoun coreference is blocked
Equations
- DepGrammar.Coreference.pronounCoreferenceBlocked ws = match DepGrammar.Coreference.parseSimpleClause ws with | none => false | some clause => !DepGrammar.Coreference.pronounLocallyFree clause
Instances For
Dependency grammar coreference configuration
- strictLocality : Bool
Whether to use strict path-length locality
Instances For
Default configuration for coreference
Equations
Instances For
Compute coreference status using d-command (dependency paths)
Equations
- One or more equations did not get rendered due to their size.