Closed SeanSobey closed 8 years ago
@R2dical I really recommend to repeat the question on SO - http://stackoverflow.com/questions/tagged/stanford-nlp
This project is for recompiling *.jar
s to *.dll
s, and all questions like "How to write in C# the following Java code".
Sorry, I do not know answers on all Stanford.NLP
question like "Why it works so".
I have the following code:
Call with the following properies:
{ "annotators": "tokenize,ssplit,pos,parse,depparse,lemma,ner", "date": "2016-07-30T20:13:22.157Z" }
And tokens like so:
"tokens": [ { "index": 1, "word": "now", "originalText": "now", "lemma": "now", "characterOffsetBegin": 0, "characterOffsetEnd": 3, "pos": "RB", "ner": "DATE", "normalizedNER": "PRESENT_REF", "before": "", "after": "", "timex": { "tid": "t1", "type": "DATE", "value": "PRESENT_REF" } } ]
With text:
Now
Why is 'PRESENT_REF' not converted to the actual time?
Thanks to anyone for any assistance!