Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -11,10 +11,15 @@
|
|
11 |
# // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# // See the License for the specific language governing permissions and
|
13 |
# // limitations under the License.
|
14 |
-
import spaces
|
15 |
-
import subprocess
|
16 |
import os
|
17 |
-
import
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
# Clone the repository to ensure all files are available
|
20 |
subprocess.run("git lfs install", shell=True, check=True)
|
|
|
11 |
# // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# // See the License for the specific language governing permissions and
|
13 |
# // limitations under the License.
|
|
|
|
|
14 |
import os
|
15 |
+
import torch
|
16 |
+
import mediapy
|
17 |
+
from einops import rearrange
|
18 |
+
from omegaconf import OmegaConf
|
19 |
+
print(os.getcwd())
|
20 |
+
import datetime
|
21 |
+
from tqdm import tqdm
|
22 |
+
import gc
|
23 |
|
24 |
# Clone the repository to ensure all files are available
|
25 |
subprocess.run("git lfs install", shell=True, check=True)
|