Spaces:
Running
on
Zero
Running
on
Zero
haotongl
commited on
Commit
·
0f94216
1
Parent(s):
90ae7e5
inital version
Browse files
app.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
import os
|
2 |
-
import time
|
3 |
-
import shutil
|
4 |
from pathlib import Path
|
5 |
-
from typing import Union
|
6 |
-
import atexit
|
7 |
import spaces
|
8 |
-
from concurrent.futures import ThreadPoolExecutor
|
9 |
-
import open3d as o3d
|
10 |
import trimesh
|
11 |
|
12 |
import gradio as gr
|
@@ -23,25 +23,25 @@ DEVICE = 'cuda'
|
|
23 |
# ) else 'mps' if torch.backends.mps.is_available() else 'cpu'
|
24 |
# model = PromptDA.from_pretrained('depth-anything/promptda_vitl').to(DEVICE).eval()
|
25 |
# model = PromptDA.from_pretrained('depth-anything/promptda_vitl').eval()
|
26 |
-
thread_pool_executor = ThreadPoolExecutor(max_workers=1)
|
27 |
-
|
28 |
-
def delete_later(path: Union[str, os.PathLike], delay: int = 300):
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
|
46 |
|
47 |
# @spaces.GPU
|
|
|
1 |
import os
|
2 |
+
# import time
|
3 |
+
# import shutil
|
4 |
from pathlib import Path
|
5 |
+
# from typing import Union
|
6 |
+
# import atexit
|
7 |
import spaces
|
8 |
+
# from concurrent.futures import ThreadPoolExecutor
|
9 |
+
# import open3d as o3d
|
10 |
import trimesh
|
11 |
|
12 |
import gradio as gr
|
|
|
23 |
# ) else 'mps' if torch.backends.mps.is_available() else 'cpu'
|
24 |
# model = PromptDA.from_pretrained('depth-anything/promptda_vitl').to(DEVICE).eval()
|
25 |
# model = PromptDA.from_pretrained('depth-anything/promptda_vitl').eval()
|
26 |
+
# thread_pool_executor = ThreadPoolExecutor(max_workers=1)
|
27 |
+
|
28 |
+
# def delete_later(path: Union[str, os.PathLike], delay: int = 300):
|
29 |
+
# print(f"Deleting file: {path}")
|
30 |
+
# def _delete():
|
31 |
+
# try:
|
32 |
+
# if os.path.isfile(path):
|
33 |
+
# os.remove(path)
|
34 |
+
# print(f"Deleted file: {path}")
|
35 |
+
# elif os.path.isdir(path):
|
36 |
+
# shutil.rmtree(path)
|
37 |
+
# print(f"Deleted directory: {path}")
|
38 |
+
# except:
|
39 |
+
# pass
|
40 |
+
# def _wait_and_delete():
|
41 |
+
# time.sleep(delay)
|
42 |
+
# _delete(path)
|
43 |
+
# thread_pool_executor.submit(_wait_and_delete)
|
44 |
+
# atexit.register(_delete)
|
45 |
|
46 |
|
47 |
# @spaces.GPU
|