TensorBoard
使用 Docker 容器运行
$ docker run -v //c/pathto/tf_logs:/tf_logs
-p 0.0.0.0:6006:6006 -it tensorflow/tensorflow bash
root@73954ccec665:/notebooks# cd ..
root@73954ccec665:/# tensorboard --logdir tf_logs/
直接运行,只需要指定日志目录
tensorboard --logdir=./logs
Keras
Keras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result with the least possible delay is key to doing good research.
https://medium.com/implodinggradients/tensorflow-or-keras-which-one-should-i-learn-5dd7fa3f9ca0
Comments