Keras has a nice functionality to save the model architecture as a block diagram
keras.utils.plot_model(self.model, plot_filepath.as_posix(), show_shapes=True)
Can this be achieved in PyTorch?
This answer talks about printing summary similar to Keras. Is there something similar to save the block diagram of model architecture?