From dba04df561e7de478986d553f3f601076438747a Mon Sep 17 00:00:00 2001 From: Benjamin Klimczak Date: Mon, 21 Nov 2022 12:20:54 +0000 Subject: Improve the CLI output Resolves: MLIA-719, MLIA-720 Change-Id: Ib697046f5090260437f3b1ab5fe8c5b4975abae2 --- src/mlia/devices/cortexa/advice_generation.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/mlia/devices') diff --git a/src/mlia/devices/cortexa/advice_generation.py b/src/mlia/devices/cortexa/advice_generation.py index 3d2f106..bab9530 100644 --- a/src/mlia/devices/cortexa/advice_generation.py +++ b/src/mlia/devices/cortexa/advice_generation.py @@ -97,7 +97,8 @@ class CortexAAdviceProducer(FactBasedAdviceProducer): "Using select TensorFlow operators in TensorFlow Lite model " "requires special initialization of TFLiteConverter and " "TensorFlow Lite run-time.", - "Please refer to the TensorFlow documentation for more details.", + "Please refer to the TensorFlow documentation for more " + "details: https://www.tensorflow.org/lite/guide/ops_select", "Note, such models are not supported by the ML Inference Advisor.", ] ) @@ -105,13 +106,14 @@ class CortexAAdviceProducer(FactBasedAdviceProducer): if data_item.custom_ops: self.add_advice( [ - "The following operators appears to be custom and not natively " + "The following operators appear to be custom and not natively " "supported by TensorFlow Lite: " f"{', '.join(data_item.custom_ops)}.", "Using custom operators in TensorFlow Lite model " "requires special initialization of TFLiteConverter and " "TensorFlow Lite run-time.", - "Please refer to the TensorFlow documentation for more details.", + "Please refer to the TensorFlow documentation for more " + "details: https://www.tensorflow.org/lite/guide/ops_custom", "Note, such models are not supported by the ML Inference Advisor.", ] ) -- cgit v1.2.1