ktllc commited on
Commit
c55abad
·
1 Parent(s): 69aa3f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ model.to(device).eval()
14
  def find_similarity(image_base64, text_input):
15
  # Decode the base64 image string to bytes
16
  image_bytes = base64.b64decode(image_base64)
17
- image = Image.open(BytesIO(image_bytes)
18
 
19
  # Preprocess the image
20
  image = preprocess(image).unsqueeze(0).to(device)
 
14
  def find_similarity(image_base64, text_input):
15
  # Decode the base64 image string to bytes
16
  image_bytes = base64.b64decode(image_base64)
17
+ image = Image.open(BytesIO(image_bytes))
18
 
19
  # Preprocess the image
20
  image = preprocess(image).unsqueeze(0).to(device)