wyctorfogos commited on
Commit
6ebaf3c
·
1 Parent(s): 961cf0c

Add app.py and .gitignore for HF Spaces deployment

Browse files
Files changed (2) hide show
  1. .gitignore +2 -0
  2. app.py +8 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.pickle
2
+ *.pyc
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ import os
3
+ sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
4
+
5
+ from main import demo
6
+
7
+ if __name__ == "__main__":
8
+ demo.launch()