eybro commited on
Commit
f0da2a7
·
verified ·
1 Parent(s): eb1decc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -60,9 +60,9 @@ def process_image(image):
60
 
61
  def inference(image):
62
  """"""
63
- # input_image = process_image(image)
64
 
65
- input_image = encoded_images[2000]
66
 
67
  nearest_neighbors = find_nearest_neighbors(encoded_images, input_image, top_n=5)
68
 
 
60
 
61
  def inference(image):
62
  """"""
63
+ input_image = process_image(image)
64
 
65
+ # input_image = encoded_images[2000]
66
 
67
  nearest_neighbors = find_nearest_neighbors(encoded_images, input_image, top_n=5)
68