我得到了错误:
模块'matplotlib.colors'没有属性'to_rgba',
当我在ipynb中导入链接器时。
我正在使用python 2,anaconda 4.1.1,chainer 4和matplotlib 1.5.1。有人可以评估问题
答案 0 :(得分:0)
尝试重新启动文本编辑器并进行尝试,有时需要重新启动文本编辑器才能使更改生效。
答案 1 :(得分:0)
matplotlib.colors.to_rgba在版本matplotlib == 1.5.1中不可用。 首先将matplotlib更新为最新版本。 升级matplotlib的命令
pip install --upgrade matplotlib
然后尝试一下。应该没问题。
import matplotlib
matplotlib.colors.to_rgba(c, alpha=None)
参考链接 https://matplotlib.org/api/_as_gen/matplotlib.colors.to_rgba.html https://matplotlib.org/users/colors.html
答案 2 :(得分:0)
您可以通过以下方式解决问题:
chainer
更新到v4.2.0或更高版本,或者matplotlib
更新到v2.0或更高版本