How to get weight/bias matrix values from ONNX model, I can currently get the inputs, Kernel size, stride and pad values from model.onnx
. I load the model and then read the graph nodes to get the same:
import onnx
m = onnx.load('model.onnx')
print(m.graph.node)