ConleyKong
ConleyKong
when password contains '#' this issue happens
just add a param setting in get_redis function: StrictRedis.from_url(conf.redis_url, decode_responses=True, decode_components=True) could solve this problem
升级numpy后提示 paddlefsl 1.0.0 requires numpy~=1.19.2, but you have numpy 1.21.4 which is incompatible.
@dosu I have checked all the things you mentioned and found no abnormalities. The data input is normal, but there is no output from the workflow.
@dosu how to check sandbox network issues? I can see that debugging mode reg node accept right input but without expected output
@dosu It shouldn't be a network issue because I replicated the problem on Dify's cloud.
xinference0.15.2可用的flash-attn安装包链接:https://pan.baidu.com/s/1OTOKLzKcSukjvDqQ-F6XVQ?pwd=1111 提取码:1111
> 早期版本是使用的pycld2作为语言检测工具,后期为了全平台兼容,将pycld2更换为fast_langdetect,虽然语言检测精度略有降低,但是获得了更好的兼容性。 > > 您提供的这个案例已经得到复现,而且在pycld2上明显可以观察到在这个案例上表现比fast_langdetect更好。 > > 考虑到语言识别目前主要有两个功能: > > 1. 判断是否是需要分词的长英文单词 > 2. 判断span拼接是否需要添加空格 > > 目前这两个需求使用fast_langdetect没发现有什么太大的bug,如果您对语言检测的准确率要求比较高,可以使用pycld2替换fast_langdetect > > 附上pycld2实现代码 > > ```python > import pycld2 as cld2 >...