Skip to content

Commit 5d9691f

Browse files
committed
Merge branch 'master' of github.com:lucidrains/stylegan2-pytorch
2 parents 197e143 + d8c4ddd commit 5d9691f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stylegan2_pytorch/stylegan2_pytorch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ def __init__(self, image_size, network_capacity = 16, fq_layers = [], fq_dict_si
560560
num_init_filters = 3 if not transparent else 4
561561

562562
blocks = []
563-
filters = [num_init_filters] + [(64) * (2 ** i) for i in range(num_layers + 1)]
563+
filters = [num_init_filters] + [(network_capacity * 4) * (2 ** i) for i in range(num_layers + 1)]
564564

565565
set_fmap_max = partial(min, fmap_max)
566566
filters = list(map(set_fmap_max, filters))

0 commit comments

Comments
 (0)