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
There is no indication whatsoever, that the model is loaded rather than initialized during testing. And of course if it is initialized then it will simply write garbage to refined images, leaving you wondering.
I don't know though how to make it clear whether the model was loaded or initialized if you use tf.train.Supervisor, maybe specify wait_for_checkpoint=True when calling prepare_or_wait_for_session.
The text was updated successfully, but these errors were encountered:
@luochuwei, nothing beyond what I wrote in the first message. You need to add --load_path argument, where you specify the path to directory with your models relative to logs directory. E.g. --load_path generative_2017-03-07_01-40-07.
Hi, first of all, thanks for the great work! It was really easy to use.
I had a problem with refining my images with a pretrained model though.
In readme you say: "To refine all synthetic images with a pretrained model":
You are missing the
load_path
argument. Apparently, it is path to the directory with models, and it is relative tologs
dir. For example:There is no indication whatsoever, that the model is loaded rather than initialized during testing. And of course if it is initialized then it will simply write garbage to refined images, leaving you wondering.
I don't know though how to make it clear whether the model was loaded or initialized if you use
tf.train.Supervisor
, maybe specifywait_for_checkpoint=True
when callingprepare_or_wait_for_session
.The text was updated successfully, but these errors were encountered: