From 191691ab73da33c2dba68db43882d272901513b1 Mon Sep 17 00:00:00 2001 From: Labintsev A I Date: Wed, 4 Sep 2024 22:15:37 +0300 Subject: [PATCH] Update intro_onnx.py Add onnxruntime dependency --- beginner_source/onnx/intro_onnx.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/beginner_source/onnx/intro_onnx.py b/beginner_source/onnx/intro_onnx.py index b5cbafc1c64..ec625ec78ff 100644 --- a/beginner_source/onnx/intro_onnx.py +++ b/beginner_source/onnx/intro_onnx.py @@ -39,13 +39,14 @@ - `ONNX `_ standard library - `ONNX Script `_ library that enables developers to author ONNX operators, - functions and models using a subset of Python in an expressive, and yet simple fashion. + functions and models using a subset of Python in an expressive, and yet simple fashion + - `ONNX Runtime `_ accelerated machine learning library. They can be installed through `pip `_: .. code-block:: bash - pip install --upgrade onnx onnxscript + pip install --upgrade onnx onnxscript onnxruntime To validate the installation, run the following commands: