Skip to main content

Posts

Showing posts from April, 2020

Building Conversational Chatbot for Urdu language.

There are no solutions available yet for building conversational chatbots for the Urdu language. Keeping that in mind I've contributed to the SpaCy library for this purpose. As you know Rasa uses spaCy pipeline for building a chatbot, So I've built a model Urdu Model  that I will be using for this chatbot. I've made the model publicly available to be used for chatbots. Install Rasa X: This is the version I've used for building the chatbot. Rasa is being updated rapidly so you may find new versions while reading this post. virtualenv -p python3.6 .rasa source .rasa/bin/activate pip3 install rasa-x==0.26.1 --extra-index-url https://pypi.rasa.com/simple Install Urdu Model: You need to download and install the spacy model I've built and shared here  Ur Model . pip3 install ur_model-0.0.0.tar.gz Initialize the rasa project run the following command to initialize the project. python -m rasa init It will create the skeleton of the rasa chatbot with...