Closed dtilson closed 4 years ago
Glad to hear you're enjoying the book, @dtilson 😄
With respect to your first point, is this not addressed by footnote 38 on page 152?
With respect to your second point, you're quite right! I'm making your suggested changes presently.
Enjoying the book.
Found a couple of small issues with using TensorBoard according to the instructions on page 152 of the book.
--logdir='logs/deep-net'
option in step 2 should be--logdir='work/notebooks/logs/deep-net'
as the code in the notebook creates the logs directory in the notebooks directory.docker run
command needs -p 6006:6006 added to allow a browser on the host machine to access TensorBoard e.g.docker run -v %cd%:/home/jovyan/work -it --rm -p 8888:8888 -p 6006:6006 dli-stack
. Could make the changes in the rundocker.bat and rundocker.sh files.