PlotNeuralNet
PlotNeuralNet copied to clipboard
subimport path error on windows
On windows, the path is connected by \
rather than /
, which may cause some latex environment not recognize the subimport path correctly, e.g. on my machine (python 3.7 win10 x64), it produce
\subimport{..\layers/}{init}
but latexpdf complains about not find the path, it should be
\subimport{../layers/}{init}
how to fix this problem
I just copy all the files in dir layers
to the upper dir and it works.