mscsasem3 commited on
Commit
78abc18
1 Parent(s): bc2be51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -411,8 +411,8 @@ def return_image_embedding(model,img_path):
411
  x = preprocess_input(x)
412
  preds = model.predict(x)
413
  curr_df = pd.DataFrame(preds[0]).T
414
- print(curr_df)
415
- return curr_df
416
 
417
 
418
 
 
411
  x = preprocess_input(x)
412
  preds = model.predict(x)
413
  curr_df = pd.DataFrame(preds[0]).T
414
+ print(curr_df.to_numpy())
415
+ return curr_df.to_numpy()
416
 
417
 
418