dlwh / epic

**Archived** Epic is a high performance statistical parser written in Scala, along with a framework for building complex structured prediction models.

Home Page:http://scalanlp.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Documentation updates.

brentgracey opened this issue · comments

1
val sentences: IndexedSeq[IndexedSeq[String]] = sentenceSplitter(text).map(tokenizer).toIndexedSeq

Should be
val sentences: IndexedSeq[IndexedSeq[String]] = sentenceSplitter(text).map(tokenizer(_)).toIndexedSeq

2
loadTaqgger returns an Option, needs for to access
epic.models.PosTagSelector.loadTagger("en")

3
tagger.sentence)

Should be
tagger.bestSequence(sentence)