adpro commited on
Commit
9307fab
·
verified ·
1 Parent(s): 0fc8fd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -26,8 +26,9 @@ from zoedepth.utils.config import get_config
26
 
27
  # 🟢 Sử dụng đúng model `zoedepth_nk`
28
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
29
- config = get_config("zoedepth_nk") # 🟢 Dùng `zoedepth_nk` thay vì `zoedepth_tiny.py`
30
- model = build_model(config).to(device)
 
31
  model.eval()
32
 
33
  @app.post("/analyze_path/")
 
26
 
27
  # 🟢 Sử dụng đúng model `zoedepth_nk`
28
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
29
+ # Load ZoeDepth Tiny model correctly
30
+ config = get_config("zoedepth", version="tiny", pretrained_resource=None)
31
+ model = ZoeDepth.build_from_config(config)
32
  model.eval()
33
 
34
  @app.post("/analyze_path/")