Other langages with docker container

Hello,

How can I change (easily) the language used by Rasa NLU docker container (to french) ?

Thanks

Best regards

Hello,

I solved this issue by doing my own Rasa NLU docker image.

This is my Dockerfile :

FROM rasa/rasa_nlu:latest

RUN python -m spacy download fr_core_news_md
RUN python -m spacy link fr_core_news_md fr

COPY nlu_config.yml config.yml

And this is my nlu_config.yml file:

language: "fr"

pipeline: "spacy_sklearn"

Best regards

1 Like

Nice, thanks for your answer ! Best regards,