hwajjala commited on
Commit
77c92b5
1 Parent(s): 267519a

Add logging for input

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -43,8 +43,10 @@ with torch.no_grad():
43
  all_text_features = all_text_features.cpu().numpy()
44
 
45
 
46
- def predict_fn(name):
47
- return "Hello " + name + "!"
 
 
48
 
49
 
50
  iface = gr.Interface(
 
43
  all_text_features = all_text_features.cpu().numpy()
44
 
45
 
46
+ def predict_fn(input_img):
47
+ print(type(input_img))
48
+ print(input_img)
49
+ return "Hello " + "!"
50
 
51
 
52
  iface = gr.Interface(