Skip to content

Commit 1b79e2d

Browse files
committed
Default the docker hub images to latest
1 parent c0dd227 commit 1b79e2d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ I advise you that you run all of below in a virutal python environment.
3232

3333
For the CPU model
3434
```bash
35-
docker pull tae898/face-detection-recognition:v0.1
35+
docker pull tae898/face-detection-recognition
3636
```
3737

3838
For the GPU model
3939
```bash
40-
docker pull tae898/face-detection-recognition-cuda:v0.1
40+
docker pull tae898/face-detection-recognition-cuda
4141
```
4242

4343
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).
209209
210210
1. Pull the image from docker hub and run the container.
211211
```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
213213
```
214214
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,
216216
```bash
217217
docker build -t age-gender .
218218
docker run -it --rm -p 10003:10003 age-gender
@@ -230,9 +230,9 @@ Check out [this demo video](https://youtu.be/Dna_Hp-s78I).
230230
python3 app.py
231231
```
232232
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.
234234
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.
236236
237237
## Contributing
238238

0 commit comments

Comments
 (0)