From 020c9d2b088ebdb56631676a836714c77f3424bf Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Wed, 5 Mar 2025 14:38:31 +0000 Subject: [PATCH] Update README.md docker demo added in api section --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aae3fd3..7f8eba2 100644 --- a/README.md +++ b/README.md @@ -351,13 +351,16 @@ DeepFace.stream( ) ``` -**API** - [`Demo`](https://youtu.be/HeKCQ6U9XmI) +**API** - [`Demo`](https://youtu.be/HeKCQ6U9XmI), [`Docker Demo`](https://youtu.be/9Tk9lRQareA) DeepFace serves an API as well - see [`api folder`](https://github.com/serengil/deepface/tree/master/deepface/api/src) for more details. You can clone deepface source code and run the api with the following command. It will use gunicorn server to get a rest service up. In this way, you can call deepface from an external system such as mobile app or web. ```shell -cd scripts +cd script ./service.sh + +# or run the service via docker +# ./dockerize.sh ```