ypxie / HDGan

Pytorch implementation of HDGan
150 stars 36 forks source link

Questions about preprocessing and evaluation #13

Closed dougsouza closed 5 years ago

dougsouza commented 5 years ago

Hello,

First, congrats, that's a very nice work. I have two simple questions about it:

  1. How preprocessing is performed? I couldn't see the script that preprocesses the datastes, only preprocessed datasets for download.
  2. How do we choose the number of samples for testing (for inception score, for example) and how this number affects the scores?

Thanks

ypxie commented 5 years ago

Hello, thanks for your interest!

  1. For fair comparison, we follow the same data preprocessing (mainly some random crops) as Stackgan https://github.com/hanzhanggit/StackGAN
  2. Also similar to Stackgan, we sample about 30000 samples to evaluate the Inception score. In general, the more samples we generate, the better the score could reflect the model's performance.