Update app.py
Browse files
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 |
-
|
30 |
-
|
|
|
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/")
|