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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,8 +2,8 @@ import numpy as np
2
  import clip
3
  import torch
4
  import gradio as gr
5
- from PIL import Image
6
  import base64
 
7
  from io import BytesIO
8
 
9
  # Load the CLIP model
@@ -14,11 +14,11 @@ 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)
21
-
22
  # Prepare input text
23
  text_tokens = clip.tokenize([text_input]).to(device)
24
 
 
2
  import clip
3
  import torch
4
  import gradio as gr
 
5
  import base64
6
+ from PIL import Image
7
  from io import BytesIO
8
 
9
  # Load the CLIP model
 
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)
21
+
22
  # Prepare input text
23
  text_tokens = clip.tokenize([text_input]).to(device)
24