clojure-opennlp icon indicating copy to clipboard operation
clojure-opennlp copied to clipboard

Natural Language Processing in Clojure (opennlp)

Results 4 clojure-opennlp issues
Sort by recently updated
recently updated
newest added

Hey @dakrone, I am particularly interested by the treebank-parser. One cool representation would be actually a one-to-one translation from the string representation of the tree into a Clojure List, with...

Evaluating `(treebank-parser ["What can happen in a second ."])` using the set-up in the README file here, I get the following parse: ``` lisp (TOP (SBARQ (WHNP (WP What)) (SQ...

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: ``` :clojure (-> "I am looking for...

I'm getting this error when I try to use the following sample code from the readme: ``` Clojure (with-open [rdr (clojure.java.io/reader "/tmp/bigfile")] (let [sentences (sentence-seq rdr get-sentences)] ;; process your...