Closed iZsh closed 6 years ago
it seems running the code with the following env variable solves the issue:
THEANO_FLAGS='floatX=float32' python ./networkTraining.py ./LiviaNET_Config.ini 0
You might want to document that in your README :-)
Hi @iZsh,
Thank you for your comments. I am glad you found out the source of your error.
Have a look to the Readme file, on the 'known problems' section. This issue is reported there...:)
Best
oh gosh. I'm stupid facepalm sorry ;-)
Hello,
I'm trying to run your training code with python ./networkTraining.py ./LiviaNET_Config.ini 0
and I'm getting TypeError with theano 1.0.1 and python 2.7 and numpy 1.14.3
that one was coming when calling
myLiviaNet3D.initTrainingParameters
withmyParserConfigIni.learning_rate
which I fixed with
np.cast["float32"](myParserConfigIni.learning_rate)
the same occurred with
myParserConfigIni.momentumValue
. Fixed likewise.Unfortunately I'm now hitting the following error:
which is getting more complex and it seems to point at a general casting issue, maybe due to the newer version of theano i'm using?
Could you take a look and help me run your code?
Regards,