Italian Chatbot

Hi everybody.

I want to develop an italian chatbot using Rasa 3.

I have already installed spacy and it_core_news_md model.

I have also changed the config.yml file setting:

language: it

What also am I expected to do in order to get Rasa use it_core_news_md ?

I have tried to link it with the command:

python -m spacy link it_core_news_md it

but it raises a warning message:

DeprecationWarning: The command 'link' is deprecated.
⚠ As of spaCy v3.0, model symlinks are not supported anymore. You can load trained pipeline packages using their full names or from a directory path.

Must I use the command spacy.load('it_core_news_md')? In which file should I add it?

Can I add a model reference into the config.yml file? Which key-value pair am I requested to use?

Thanks for any help.

Greetings

Stefano

Hello!

You cannot use link as of SpaCy 3.0.

You just have to mention language: it_core_news_md in your config.yml :slight_smile:

Thank you!

1 Like