chansung commited on
Commit
1d8f4cc
·
1 Parent(s): 23dce4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -210,7 +210,7 @@ def sepia(input_img):
210
  img_batch = np.expand_dims(img, axis=0)
211
  img_batch = img_batch.astype(float)
212
 
213
- outputs = sess.run(None, {"pixel_values": input_img})[0]
214
  logits = outputs.logits
215
 
216
  logits = tf.transpose(logits, [0, 2, 3, 1])
 
210
  img_batch = np.expand_dims(img, axis=0)
211
  img_batch = img_batch.astype(float)
212
 
213
+ outputs = sess.run(None, {"pixel_values": img_batch})[0]
214
  logits = outputs.logits
215
 
216
  logits = tf.transpose(logits, [0, 2, 3, 1])