Skip to content
Snippets Groups Projects
Unverified Commit 16019f9a authored by sdtblck's avatar sdtblck Committed by GitHub
Browse files

Update networks_stylegan2.py

renamed var on line 650 from resolution_log2 (og stylegan2) to res_log2 (skyflynil's version)
parent 60b61e85
No related branches found
No related tags found
No related merge requests found
......@@ -647,7 +647,7 @@ def G_synthesis_stylegan2(
x = block(x, res)
if architecture == 'skip':
y = upsample(y)
if architecture == 'skip' or res == resolution_log2:
if architecture == 'skip' or res == res_log2:
y = torgb(x, y, res)
images_out = y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment