LukasHug commited on
Commit
d41c52d
·
verified ·
1 Parent(s): d85f270

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -165,4 +165,7 @@ def create_interface(module):
165
 
166
 
167
  module = evaluate.load(os.path.join(os.path.dirname(os.path.abspath(__file__)), "IsomorphicPerturbationTesting.py"))
168
- create_interface(module).launch()
 
 
 
 
165
 
166
 
167
  module = evaluate.load(os.path.join(os.path.dirname(os.path.abspath(__file__)), "IsomorphicPerturbationTesting.py"))
168
+ demo = create_interface(module)
169
+
170
+ if __name__ == "__main__":
171
+ demo.launch()