Naman Gupta
Results
3
comments of
Naman Gupta
Facing the same issue when testing: **ValueError: Variable conv1_1/weights already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope? Originally defined at: {my_internal_model_dir_path}/lib/networks/network.py", line 86, in make_var...
Fixed this issue on my own. No need to change reuse variable. Just need to keep tf.reset_default_graph() before graph is loaded(which is before tf.Session) in main function. It is mentioned...