Replies: 6 comments
-
Try this |
Beta Was this translation helpful? Give feedback.
-
I am waiting for this feature for more than half a year :) I am so glad it is on the way. |
Beta Was this translation helpful? Give feedback.
-
@rmaria @ShownX We have open-sourced MXBoard which enables users to visualize MXNet data (including network structures) in TensorBoard. The current version on PyPI is 0.1.0rc3. You can either install from source or |
Beta Was this translation helpful? Give feedback.
-
Sure. Thank you for this tool. |
Beta Was this translation helpful? Give feedback.
-
@rmaria please consider closing if your issue is solved 👍 |
Beta Was this translation helpful? Give feedback.
-
@rmaria I believe your question is now answered. Please close this issue. |
Beta Was this translation helpful? Give feedback.
-
Note: Providing complete information in the most concise form is the best way to get help. This issue template serves as the checklist for essential information to most of the technical issues and bug reports. For non-technical issues and feature requests, feel free to present the information in what you believe is the best form.
For Q & A and discussion, please start a discussion thread at https://discuss.mxnet.io
Description
I have a pre-trained model saved in the format: name.params, name.prototx, name-symbol.json
I am loading the model using net = mx.model.FeedForward.load(name, 1)
I want to visualize the model using mx.viz.plot_network(net), but I get the error: "symbol must be a Symbol"
Environment info (Required)
python virtual environment
Ubuntu 16.04
mxnet 1.2.0
graphviz installed
Package used (Python/R/Scala/Julia):
(I'm using ...)
For Scala user, please provide:
java -version
)mvn -version
)scala -version
)For R user, please provide R
sessionInfo()
:Build info (Required if built from source)
Compiler (gcc/clang/mingw/visual studio):
MXNet commit hash:
(Paste the output of
git rev-parse HEAD
here.)Build config:
(Paste the content of config.mk, or the build command.)
Error Message:
(Paste the complete error message, including stack trace.)
Minimum reproducible example
(If you are using your own code, please provide a short script that reproduces the error. Otherwise, please provide link to the existing example.)
Steps to reproduce
(Paste the commands you ran that produced the error.)
1.net = mx.model.FeedForward.load(model,1)
2.mx.viz.plot_network(net)
What have you tried to solve it?
Beta Was this translation helpful? Give feedback.
All reactions