You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 21, 2023. It is now read-only.
I want to visualize FPN network with pydot. I add the rendering process after creating the network.
def create_model():
"""Build the model and look for saved model checkpoints in case we can
resume from one.
"""
# skip many lines
logger.info('Building model: {}'.format(cfg.MODEL.TYPE))
model = model_builder.create(cfg.MODEL.TYPE, train=True)
# rendering the graph
graph = net_drawer.GetPydotGraph(model.net)
graph.write_png('network.png')
return model, weights_file, start_iter, checkpoints, output_dir
but pydot get stuck at write_png without throwing errors.