Monius
commited on
Commit
·
68aa446
1
Parent(s):
6e76265
add preview
Browse files- .gitattributes +1 -0
- README.md +1 -1
- preview/1.mp4 +3 -0
- preview/2.mp4 +3 -0
- preview/3.mp4 +3 -0
- run.py +1 -2
.gitattributes
CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
*.stl filter=lfs diff=lfs merge=lfs -text
|
|
|
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
*.stl filter=lfs diff=lfs merge=lfs -text
|
37 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -10,7 +10,7 @@ pinned: false
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
-
|
14 |
|
15 |
```bash
|
16 |
mini_url_linux="https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh"
|
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
+
Conda setup
|
14 |
|
15 |
```bash
|
16 |
mini_url_linux="https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh"
|
preview/1.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bbc195a28d962076c41f68890ded6182df5292bf655ae3b7b8712bbedf682db3
|
3 |
+
size 32497927
|
preview/2.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92df306f2fd71aec8811c762b41e08713db03c4bcbe0e947589d9d94ef3c8770
|
3 |
+
size 869178
|
preview/3.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0bd347fefecc6a1e20002cd9368667c3154e735fa0b9a17e74cafef234197c4
|
3 |
+
size 746522
|
run.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
4 |
-
|
5 |
def load_mesh(mesh_file_name):
|
6 |
return mesh_file_name
|
7 |
|
@@ -17,4 +16,4 @@ T3D = gr.Interface(
|
|
17 |
cache_examples=True,
|
18 |
)
|
19 |
|
20 |
-
T3D.launch(share=False)
|
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
|
|
4 |
def load_mesh(mesh_file_name):
|
5 |
return mesh_file_name
|
6 |
|
|
|
16 |
cache_examples=True,
|
17 |
)
|
18 |
|
19 |
+
T3D.launch(share=False, max_threads=30)
|