ktllc commited on
Commit
f2e596b
·
1 Parent(s): d3bd556

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.isavailable() else "cpu"
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