chats-bug commited on
Commit
207272c
·
1 Parent(s): f3fbfca

Fixed git coco model bug

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ device = "cuda" if torch.cuda.is_available() else "cpu"
27
  # Transfer the models to the device
28
  model_blip_base.to(device)
29
  model_blip_large.to(device)
30
- model_git_large_coco.to(device)
31
  model_oc_coca.to(device)
32
 
33
 
 
27
  # Transfer the models to the device
28
  model_blip_base.to(device)
29
  model_blip_large.to(device)
30
+ # model_git_large_coco.to(device)
31
  model_oc_coca.to(device)
32
 
33