You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
I'm using the latest digits (git pulled on 13/04/16)
On some networks I always get during "Classify one Image":
Traceback (most recent call last):
File "/home/enoon/anaconda2/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/enoon/anaconda2/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/enoon/libs/digits/digits/webapp.py", line 61, in decorated
return f(*args, **kwargs)
File "/home/enoon/libs/digits/digits/model/images/classification/views.py", line 349, in classify_one
predictions.append( (labels[i], scores[i]) )
IndexError: list index out of range
This seems related to the training prototxt, in this specific case I was using a modified CaffeNet for finetuning:
Hello, your network might have more outputs than there are classes in your dataset. If you're unsure how to set the final number of outputs, remove the num_output field in your last inner product layer (fc8depth). DIGITS will that set up automatically for you.
Since NVIDIA#628 DIGITS does not overwrite the number of outputs in the last fully-connected layer if it is already set to a value.
If the user accidentally specifies too large a `num_output` then inference will fail as reported on NVIDIA#678.
This change causes classification outputs to be ignored if there is no corresponding label.
closeNVIDIA#678
I'm using the latest digits (git pulled on 13/04/16)
On some networks I always get during "Classify one Image":
This seems related to the training prototxt, in this specific case I was using a modified CaffeNet for finetuning:
I guess there is something wrong in the prototxt, but It's hard to understand what from that error.
The text was updated successfully, but these errors were encountered: