-
Notifications
You must be signed in to change notification settings - Fork 324
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
not find jpg files #16
Comments
This problem cause by: filenames = sorted(glob.glob("../colornet//.jpg")) at line 8 of train.py.Program can't find any .jpg file under this direction because all images are .png form.You can solve this problem by put some jpg image files in this direction or just change this line into: filenames = sorted(glob.glob("../colornet//")) yes,just remove the '.jpg'..........=.= Traceback (most recent call last): I'm still work on it now. =.= PS: My English is sucks,So I will appreciate whoever point out any mistake I made in this answer |
Any update about shape error? @RibbonsAlmark |
filenames = sorted(glob.glob("../colornet//.jpg"))
File "train.py", line 179, in
colorimage = input_pipeline(filenames, batch_size, num_epochs=num_epochs)
File "train.py", line 31, in input_pipeline
filenames, num_epochs=num_epochs, shuffle=False)
The text was updated successfully, but these errors were encountered: