Blade6570 / PhotographicImageSynthesiswithCascadedRefinementNetworks-Pytorch

Photographic Image Synthesis with Cascaded Refinement Networks - Pytorch Implementation
65 stars 10 forks source link

Several questions #1

Open Naruto-Sasuke opened 6 years ago

Naruto-Sasuke commented 6 years ago
  1. Can we use recursive_generator similar with the official code?
  2. LayerNorm is in here http://pytorch.org/docs/master/nn.html#layernorm.(Seems in this week v0.4 will be released)
Blade6570 commented 6 years ago
  1. Hey, thanks a lot for pointing this out. In pytorch I found it difficult to recursively call and do backpropagation as in the original implementation. So I did it in a different way.
  2. LayerNorm has been recently released and I will add it in the upcoming updates.