aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/devices/cortexa/advice_generation.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/devices/cortexa/advice_generation.py')
-rw-r--r--src/mlia/devices/cortexa/advice_generation.py8
1 files changed, 5 insertions, 3 deletions
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.",
]
)