0

Assuming that I'm coding out a Resnet 152 model in keras from scratch, does there exist any tool/api which can take my code as input and give out a graphical signal flow diagram so that I can make sure that the model I coded turned out as intended?

I know there exists Keras Model Summary, but how do I interpret skip layer connections from that?

Jean-François Corbett
  • 37,420
  • 30
  • 139
  • 188
Akash Nandi
  • 23
  • 1
  • 5

1 Answers1

0

Try plot_model(your_model, to_file='model.png')

You will get a .png of your model that shows you how your layers are connected.

esihemohen
  • 88
  • 1
  • 1
  • 8