merve HF staff commited on
Commit
3868ab8
1 Parent(s): 3a1207e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def generate_and_save_images(number_of_examples):
17
 
18
  for i in range(predictions.shape[0]):
19
  plt.subplot(1, 4, i+1)
20
- plt.imshow(predictions[i, :, :, :] * 127.5 + 127.5)
21
  plt.axis('off')
22
  return plt
23
 
 
17
 
18
  for i in range(predictions.shape[0]):
19
  plt.subplot(1, 4, i+1)
20
+ plt.imshow(predictions[i, :, :, :])
21
  plt.axis('off')
22
  return plt
23