Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Support Ajbrock SN and Update BigGAN with best FID and IS #159

Merged
merged 33 commits into from
Dec 27, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d7ddd7d
support sn of orig biggan
Oct 17, 2021
0e1be43
fix partial lint
Oct 17, 2021
f240d2d
fix partial lint
Oct 18, 2021
4a50de3
add config of training sn-biggan
Oct 18, 2021
81e6b03
support biggan-sn in biggan-deep
Nov 10, 2021
002c707
Merge branch 'master' of github.com:open-mmlab/mmgeneration into BigG…
Nov 10, 2021
4aaf292
support ajbrock-sn and update best biggan
Nov 11, 2021
788359f
fix lint
Nov 11, 2021
5434bbc
fix urls in readme
Nov 11, 2021
53000fa
fix lint
Nov 11, 2021
3250937
add docs for snmodule
Nov 14, 2021
1943e54
complete sn_style docs
Nov 14, 2021
98a6f75
Merge branch 'master' of github.com:open-mmlab/mmgeneration into BigG…
Nov 14, 2021
6bab33a
fix lint
Nov 14, 2021
824a273
add docstrings and unittests
Nov 15, 2021
f8e9f0a
fix lint
Nov 15, 2021
3724aea
replace biggan style with ajbrock style
Nov 17, 2021
7599db3
fix docs
Nov 17, 2021
16c94c8
fix pr159
Nov 23, 2021
5202567
Merge branch 'master' of github.com:open-mmlab/mmgeneration into BigG…
Nov 23, 2021
12a512f
remove spectral norm inherit nn.Module
Nov 23, 2021
dfab59f
fix lint
Nov 23, 2021
525e4f4
fix typo
Nov 24, 2021
a8bd918
solve conflict
Nov 30, 2021
4a18deb
fix typo
Nov 30, 2021
81e9def
fix lint
Dec 1, 2021
e8038ed
fix PR159
plyfager Dec 15, 2021
d81ee47
Merge branch 'master' of github.com:open-mmlab/mmgeneration into BigG…
plyfager Dec 15, 2021
427eb07
fix lint
plyfager Dec 15, 2021
b8802ab
fix biggan tests
plyfager Dec 27, 2021
4252b2a
Merge branch 'master' of github.com:open-mmlab/mmgeneration into BigG…
plyfager Dec 27, 2021
1d45702
add best ckpt links to readme
plyfager Dec 27, 2021
aa0dc33
fix lint
plyfager Dec 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
yangyifei authored and yangyifei committed Nov 24, 2021
commit 525e4f47b7996842da3bd83decaa52c04f5eead8
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(self,
elif sn_style == 'ajbrock':
self.noise2feat = SNLinear(
self.noise_size +
self.shared_dim if self.concat_noise else 0,
(self.shared_dim if self.concat_noise else 0),
self.arch['in_channels'][0] * (self.input_scale**2),
eps=sn_eps)
else:
Expand Down