facebook / duckling

Language, engine, and tooling for expressing, testing, and evaluating composable language rules on input strings.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue in capturing two date fields in a sentence

Srivishnu27feb opened this issue · comments

Hi Team,

I am facing issue in extracting two date field using duckling extractor:

curl -XPOST http://.0.0.0.0:8000/parse --date 'locale=en_GB&text=Block dates from today to tomorrow'

The date for today is getting captured correctly as '2022-05-12' but tomorrow is captured as '2022-05-14' (t+1), and the same issue is happening when i try it out with actual dates instead of today or tomorrow (The second extracted entity is always dt+1). Please can you help me with the fix.

duckling is correct because time intervals in duckling are always lower inclusive, upper exclusive.