Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ app = FastAPI()
|
|
12 |
|
13 |
# 🟢 Tải mô hình ZoeDepth từ Hugging Face
|
14 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
15 |
-
image_processor = AutoImageProcessor.from_pretrained("Intel/zoedepth-nyu-kitti")
|
16 |
model = ZoeDepthForDepthEstimation.from_pretrained("Intel/zoedepth-nyu-kitti").to(device)
|
17 |
model.eval()
|
18 |
|
|
|
12 |
|
13 |
# 🟢 Tải mô hình ZoeDepth từ Hugging Face
|
14 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
15 |
+
image_processor = AutoImageProcessor.from_pretrained("Intel/zoedepth-nyu-kitti", use_fast=True)
|
16 |
model = ZoeDepthForDepthEstimation.from_pretrained("Intel/zoedepth-nyu-kitti").to(device)
|
17 |
model.eval()
|
18 |
|