Module: onnx_inference_workflow
ONNX Inference Workflow
A class for loading & running inference on ONNX models.
Models can be loaded in two ways:
- Preloading: The model is loaded in the
setup()
method ifmodel_id
is provided at class instantiation. - On-demand: The model is loaded following an inference request. This happens if
model_id
is provided with the input (see optional field in theONNXInferenceInput
class) and is not preloaded or cached.
Loaded models are cached in-memory using an LRU cache. The cache size can be configured
using the ONNX_MODEL_LRU_CACHE_SIZE
environment variable.
Additional Installations
Since this workflow uses some additional libraries, you'll need to install
infernet-ml[onnx_inference]
. Alternatively, you can install those packages directly.
The optional dependencies "[onnx_inference]"
are provided for your
convenience.
Example Usage
import numpy as np
from infernet_ml.utils.codec.vector import RitualVector
from infernet_ml.workflows.inference.onnx_inference_workflow import (
ONNXInferenceInput,
ONNXInferenceWorkflow,
)
def main():
# Instantiate the workflow
workflow = ONNXInferenceWorkflow()
# Setup the workflow
workflow.setup()
# Define the input
input_data = ONNXInferenceInput(
model_id="huggingface/Ritual-Net/iris-classification:iris.onnx",
inputs={
"input": RitualVector.from_numpy(
np.array([1.0380048, 0.5586108, 1.1037828, 1.712096])
.astype(np.float32)
.reshape(1, 4)
),
},
)
# Run the model
result = workflow.inference(input_data)
# Print the result
print(f"result: {result}")
if __name__ == "__main__":
main()
Outputs:
result: [RitualVector(dtype=<DataType.float32: 1>, shape=(1, 3), values=[0.0010151526657864451, 0.014391022734344006, 0.9845937490463257])]
ONNXInferenceInput
Bases: BaseModel
Input data for ONNX inference workflows. If model_id
is provided, the model is
loaded. Otherwise, if the class is instantiated with a model_id
, the model is
preloaded in the setup method.
Input Format
Input format is a dictionary of RitualVector objects. Each key corresponds to the name of the input nodes defined in the onnx model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
inputs |
Dict[str, RitualVector]
|
Each key corresponds to an input tensor name. |
required |
model_id |
Optional[MlModelId | str]
|
Model to be loaded at instantiation. |
None
|
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
ONNXInferenceWorkflow
Bases: BaseInferenceWorkflow
Inference workflow for ONNX-based models.
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
|
__init__(model_id=None, *args, **kwargs)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_id |
Optional[MlModelId | str]
|
Optional[MlModelId | str]: Model to be loaded |
None
|
*args |
Any
|
|
()
|
**kwargs |
Any
|
|
{}
|
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
do_preprocessing(input_data)
Convert the input data to a format that can be used by the model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_data |
ONNXInferenceInput
|
Input data for the inference workflow |
required |
Returns:
Type | Description |
---|---|
InferenceSession
|
Tuple[InferenceSession, ModelProto, ONNXInferenceInput, float]: Tuple |
ModelProto
|
containing the inference session, the model proto, the input data and |
ONNXInferenceInput
|
the FLOPs of the model |
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
do_run_model(_input)
Run the model with the input data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_input |
Tuple[InferenceSession, Dict[str, Tensor]]
|
Tuple containing |
required |
Returns:
Name | Type | Description |
---|---|---|
ONNXInferenceResult |
ONNXInferenceResult
|
List of output tensors from the model |
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
do_setup()
If model ID is provided, preloads the model & starts the session. Otherwise, does nothing & model is loaded with an inference request.
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
do_stream(preprocessed_input)
Streaming inference is not supported for ONNX models.
get_session(model)
Load the model and start the inference session.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
MlModelId
|
Model to be loaded |
required |
Returns:
Type | Description |
---|---|
Tuple[InferenceSession, ModelProto, float]
|
Tuple[InferenceSession, ModelProto, float]: Tuple containing the inference session, the model proto and the FLOPs of the model |
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
inference(input_data, log_preprocessed_data=True)
Inference method for the workflow. Overridden to add type hints.
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
load_model_and_start_session(model_id)
cached
Load the model and start the inference session.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_id |
MlModel
|
Model to be loaded |
required |
Returns:
Type | Description |
---|---|
Tuple[InferenceSession, ModelProto, float]
|
Tuple[InferenceSession, ModelProto, float]: Tuple containing the inference session, the model proto and the FLOPs of the model |
Source code in src/infernet_ml/workflows/inference/onnx_inference_workflow.py
setup()
Setup method for the workflow. Overridden to add type hints.