Developers helping developers. TFX-Addons is a collection of community projects to build new components, examples, libraries, and tools for TFX. The projects are organized under the auspices of the special interest group, SIG TFX-Addons. Join the group at http://goo.gle/tfx-addons-group
pip install tfx-addons[model_card_generator]==0.6.0 will downgrade the TFX and the TF version
pip install --no-dependencies tfx-addons[model_card_generator]==0.6.0 can be used if no 3rd dependencies are needed (doesn't work with the MCT component)
Comments
TensorFlow 2.12 and higher dropped the Python 3.7 support. Should we drop it too with the next major relesase?
Expected Behavior
TFX Addons should allow TFX 1.13 and below as a dependency.
Actual Behavior
TFX Addons is currently limiting TFX dependencies to a max version of 1.10. https://github.com/tensorflow/tfx-addons/blob/main/tfx_addons/version.py#L36
Steps to Reproduce the Problem
tensorflow==2.10.1
tfx==1.11.0
pip install tfx-addons[model_card_generator]==0.6.0
will downgrade the TFX and the TF versionpip install --no-dependencies tfx-addons[model_card_generator]==0.6.0
can be used if no 3rd dependencies are needed (doesn't work with the MCT component)Comments
TensorFlow 2.12 and higher dropped the Python 3.7 support. Should we drop it too with the next major relesase?