lemonaddie commited on
Commit
4018a14
1 Parent(s): e490817

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -414,7 +414,7 @@ def main():
414
  repo = git.Repo.clone_from(REPO_URL, REPO_DIR)
415
  sys.path.append(os.path.join(os.getcwd(), REPO_DIR))
416
 
417
- from models.depth_normal_pipeline_clip_cfg import DepthNormalEstimationPipeline
418
  pipeline = DepthNormalEstimationPipeline.from_pretrained("lemonaddie/Geowizard")
419
 
420
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
 
414
  repo = git.Repo.clone_from(REPO_URL, REPO_DIR)
415
  sys.path.append(os.path.join(os.getcwd(), REPO_DIR))
416
 
417
+ from .models.depth_normal_pipeline_clip_cfg import DepthNormalEstimationPipeline
418
  pipeline = DepthNormalEstimationPipeline.from_pretrained("lemonaddie/Geowizard")
419
 
420
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")