ac5113 commited on
Commit
73849f0
1 Parent(s): f04c6a3

initial app test

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -5,15 +5,17 @@ import numpy as np
5
  import cv2
6
  import PIL.Image as pil_img
7
  import sys
8
- import gradio as gr
9
-
10
- import trimesh
11
- import pyrender
12
 
13
  print(os.path.abspath(__file__))
14
  os.system('pip install gradio==3.47.1')
 
15
  os.system('sh fetch_data.sh')
16
 
 
 
 
 
 
17
  from models.deco import DECO
18
  from common import constants
19
 
 
5
  import cv2
6
  import PIL.Image as pil_img
7
  import sys
 
 
 
 
8
 
9
  print(os.path.abspath(__file__))
10
  os.system('pip install gradio==3.47.1')
11
+ os.system('pip install networkx')
12
  os.system('sh fetch_data.sh')
13
 
14
+ import gradio as gr
15
+
16
+ import trimesh
17
+ import pyrender
18
+
19
  from models.deco import DECO
20
  from common import constants
21