Sina
Sina
I'll try to have it done soon
This is not currently supported in the wrapper, but I could add it. Will keep you updated on this thread.
Hey, Install pynlp==0.4.2 `pip3 install pynlp --upgrade` To get all the timex objects: ```python doc = nlp(text) timexs = {entity.timex for entity in doc.entities if entity.timex} ``` For representations ```python...
Could you show me the same excerpt but with `repr(timex)` instead of `timex.text`? Thanks
Yes, try this: ```python from pynlp import StanfordCoreNLP nlp = StanfordCoreNLP(annotators='tokenize, ssplit, pos, ner') document = nlp("Nora Jani, a single person, Matt Jani and Susan Jani, husband and wife") for...
I will try to write up some docs soon.