We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from torchview import draw_graph import graphviz graphviz.set_jupyter_format('png') model_graph = draw_graph( model, input_data=images, depth = 8, device='meta', expand_nested=False, graph_dir='TB', save_graph=True, filename='effnetb0.png' ) model_graph.visual_graph
Is there a way to set the dpi of output figure, I have searched the documentation of graphviz. But couldn't find anything related to dpi
The text was updated successfully, but these errors were encountered:
Try resize before render. It works for me.
model_graph.resize_graph(scale=6.0) model_graph.visual_graph.render('model',format='png')
Sorry, something went wrong.
No branches or pull requests
Is there a way to set the dpi of output figure, I have searched the documentation of graphviz. But couldn't find anything related to dpi
The text was updated successfully, but these errors were encountered: