I am having trouble getting Tensorboard Profiler to run on my windows machine. I am using the tf.profiler progrtammatic mode as described here:
tf.profiler.experimental.start('logdir')
# Train the model here
tf.profiler.experimental.stop()
I then ran TB from the terminal as such:
tensorboard --logdir=<path> --host localhost --port 6006
However when I open the profiler tab I see this:
I suspect this is because I am training on Windows and the instructions are made for Linux. For example, insuring CUPTI exists on path (see here). Has anyone got profiler to work on Windows? If so, where there any nuances to the installation beyond simply pip install tensorboard_plugin_profile?
