mxnet.visualization.print_summary¶
-
mxnet.visualization.
print_summary
(symbol, shape=None, line_length=120, positions=[0.44, 0.64, 0.74, 1.0])[source]¶ Convert symbol for detail information.
- Parameters
symbol (Symbol) – Symbol to be visualized.
shape (dict) – A dict of shapes, str->shape (tuple), given input shapes.
line_length (int) – Rotal length of printed lines
positions (list) – Relative or absolute positions of log elements in each line.
- Returns
- Return type
None
Notes
If
mxnet
is imported, the visualization module can be used in its short-form. For example, if weimport mxnet
as follows:import mxnet
this method in visualization module can be used in its short-form as:
mxnet.viz.print_summary(...)