Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
shomez
/
tasksource-deberta-small-long-nli
like
0
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
shomez
commited on
Aug 20, 2024
Commit
735cee1
·
verified
·
1 Parent(s):
22487ca
Upload run.py with huggingface_hub
Browse files
Files changed (1)
hide
show
run.py
+7
-0
run.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from app import create_app
2
+
3
+
app = create_app()
4
+
app.config.from_object('config.Config')
5
+
6
+
if __name__ == '__main__':
7
+
app.run(host='0.0.0.0', debug=app.config['DEBUG'])