You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The detailed insturctions can be found [here](https://github.com/tae898/face-detection-recognition/blob/main/README.md).
@@ -209,10 +209,10 @@ Check out [this demo video](https://youtu.be/Dna_Hp-s78I).
209
209
210
210
1. Pull the image from docker hub and run the container.
211
211
```bash
212
-
docker run -it --rm -p 10003:10003 tae898/age-gender:v0.2
212
+
docker run -it --rm -p 10003:10003 tae898/age-gender
213
213
```
214
214
215
-
1. For whatever reason if you want to build it from scratch,
215
+
2. For whatever reason if you want to build it from scratch,
216
216
```bash
217
217
docker build -t age-gender .
218
218
docker run -it --rm -p 10003:10003 age-gender
@@ -230,9 +230,9 @@ Check out [this demo video](https://youtu.be/Dna_Hp-s78I).
230
230
python3 app.py
231
231
```
232
232
233
-
After running the container (i.e. `docker run -it --rm -p 10003:10003 tae898/age-gender:v0.2`), you can run `client.py` (e.g. `python client.py --image-path test-images/matrix-tae-final_exported_37233.jpg`) to get estimated genders and ages in the picture.
233
+
After running the container (i.e. `docker run -it --rm -p 10003:10003 tae898/age-gender`), you can run `client.py` (e.g. `python client.py --image-path test-images/matrix-tae-final_exported_37233.jpg`) to get estimated genders and ages in the picture.
234
234
235
-
NB: You also have to run the face-detection-recognition (`docker run -it --rm -p 10002:10002 tae898/face-detection-recognition:v0.1` for CPU or `docker run --gpus all -it --rm -p 10002:10002 tae898/face-detection-recognition-cuda:v0.1` for cuda), before running `client.py`. This separation might be annoying but the modularization will help in the future.
235
+
NB: You also have to run the face-detection-recognition (`docker run -it --rm -p 10002:10002 tae898/face-detection-recognition` for CPU or `docker run --gpus all -it --rm -p 10002:10002 tae898/face-detection-recognition-cuda` for cuda), before running `client.py`. This separation might be annoying but the modularization will help in the future.
0 commit comments