A model requires tensorflow addons but after I install tf using:
pip3 install --no-cache https://developer.download.nvidia.com/compute/redist/jp/v60/tensorflow/tensorflow-2.15.0+nv24.05-cp310-cp310-linux_aarch64.whl
I verify the installation with:
python3 -c “import tensorflow as tf; print(tf.config.list_physical_devices(‘GPU’))”
…
Your kernel may have been built without NUMA support.
[PhysicalDevice(name=‘/physical_device:GPU:0’, device_type=‘GPU’)]
and then try to install tensorflow addons by:
pip install tensorflow-addons
ERROR: Could not find a version that satisfies the requirement tensorflow-addons (from versions: none)
ERROR: No matching distribution found for tensorflow-addons
Is there any way to install tfa on Jetpack 6.0?
Thanks