How to setup duckling to Ubuntu?

I need to extract time and date from my training entity using ‘duckling’. I have followed the setup instructions from the duckling Github repo. But after the final step got >> Executable named duckling-example-exe not found on path:<<

How to solve this problem? any useful document resources available?

Hi @osicomo,

I’d suggest to use the Docker image for this task, which is fairly easy once you installed Docker.io on Ubuntu:

docker run -p8000:8000 rasa/duckling

If you need any help with this, feel free to ask!

Regards Julian

1 Like

thank-you for your reply @JulianGerhard.

but i’m straggling with “config.yml” file. how to config duckling with rasa nlu?

Hi @osicomo,

you simply need to set it up properly in the config:

- name: DucklingHTTPExtractor
   dimensions: ['time', 'duration', 'email']
   locale: de_DE
   timezone: Europe/Berlin
   url: http://localhost:8001

This is e.g. my config. The detailed configuration depends on your use case.

Did that help?

Regards

1 Like