fjxmlzn / DoppelGANger

[IMC 2020 (Best Paper Finalist)] Using GANs for Sharing Networked Time Series Data: Challenges, Initial Promise, and Open Questions
http://arxiv.org/abs/1909.13403
BSD 3-Clause Clear License
296 stars 75 forks source link

about mode-collapse #8

Closed patricxu closed 3 years ago

patricxu commented 3 years ago

Thanks for your work! I have noticed in the code that you tried to mitigate mode-collapse by packing, but the num_packing is 1 by default. Do you mean packing is unnessary in this case?

fjxmlzn commented 3 years ago

Packing does help, but empirically we find that auto-normalization (Section 4.2 in the paper, controlled by self_norm parameter) is more effective in these settings and auto-normalization itself is sufficient for giving good results, so we set num_packing to 1 (i.e. turn off it) for the results in the paper and in the default parameters.