code not work on python notebook
python:3.5
I download code from python notebook
I get the error.
TypeError: 'float' object cannot be interpreted as an integer
Having the same problem here, when I call for a prediction of Age, i get the same error.
Did you fix it?
In which line does the error occur?
@GilLevi100 gender_net.predict([input_image]) #here get error link has closed,I don't know which line.
And error reported in /usr/lib/python3/dist-packages/caffe/classifier.py in predict,line 95
Is there any update on this issue?
I have resolved it by editing line 95 in ".../caffe/classifier.py". I am not sure if I cause any side effects, but it works now.
From
predictions.reshape( len(predictions) / 10, 10, -1)
To
predictions.reshape(int(len(predictions) / 10), 10, -1)