Rasa是一个不错的开源bot工具,全部基于python实现,主页是https://rasa-nlu.readthedocs.io/en/latest/index.html
本节是关于工具安装和初步运行的记录。
根据其文档进行安装,我选择的安装方式是:
git clone git@github.com:RasaHQ/rasa_nlu.git
cd rasa_nlu
pip install -r requirements.txt
python setup.py install
后端我选择的是“spaCy + sklearn”, 其中提示我需要安装sklearn-crfsuite。
然后当我安装这个工具时,又是各种与当前环境不匹配或找不到可用版本,最后通过以下方式解决了。
conda install -c conda-forge python-crfsuite=0.9.2
最后是在Ipython中针对自带的例子“ata\examples\rasa\demo-rasa.json”进行模型训练:
In [2]: run rasa_nlu/train.py -c config_spacy.json
INFO:rasa_nlu.utils.spacy_utils:Trying to load spacy model with name 'en'
INFO:rasa_nlu.components:Added 'nlp_spacy' to component cache. Key 'nlp_spacy-en'.
INFO:rasa_nlu.converters:Training data format at ./data/examples/rasa/de
INFO:rasa_nlu.utils.spacy_utils:Trying to load spacy model with name 'en'
INFO:rasa_nlu.components:Added 'nlp_spacy' to component cache. Key 'nlp_spacy-en'.
INFO:rasa_nlu.converters:Training data format at ./data/examples/rasa/de