• Home
  • About
    • Miles' Blog photo

      Miles' Blog

      Miles 用來記錄學習心得及筆記的地方。

    • Learn More
    • Email
    • Github
  • Posts
    • All Posts
    • All Tags
  • Projects

keras筆記-TensorBoard

06 Apr 2017

Reading time ~1 minute

若以tensorflow為keras底,可以用TensorBoard查看當前數值,做Visualization。

tbCallBack = keras.callbacks.TensorBoard(log_dir='./Graph', histogram_freq=0, write_graph=True, write_images=True)
...
model.fit(...inputs and parameters..., callbacks=[tbCallBack])
#type in in your terminal
tensorboard --logdir path_to_current_dir/Graph


PythonDeep LearningA.I.Data ScienceKeras Share Tweet +1