set perlin & threshold to zero on generator initialization

This commit is contained in:
Lincoln Stein 2022-10-06 09:35:04 -04:00
parent 2f29b78a00
commit 183b98384f

View File

@ -21,6 +21,8 @@ class Generator():
self.seed = None
self.latent_channels = model.channels
self.downsampling_factor = downsampling # BUG: should come from model or config
self.perlin = 0.0
self.threshold = 0
self.variation_amount = 0
self.with_variations = []