Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lukasgarbas
/
transformer-ranker
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
lukasgarbas
commited on
17 days ago
Commit
b8c75ba
·
1 Parent(s):
547f094
launch as entry point
Browse files
Files changed (1)
hide
show
launch.py
+10
-0
launch.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from demo.app import demo
2
+
3
+
4
+
def main() -> None:
5
+
demo.queue(default_concurrency_limit=3)
6
+
demo.launch(max_threads=6)
7
+
8
+
9
+
if __name__ == "__main__":
10
+
main()