ariG23498 HF staff commited on
Commit
b957ec1
β€’
1 Parent(s): ed74ac9
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ check_path = 'clip-dinoiser/checkpoints/last.pt'
28
  device = "cuda" if torch.cuda.is_available() else "cpu"
29
 
30
  check = torch.load(check_path, map_location=device)
31
- dinoclip_cfg = "configs/clip_dinoiser.yaml"
32
  cfg = compose(config_name=dinoclip_cfg)
33
 
34
  model = build_model(cfg.model, class_names=PascalVOCDataset.CLASSES).to(device)
 
28
  device = "cuda" if torch.cuda.is_available() else "cpu"
29
 
30
  check = torch.load(check_path, map_location=device)
31
+ dinoclip_cfg = "clip_dinoiser.yaml"
32
  cfg = compose(config_name=dinoclip_cfg)
33
 
34
  model = build_model(cfg.model, class_names=PascalVOCDataset.CLASSES).to(device)