Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ from decimal import Decimal
|
|
9 |
|
10 |
# Load the CLIP model
|
11 |
model, preprocess = clip.load("ViT-B/32")
|
12 |
-
device = "cuda" if torch.cuda.
|
13 |
model.to(device).eval()
|
14 |
|
15 |
# Define a function to find similarity
|
|
|
9 |
|
10 |
# Load the CLIP model
|
11 |
model, preprocess = clip.load("ViT-B/32")
|
12 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
13 |
model.to(device).eval()
|
14 |
|
15 |
# Define a function to find similarity
|