adpro commited on
Commit
ea943b8
·
verified ·
1 Parent(s): f43528f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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