Skip to content

Commit

Permalink
same fix for sgan
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGuT committed Feb 15, 2019
1 parent 927505b commit bb1f049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sgan/sgan.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def sample_images(self, epoch):
gen_imgs = self.generator.predict(noise)

# Rescale images 0 - 1
gen_imgs = 0.5 * gen_imgs + 1
gen_imgs = 0.5 * gen_imgs + 0.5

fig, axs = plt.subplots(r, c)
cnt = 0
Expand Down

0 comments on commit bb1f049

Please sign in to comment.