-
Notifications
You must be signed in to change notification settings - Fork 308
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
Error for running experiments #14
Comments
Same issue, hope for help. |
Try setting
in |
I hit the same issue. I switched to |
@pmiller10 I remove previous |
@yunhunJang My steps are:
|
So, you used tensorflow 0.9, right? It gives error in
I added some print in
Any hints would be nice. I'm new to tensorflow, so it is hard to get where to look at now. Thanks! |
This is due to tensorflow fixing a problem with EMA -- see VittalP/UnsupGAN#1 for a fix. |
@tachim Thank you! It works well now! I really appreciate it. |
@yunhunJang I have read VittalP/UnsupGAN#1. But I do not know how to edit the code. What did you edit to get it work? |
@lyhangustc I edit the line16 of |
@yunhunJang It works. Thank you! |
I also have problem running the MNIST experiment, but the symptom looks different from the above:
Anybody can help? Thanks! |
@kaihuchen I came with the same problem with you. I solve this error by 1) update tensorflow to version 0.12.1, 2) update the code by the solution provided by @yunhunJang. |
@frizfealer Got it. Thanks! |
solved this problem with suggest form @pmiller10 : |
The fix that is being discussed above worked for tensorflow 1.0.1 but after I upgraded tensorflow to 1.2 I got the same error again. I tried a few version in between 1.2 and 1.0.1 but was still getting the same error |
just use tf version |
I forked this repo and made the changes to use tensorflow 1.3.0. You can find it here. But this diff shows the changes. I also needed to change a part of prettytensor that involved unpacking the trace. Specifically, I modified
|
I'm trying to running the experiments with MNIST.
I used the command
PYTHONPATH='.' python launchers/run_mnist_exp.py
However, it gives me the error
ValueError: Variable d_net/conv_batch_norm/conv_batch_norm/conv_batch_norm_2/conv_batch_norm/conv_batch_norm/moments/normalize/mean/ExponentialMovingAverage/ does not exist, or was not created with tf.get_variable(). Did you mean to set reuse=None in VarScope?
It might be caused by the fact that I use recent version of Tensorflow master branch. I wonder which modification make running this code on current settings.
Thanks,
The text was updated successfully, but these errors were encountered: