bgawrych commented on issue #20057: URL: https://github.com/apache/incubator-mxnet/issues/20057#issuecomment-804136007
Hi @Gregorino, this is only warning that input data type can't be inferred during loading model, but it's assumed to be fp32. Your model probably have loaded correctly. To visualize graph you can follow this tutorial: https://mxnet.apache.org/versions/1.7.0/api/faq/visualize_graph ``` sym = mx.symbol.load("model-symbol.json") mx.viz.plot_network(net) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
