Spaces:
Running on Zero
Running on Zero
update model
Browse files- demo_utils.py +1 -1
demo_utils.py
CHANGED
|
@@ -52,7 +52,7 @@ def image_to_video(image_path, output_path, fps):
|
|
| 52 |
|
| 53 |
def load_model(device='cuda'):
|
| 54 |
print("Loading AutoGaze model from HuggingFace...")
|
| 55 |
-
model = AutoGaze.from_pretrained("
|
| 56 |
model = model.to(device)
|
| 57 |
model.eval()
|
| 58 |
|
|
|
|
| 52 |
|
| 53 |
def load_model(device='cuda'):
|
| 54 |
print("Loading AutoGaze model from HuggingFace...")
|
| 55 |
+
model = AutoGaze.from_pretrained("nvidia/AutoGaze")
|
| 56 |
model = model.to(device)
|
| 57 |
model.eval()
|
| 58 |
|