Views
No views yet
1import onnxruntime as ort 2sess = ort.InferenceSession('model.onnx') 3weights = sess.run(None, {'X': X})[0]