Page https://efficientqa.github.io/submit.html claims that to check image size you will use
docker run "${MODEL}" du -h
Questions:
-
This implies that anything outside of the workdir is not measured, so if my workdir is /app and I put data in / - that is not counted. Did you intend to say docker run "${MODEL}" du -h / instead?
-
why not just use docker images output (SIZE column)?
Any clarification would be appreciated.
Page https://efficientqa.github.io/submit.html claims that to check image size you will use
Questions:
This implies that anything outside of the workdir is not measured, so if my workdir is
/appand I put data in/- that is not counted. Did you intend to saydocker run "${MODEL}" du -h /instead?why not just use
docker imagesoutput (SIZEcolumn)?Any clarification would be appreciated.