You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the definitions of tokenize, pos-tag, and chunker from the readme, and 1.5.1 versions of the model files, the following behaviour is observed:
(-> "I am looking for a good way to annotate this english text."
tokenize pos-tag chunker phrases)
;; => (["I"] ["am" "looking"] ["for"] ["a" "good" "way"] ["to" "annotate"] ["this" "English" "text"]))
;; cf. the same operation, when the text is not full-stop terminated:
(-> "I am looking for a good way to annotate this English text"
tokenize pos-tag chunker phrases)
;; => (["I"] ["am" "looking"] ["for"] ["a" "good" "way"] ["to" "annotate"] ["this" "English"])
The pos-tag output seems correct however.
The text was updated successfully, but these errors were encountered:
Using the definitions of
tokenize
,pos-tag
, andchunker
from the readme, and 1.5.1 versions of the model files, the following behaviour is observed:The pos-tag output seems correct however.
The text was updated successfully, but these errors were encountered: