Safe Haskell | None |
---|---|
Language | Haskell2010 |
- readPOS :: Tag t => Text -> TaggedSentence t
- readPOSWith :: Tag t => (Text -> t) -> Text -> TaggedSentence t
- safeInit :: Text -> Text
Documentation
readPOS :: Tag t => Text -> TaggedSentence t Source #
Read a POS-tagged corpus out of a Text string of the form: "token/tag token/tag..."
>>>
readPOS "Dear/jj Sirs/nns :/: Let/vb"
[("Dear",JJ),("Sirs",NNS),(":",Other ":"),("Let",VB)]
readPOSWith :: Tag t => (Text -> t) -> Text -> TaggedSentence t Source #