Rasa:AWS存储桶模型服务器的zip文件错误

时间:2019-02-07 11:58:00

标签: python rasa-nlu rasa-core

我正在使用Rasa Nlu服务器和aws存储桶来托管经过训练的模型。我正在尝试从另一台rasa服务器访问模型。基本上我有2台服务器。一个用于训练,另一个用于解析。

根据他们的文档https://rasa.com/docs/nlu/0.14.3/endpoint_configuration/

我已经在服务器上创建了一个配置文件,

model:
    url:    "https://s3.region.amazonaws.com/bucket-name/my-models/models_nlu___1.tar.gz"

当我运行命令

 python -m rasa_nlu.server  --config config.yml  --path https://s3.region.amazonaws.com/bucket-name/my-models --endpoints /path_to_file/model-config.yml

出现错误

File "/anaconda3/lib/python3.6/zipfile.py", line 1175, in 
_RealGetContents
raise BadZipFile("File is not a zip file")
zipfile.BadZipFile: File is not a zip file
Exception ignored in: <bound method DataRouter.__del__ of 
<rasa_nlu.data_router.DataRouter object at 0x10f18d278>>
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/rasa_nlu/data_router.py", 
line 122, in __del__
AttributeError: 'DataRouter' object has no attribute 'pool'

我在做什么错?看起来它正在寻找一个zip文件,但是生成的模型以.tar.gz格式存储。

0 个答案:

没有答案