Spaces:
Runtime error
Runtime error
Commit ·
1299110
1
Parent(s): 5d7e7c2
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import os
|
| 2 |
-
import
|
| 3 |
import html
|
| 4 |
import glob
|
| 5 |
import uuid
|
|
@@ -8,7 +8,7 @@ import requests
|
|
| 8 |
from tqdm import tqdm
|
| 9 |
|
| 10 |
os.system("git clone https://github.com/FrozenBurning/SceneDreamer.git")
|
| 11 |
-
|
| 12 |
pretrained_model = dict(file_url='https://drive.google.com/uc?id=1IFu1vNrgF1EaRqPizyEgN_5Vt7Fyg0Mj',
|
| 13 |
alt_url='', file_size=330571863,
|
| 14 |
file_path='./scenedreamer_released.pt',)
|
|
|
|
| 1 |
import os
|
| 2 |
+
import sys
|
| 3 |
import html
|
| 4 |
import glob
|
| 5 |
import uuid
|
|
|
|
| 8 |
from tqdm import tqdm
|
| 9 |
|
| 10 |
os.system("git clone https://github.com/FrozenBurning/SceneDreamer.git")
|
| 11 |
+
sys.path.append("SceneDreamer")
|
| 12 |
pretrained_model = dict(file_url='https://drive.google.com/uc?id=1IFu1vNrgF1EaRqPizyEgN_5Vt7Fyg0Mj',
|
| 13 |
alt_url='', file_size=330571863,
|
| 14 |
file_path='./scenedreamer_released.pt',)
|