Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dependency pattern: how NPs and verbs are paired.
- crossSerial : DependencyPattern
- nested : DependencyPattern
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Generate cross-serial dependencies for n NP-V pairs
Equations
- Phenomena.FillerGap.CrossSerial.crossSerialDeps n = List.map (fun (i : Nat) => { npPosition := i + 1, verbPosition := i + 1 }) (List.range n)
Instances For
Generate nested dependencies for n NP-V pairs
Equations
- Phenomena.FillerGap.CrossSerial.nestedDeps n = List.map (fun (i : Nat) => { npPosition := i + 1, verbPosition := n - i }) (List.range n)
Instances For
Dutch cross-serial dependency example.
Surface:... dat Jan Piet Marie zag helpen zwemmen Gloss:... that Jan Piet Marie saw help swim Meaning:... that Jan saw Piet help Marie swim
Dependencies:
- Jan (NP₁) → zag (V₁) "saw"
- Piet (NP₂) → helpen (V₂) "help"
- Marie (NP₃) → zwemmen (V₃) "swim"
- surface : String
Surface string (Dutch)
- gloss : String
English gloss
- translation : String
English translation
NPs in order
Verbs in order
- pattern : DependencyPattern
The observed dependency pattern
- dependencies : List Dependency
The actual pairings
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
German nested dependency example.
German has the opposite verb order from Dutch, giving nested dependencies that are context-free.
- surface : String
- gloss : String
- translation : String
- pattern : DependencyPattern
- dependencies : List Dependency
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Cross-serial dependencies correspond to the copy language {ww | w ∈ Σ*}, or more precisely to {aⁿbⁿcⁿdⁿ | n ≥ 1}.
This is not context-free (proven by pumping lemma). CCG can generate it via generalized composition.
- contextFree : FormalLanguageType
- mildlyContextSensitive : FormalLanguageType
- contextSensitive : FormalLanguageType
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Cross-serial dependencies require mild context-sensitivity
Equations
Instances For
Nested dependencies are context-free
Equations
Instances For
Cross-serial has same number of dependencies as NPs
Nested has same number of dependencies as NPs
Dutch 3-NP example has cross-serial pattern
German 3-NP example has nested pattern