Spaces:
Sleeping
Sleeping
modified: app.py
Browse files
app.py
CHANGED
|
@@ -10,6 +10,9 @@ import yaml
|
|
| 10 |
import coloredlogs
|
| 11 |
import re
|
| 12 |
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
|
| 15 |
coloredlogs.install(level='INFO', fmt='%(levelname)s: %(message)s',
|
|
@@ -392,4 +395,5 @@ with gr.Blocks(title="3D Garment Generator", theme=gr.themes.Default(text_size="
|
|
| 392 |
gr.Markdown("JPG to PBR")
|
| 393 |
|
| 394 |
if __name__ == "__main__":
|
|
|
|
| 395 |
demo.launch(server_port=7860)
|
|
|
|
| 10 |
import coloredlogs
|
| 11 |
import re
|
| 12 |
|
| 13 |
+
from custom_utils.setup_env import run_setup_script
|
| 14 |
+
|
| 15 |
+
|
| 16 |
|
| 17 |
logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
|
| 18 |
coloredlogs.install(level='INFO', fmt='%(levelname)s: %(message)s',
|
|
|
|
| 395 |
gr.Markdown("JPG to PBR")
|
| 396 |
|
| 397 |
if __name__ == "__main__":
|
| 398 |
+
run_setup_script()
|
| 399 |
demo.launch(server_port=7860)
|