therealcyberlord commited on
Commit
c814c49
·
1 Parent(s): f27a3bb

larger image

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,7 +69,7 @@ if generate:
69
  for i in range(len(color_match)):
70
  # denormalize and permute to correct color channel
71
  cols[i].image(denormalize_images(color_match[i]).permute(1, 2, 0).numpy(), use_column_width=True)
72
- st.image("pointing.png", use_column_width=True, caption="https://knowyourmeme.com/memes/two-soyjaks-pointing")
73
 
74
  # default setting -> vanilla dcgan generation
75
  if use_srgan == "No":
@@ -78,7 +78,7 @@ if generate:
78
  cols = st.columns(num_images)
79
  for i in range(len(fakes)):
80
  cols[i].image(denormalize_images(fakes[i]).permute(1, 2, 0).numpy(), use_column_width=True)
81
- st.image("pointing.png", use_column_width=True, caption="https://knowyourmeme.com/memes/two-soyjaks-pointing")
82
 
83
 
84
 
 
69
  for i in range(len(color_match)):
70
  # denormalize and permute to correct color channel
71
  cols[i].image(denormalize_images(color_match[i]).permute(1, 2, 0).numpy(), use_column_width=True)
72
+ st.image("pointing.jpg", use_column_width=True, caption="https://knowyourmeme.com/memes/two-soyjaks-pointing")
73
 
74
  # default setting -> vanilla dcgan generation
75
  if use_srgan == "No":
 
78
  cols = st.columns(num_images)
79
  for i in range(len(fakes)):
80
  cols[i].image(denormalize_images(fakes[i]).permute(1, 2, 0).numpy(), use_column_width=True)
81
+ st.image("pointing.jpg", use_column_width=True, caption="https://knowyourmeme.com/memes/two-soyjaks-pointing")
82
 
83
 
84