我正在尝试使用package.json 复制这个标准示例Autograd
。
虽然我能够从这个存储库复制其他示例,但这个特定示例会引发如下错误:
/home/avuis/anaconda/lib/python3.6/sitepackages/autograd/numpy/numpy_vjps.py:444: FutureWarning:
Using a non-tuple sequence for multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`.
In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a different result.
return lambda g: g[idxs]
这个相关版本不兼容吗?如果是这样,有什么快速的方法来解决这个问题?
提前致谢,