CoreNLP icon indicating copy to clipboard operation
CoreNLP copied to clipboard

CoreNLP: A Java suite of core NLP tools for tokenization, sentence segmentation, NER, parsing, coreference, sentiment analysis, etc.

Results 152 CoreNLP issues
Sort by recently updated
recently updated
newest added

**Description** When we take a simple sentence like `fermented leaves and fruit` CoreNLP misses the dependency between `fermented` and `fruit`. Detecting this is crucial for our application and therefore we...

** Thank you for building the CoreNLP system ** Hi Folks, We're using CoreNLP 4.2.2. heavily for some news quote analysis and audit work at Santa Clara University. We're also...

**Issue:** Adding an apposition to a sentence breaks the constituency parse in CoreNLP 4.x (tested with 4.2.2 and 4.4.0) while it doesnt happen in CoreNLP 3.9.1 **Steps to reproduce:** Parse...

I am trying to run coreNLP for parsing some documents. How to get UD-POS tags along with fine-grained tags in output? I tried -outputFormat conllu, but the UPOS column remained...

I am working with very large input files, (100kb-200kb) in Chinese (ZH) and am getting running out of memory exception. Is there any way to reduce the amount of memory...

When I parse text with CoreNLP 4.3.0 in a concurrently threaded task, the parser throws an exception: ``` java.util.concurrent.ExecutionException: edu.stanford.nlp.semgraph.UnknownVertexException: Operation attempted on unknown vertex felt/VBD in graph -> was/VBD...

https://github.com/stanfordnlp/CoreNLP/blob/d147ba597bb13efeab5c567d677854bfc69104e6/src/edu/stanford/nlp/simple/Document.java#L685 I think this should probably be `return sentences(this.defaultProps)`.

It would be nice if the Maven command that builds from source automatically copied `/demo/corenlp-brat.html`, `/demo/corenlp-brat.css`, `/demo/corenlp-brat.js` and `/demo/corenlp-parseviewer.js` into the same place that they appear in a release. Because...

I am not sure if it is the intended behaviour, but it seems odd to me. With a basic set of options `-annotators tokenize,cleanxml,ssplit,pos,lemma` parse the sentence `This is a...

Hello, I am using stanza corenlp to detect NER's in the text by starting a corenlp server using CoreNLPClient .Once the entities are found and I try to shutdown/stop the...