aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.cfg4
-rw-r--r--src/mlia/nn/tensorflow/tflite_metrics.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index bae275b..aa513f5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -29,9 +29,9 @@ package_dir =
= src
packages = find_namespace:
install_requires =
- tensorflow~=2.10.1
+ tensorflow~=2.11.1
tensorflow-model-optimization~=0.7.3
- ethos-u-vela~=3.7.0
+ ethos-u-vela~=3.8.0
requests~=2.28.1
rich~=12.6.0
tomli~=2.0.1 ; python_version<"3.11"
diff --git a/src/mlia/nn/tensorflow/tflite_metrics.py b/src/mlia/nn/tensorflow/tflite_metrics.py
index d7ae2a4..4c71dc4 100644
--- a/src/mlia/nn/tensorflow/tflite_metrics.py
+++ b/src/mlia/nn/tensorflow/tflite_metrics.py
@@ -29,6 +29,8 @@ DEFAULT_IGNORE_LIST = [
"flatten",
"StatefulPartitionedCall",
"bias",
+ # Buffer layer from TensorFlow 2.11 (previously unamed)
+ "Conv_hwcn_weights",
]