-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Random scale/translate send object(s) out of bound #7
Comments
Dear @EngShaheen you are using an old version of this repo, please update and tell me if it works or not. If the problem is still there, please give me exact steps to reproduce the problem, including dataset & annotation you are using. |
I suspect you are using --savepb and --train options at the same time? If so, please finish training first before using --savepb (in combination with --load option). --savepb will disable every variable inside the network and turn them into constants, in order to produce a constant protobuf graph, so the net will not have any variable to be optimized (as in error statement). Best of luck :) |
Well this time I cant really say the fault is on my side. I believe the image the program is trying to read does not exist. Try printing out |
well, I didn't know cv2 imread is case insensitive, I updated the code, please try again |
cool ! thanks for your suggestions, lots of work to be done :) |
@EngShaheen By the way, I think I figured a better way to do it than patching the error directly inside drawer.py. To avoid future errors, you may want to save the current state of training, pull the new code and re- clean.py and train again (with option --load [number of latest checkpoint]). Good luck. |
while trainig on my data
I got this error
Random scale/translate send object(s) out of bound
as shown in the image
and then it starts to test on the testing data and store the results to
results/
folderI think the model doesn't do the training phase properly
and the problem is in the
shuffle
function inTFnet.py
filein the try statement it has some error and goes to the except
any I deas about this error?
The text was updated successfully, but these errors were encountered: