Another great improvement to the framework - docker! You can now run the 17flowers demo right out of the box!
- Grab our docker image at docker hub:
docker pull achaiah/pywick:latest.
Pytorch 1.8 and cuda dependencies are pre-installed. - Run 17flowers demo with:
docker run --rm -it --ipc=host -v your_local_out_dir:/jobs/17flowers --init -e demo=true achaiah/pywick:latest
- Or run the container in standalone mode so you can use your own data (don't forget to map your local dir to container):
docker run --rm -it \
--ipc=host \
-v <your_local_data_dir>:<container_data_dir> \
-v <your_local_out_dir>:<container_out_dir> \
--init \
achaiah/pywick:latest