Skip to content

Commit

Permalink
README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vBykoff committed Nov 24, 2022
1 parent 981c1bf commit 2c23c77
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions online_inference/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Online Inference

Start:
~~~
cd online_inference
~~~
With docker:

~~~
docker build -t online_inference .
docker run -p 8000:8000 ml_project/online_inference
~~~

or
~~~
docker pull bykoff/online_inference:v5
docker run -p 8000:8000 ml_project/online_inference:v5
~~~

~~~
With python3:
~~~
python3 server.py
~~~
With uvicorn:
~~~
uvicorn server:app --host 0.0.0.0 --port 8000
~~~

0 comments on commit 2c23c77

Please sign in to comment.