module plotting.plotting_onnx#

Short summary#

module onnxcustom.plotting.plotting_onnx

Shortcuts to plotting.

source on GitHub

Functions#

function

truncated documentation

plot_onnxs

Plots one or several ONNX graph into a matplotlib graph.

Documentation#

Shortcuts to plotting.

source on GitHub

onnxcustom.plotting.plotting_onnx.plot_onnxs(*onx, ax=None, dpi=300, temp_dot=None, temp_img=None, show=False, title=None)#

Plots one or several ONNX graph into a matplotlib graph.

Parameters:
  • onx – ONNX objects

  • ax – existing axes

  • dpi – resolution

  • temp_dot – temporary file, if None, a file is created and removed

  • temp_img – temporary image, if None, a file is created and removed

  • show – calls plt.show()

  • title – graph title

Returns:

axes

source on GitHub