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
Spaces:
tmmdev
/
pattern-analysis
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
pattern-analysis
/
run.py
tmmdev
Initial commit with clean codebase
5913c8f
over 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
162 Bytes
from
fastapi
import
FastAPI
from
app
import
app
if
__name__ ==
"__main__"
:
import
uvicorn
uvicorn.run(
"app:app"
, host=
"0.0.0.0"
, port=
7865
, reload=
True
)