tensorflow / profiler

A profiling and performance analysis tool for TensorFlow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support TensorFlow 2.5

jeisinge opened this issue · comments

I attempted to run TensorFlow Profiler on TensorFlow 2.5 by running the Colab Notebook from https://www.tensorflow.org/tensorboard/tensorboard_profiling_keras . The result is that Tensorboard loads, but the Profiler section just spins:
image

Does TensorBoard Profiler support TensorFlow 2.5+? If it doesn't, should the documentation be updated?

Hi, for now try the following by adding an extra flag:

%tensorboard --logdir=logs --load_fast=false

instead of:

%tensorboard --logdir=logs

Look out for the PROFILE tab next to TIME SERIES in the top bar if you can't find it in the dropdown menu.

tensorflow/tensorboard#5088
#298
#307

cc @Terranlee @jimicy @yisitu

Works for me. Thank you!

Hi @jeisinge the latest Profiler plugin v2.5 (pip install tensorboard_plugin_profile (or tensorboard_plugin_profile==2.5.0)) should have the fix. You can launch TensorBoard with %tensorboard --logdir=logs and select Profiler. Thank you @yisitu.

commented

You are welcome!

Thank you --- I am testing now.

It appears to be working. Thank you!!!