Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ogwata
/
structeval-analyz
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
小形克宏
commited on
25 days ago
Commit
4a695de
·
1 Parent(s):
2bd094f
Fix: make Gradio app discoverable by HF Spaces
Browse files
Files changed (1)
hide
show
app.py
+3
-2
app.py
CHANGED
Viewed
@@ -441,6 +441,7 @@ def create_app():
441
return app
442
443
444
if __name__ == "__main__":
445
-
app = create_app
()
446
-
app.launch()
441
return app
442
443
444
+
demo = create_app()
445
+
446
if __name__ == "__main__":
447
+
demo.launch
()