aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/examples
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2020-08-12 14:59:06 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2020-08-17 16:10:54 +0000
commit841aca155b35cc17ea9527599d2c364695e28166 (patch)
tree8861d6f275f5955495201f0e1b0677bb44604a17 /python/pyarmnn/examples
parent313c99f9a64c7fc51dc70757bffff3088c2e95cf (diff)
downloadarmnn-841aca155b35cc17ea9527599d2c364695e28166.tar.gz
IVGCVSW-5200 Update pyarmnn
* Add HalfPixelCenters to Resize * Update pyarmnn version to semantic versioning * Add fill operator * Add Bf16 optimization * Add Gather operator * Update TransposeConvolution2d descriptor * Add Rank operator * Add load dynamic tensor support of TfLiteParser Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I7e76ed286ab87bd97a65ff62868ba7db7967376f
Diffstat (limited to 'python/pyarmnn/examples')
-rw-r--r--python/pyarmnn/examples/example_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pyarmnn/examples/example_utils.py b/python/pyarmnn/examples/example_utils.py
index f4d1e4eb1f..5ef30f2331 100644
--- a/python/pyarmnn/examples/example_utils.py
+++ b/python/pyarmnn/examples/example_utils.py
@@ -73,7 +73,7 @@ def __create_network(model_file: str, backends: list, parser=None):
def create_tflite_network(model_file: str, backends: list = ['CpuAcc', 'CpuRef']):
- """Creates a network from an onnx model file.
+ """Creates a network from a tflite model file.
Args:
model_file (str): Path of the model file.
@@ -92,7 +92,7 @@ def create_tflite_network(model_file: str, backends: list = ['CpuAcc', 'CpuRef']
def create_onnx_network(model_file: str, backends: list = ['CpuAcc', 'CpuRef']):
- """Creates a network from a tflite model file.
+ """Creates a network from an onnx model file.
Args:
model_file (str): Path of the model file.