-
Notifications
You must be signed in to change notification settings - Fork 79
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
how to use my own training images? #2
Comments
@twinsyssy1018 Sorry for late reply. ( enjoyed long holidays ) If you want to use your own dataset, you can do that as same way as other normal tensorflow jobs.( feed dictionary or queue ... ). Please read https://www.tensorflow.org/how_tos/reading_data/ . Thank your. |
@buriburisuri thank you very much |
HI, I'm trying to train this model with the LFW dataset. So far, I made the loading code of the entire dataset and convert it to a tensors list. But when I pass this images through the generator network
It gave me a (1333,128,160,1) output tensor, from a (1333,128,160,3) input tensor. So when the code concat the x_nearest with x and with gen, it give me 2 differents shape tensors of (1333,128,160,4) and (1333,128,160,6) I don't understand how to change this network to fit this data set. This is a difficult subject to me. |
@xolott I get the same problem when I use my own RGB images,it give me two differents tensors of (32,28,28,6) and (32,28,28,4) |
hi, i want use some super-resolution images to training srgan ,but i can not find the way to change image dir . could you provide this?
The text was updated successfully, but these errors were encountered: