from nn_tools.network_views import predict_and_report_from_image
# Get a test image
(test_image, test_label) = get_random_image(images_list, labels)
# And test the trained MLP against it
predict_and_report_from_image(MLP, test_image, test_label)
gives error:
ImportError: /lib/aarch64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/python3.8/site-packages/tflite_runtime/_pywrap_tensorflow_interpreter_wrapper.cpython-38-aarch64-linux-gnu.so)
Version installed via ldd --version shows 2.28.
It looks like this is the latest version for Linux buster which is presumably used for the base Python container in OpenComputingLab/base-python38.
Missinga package for NN activities?
gives error:
Version installed via
ldd --version
shows 2.28.It looks like this is the latest version for Linux buster which is presumably used for the base Python container in OpenComputingLab/base-python38.