oldmonkABA
Results
2
issues of
oldmonkABA
I am using Corenlp for extracting dates from the text. I want to extract the format : Nov-02-1990. Corenlp is able to extract Nov 01 1990 but fails with hyphens...
When i run the code I get following output docx = nlp(u"I am looking for an Italian Restaurant where I can eat") for word in docx.ents: print("value",word.text,"entity",word.label_,"start",word.start_char,"end",word.end_char) ('value', u'Italian', 'entity',...