Closed mbsariyildiz closed 5 years ago
Dear @mbsariyildiz,
Please note that the you are refering to the cycle-WGAN model as being the fully connected classifier. In this paper, we present two models: 1) GAN model and 2) fully-connected classifier trained with the data-augmentation from the GAN model.
Note that, you still have to train the fully-classiifier using benchmark.sh
Cheers, Rafa.
Hello @rfelixmg ,
Thank you for pointing out this. I was able to run benchmark.sh. The script ended with this expression:
:: Logs: ./experiments/sota/sun/cycle_wgan/0000_TEST_130419_210747//0005_classifier_160419_223541
And in this directory, there is this tensorboard log file:
But non of those scores are related to the ones you report in the paper. How do you think I can get the GZSL and ZSL results from this log?
Cheers, Bulent
@rfelixmg , I solved the problem, now I can run tester.sh. Closing this issue. Thanks!
Hi @mbsariyildiz
You have executed the code successfully!! Could you please guide me in solving this. I am using Google Colab . I run src/sota/awa1/train_gan.sh and I am getting error while saving checkpoints. It is giving error on symlink. Could you tell me which path you used for saving the checkpoints.
Much Appreciation.
Hello @rfelixmg ,
Thank you for sharing your implementation.
I downloaded your dataset.zip folder and run scripts under src/sota/sun to reproduce your scores on SUN dataset.
The scripts created an experiment folder named: ./experiments/sota/sun/cycle_wgan/0000_TEST_130419_210747 where
ls
returns:I can share with you the experiment folder, if you need.
According to the contents/hierarchy of the experiment folder, I had to change tester.sh from
to
But then tester.sh gave me this error:
I think this is because
"namespace": "rwgan/classifier"
is defined inexperiments/sota/sun/cycle_wgan/0000_TEST_130419_210747/checkpoint/classifier/epoch_15_15/architecture.json
. But the weird thing is that runninggrep -r "rwgan/classifier" ./
in the root repository directory returns only the architecture file created by the experiments./experiments/sota/sun/cycle_wgan/0000_TEST_130419_210747/checkpoint/classifier/epoch_15_15/architecture.json
. Which means, you never/use'rwgan/classifier'
in your code.Could you please help me resolving this issue?