DCN
DCN copied to clipboard
Error while running the code
Hi,
I have tried running your run_raw_mnist.py and run_pendigits.py and I am obtaining the same error for both the experiments. The error is show
I am not well versed with theano. So if you could let me know if I am doing something wrong or is there is any changes in the setting that I have to look into
Thanks
Setting floatX
to float64
in your Theano config will fix this. The easiest way to do that is to just set the environment variable THEANO_FLAGS='floatX=float64'
.
@elektrowolf's answer worked for me.THEANO_FLAGS='floatX=float32' python run_raw_mnist.py
using floatX=float32 instead of float64.