Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal example loading an ONNX model and performing inference using ONNX Runtime.
import onnxruntime as ort
import numpy as np
# Load ONNX model
session = ort.InferenceSession('model.onnx')
# Prepare input
input_name = session.get_inputs()[0].name
input_data = np.array([[1.0, 2.0, 3.0, 4.0]], dtype=np.float32)
# Run inference
outputs = session.run(None, {input_name: input_data})
print('Model output:', outputs)ONNX (Open Neural Network Exchange) is an open-source format and ecosystem for representing machine learning models, enabling interoperability between frameworks like PyTorch, TensorFlow, and scikit-learn, and allowing deployment across diverse platforms.
Origin & Creator
ONNX was co-developed by Microsoft and Facebook in 2017 to unify model representation and interoperability between deep learning frameworks.
Industrial Note
ONNX is widely used in production pipelines where models need to be transferred between frameworks, optimized for inference, or deployed on resource-constrained devices like mobile phones or edge servers.