Keras Visualization of Model Built from Functional API
问题 I wanted to ask if there was an easy way to visualize a Keras model built from the Functional API? Right now, the best ways to debug at a high level a sequential model for me is: model = Sequential() model.add(... ... print(model.summary()) SVG(model_to_dot(model).create(prog='dot', format='svg')) However, I am having a hard time finding a good way to visualize the Keras API if we build a more complex, non-sequential model. 回答1: Yes there is, try checking the keras.utils which has a method