Konstantin Solomatov
Konstantin Solomatov

Reputation: 10332

How to display filters in tensorboard

I have a simple MNIST model from the tensorflow tutorial. I want to see how the first convolutional layer's filters changes with time. When I use tf.summary.image, only one of the steps is displayed, and the rest is ignored. Is there any way to work this around?

Upvotes: 0

Views: 504

Answers (1)

Salvador Dali
Salvador Dali

Reputation: 222551

TF does not have videos, but you can generate image at each step, save them in some directory and then create a video from them.

Upvotes: 1

Related Questions