From edbc844032ec7abc429f62df12016e68093194ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Dupr=C3=A9?= Date: Thu, 17 Feb 2022 18:10:21 +0100 Subject: [PATCH] Fix misspelling in python documentation (#10588) --- onnxruntime/python/onnxruntime_inference_collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/python/onnxruntime_inference_collection.py b/onnxruntime/python/onnxruntime_inference_collection.py index f382312ecf..77de036d80 100644 --- a/onnxruntime/python/onnxruntime_inference_collection.py +++ b/onnxruntime/python/onnxruntime_inference_collection.py @@ -206,7 +206,7 @@ class Session: Compute the predictions. :param output_names: name of the outputs - :param input_feed: dictionary ``{ input_name: input_ort_value }`` + :param input_dict_ort_values: dictionary ``{ input_name: input_ort_value }`` See ``OrtValue`` class how to create `OrtValue` from numpy array or `SparseTensor` :param run_options: See :class:`onnxruntime.RunOptions`.