mshukor commited on
Commit
06253c3
1 Parent(s): 4668a73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,11 +1,14 @@
1
  import os
2
 
3
  os.system('cd TimeSformer;'
4
- 'pip install -e .; cd ..')
5
 
6
  os.system('ls -l')
7
  os.system('pwd')
8
 
 
 
 
9
  import timesformer
10
 
11
 
 
1
  import os
2
 
3
  os.system('cd TimeSformer;'
4
+ 'pip install .; cd ..')
5
 
6
  os.system('ls -l')
7
  os.system('pwd')
8
 
9
+ import os, sys
10
+ sys.path.append("/home/user/app/TimeSformer/")
11
+
12
  import timesformer
13
 
14