Closed laocaoshilaocao closed 3 years ago
Okay, i found that happens because i used the version 0.15.1
of ndarray
.
After i changed the dependence version to 0.12.1
everything works.
Thank you for the report, yes, ndarray
is re-exported to avoid this problem for now.
Hi, i am a beginner of this interesting rust deep learning library. When i try to run several basic examples using
ndarray
, i found that always has a compiler error saying i should useautograd::ndarray
. Code and error are shown as follow:Is that compulsory to use
ag::ndarray::array![[1., 1.]]
instead ofarray![[1., 1.]]
in this kind of cases? Thanks for your help.