apolinario commited on
Commit
adaa686
1 Parent(s): 2e1b960

Regex package

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +2 -1
app.py CHANGED
@@ -19,13 +19,13 @@ from pathvalidate import sanitize_filename
19
 
20
  torch.cuda.empty_cache()
21
 
 
22
  def gitclone(url):
23
  res = subprocess.run(['git', 'clone', url], stdout=subprocess.PIPE).stdout.decode('utf-8')
24
  print(res)
25
 
26
  @st.cache
27
  def initial_clones():
28
- #st.set_page_config(layout="wide")
29
  root_path = f'.'
30
  model_path = f'.'
31
  gitclone("https://github.com/MSFTserver/pytorch3d-lite.git")
 
19
 
20
  torch.cuda.empty_cache()
21
 
22
+ st.set_page_config(layout="wide")
23
  def gitclone(url):
24
  res = subprocess.run(['git', 'clone', url], stdout=subprocess.PIPE).stdout.decode('utf-8')
25
  print(res)
26
 
27
  @st.cache
28
  def initial_clones():
 
29
  root_path = f'.'
30
  model_path = f'.'
31
  gitclone("https://github.com/MSFTserver/pytorch3d-lite.git")
requirements.txt CHANGED
@@ -13,4 +13,5 @@ imageio
13
  kornia
14
  pathvalidate
15
  torch
16
- opencv-python
 
 
13
  kornia
14
  pathvalidate
15
  torch
16
+ opencv-python
17
+ regex