I'm working with the Named Entity Recognition annotator of CoreNLP.
My problem is that I would like to not recognize as entities relative dates. My goal is to connect dates with events
Some interesting dates are 18 Feb 1997, the 20th of july, the year 1992, 4 days from today and Monday the 13th.
In this example I would like to highlight "18 Feb 1997", "20th of july" and "1992". Even if some of these dates are not complete, they can still be used to search for events.
On the other hand "4 days from today" and "Monday the 13th" are not interesting for me: the reasons are that the first it is relative to the current date (or the date the text has been written), while the second one is too generic.
Is there a simple way to tell the NER annotator to discard relative dates?
Thank you