Update app.py
Browse files
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)
|