souging commited on
Commit
40bb1fc
·
verified ·
1 Parent(s): 1e8a28b

Create run.py

Browse files
Files changed (1) hide show
  1. app/run.py +8 -0
app/run.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from app import ModelAPI
2
+
3
+ api = ModelAPI(
4
+ host = "0.0.0.0",
5
+ port = 6500
6
+ )
7
+
8
+ api.run()