You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, Keras-hub lacks a pure Keras 3 implementation of a CRF layer. This forces users to rely on external libraries like TensorFlow Addons, which can introduce dependency and compatibility issues as TFA is already deprecated.
Describe the solution you'd like
I'd like to implement a native CRF layer in Keras-hub that:
Computes CRF log-likelihood loss during training.
Applies Viterbi decoding during inference.
Integrates seamlessly with Keras 3’s API.
Include clear documentation and usage examples.
Describe alternatives you've considered
Using TensorFlow Addons for CRF functionality was considered, but it adds deprecated dependencies that might cause conflicts.
Is your feature request related to a problem? Please describe.
Currently, Keras-hub lacks a pure Keras 3 implementation of a CRF layer. This forces users to rely on external libraries like TensorFlow Addons, which can introduce dependency and compatibility issues as TFA is already deprecated.
Describe the solution you'd like
I'd like to implement a native CRF layer in Keras-hub that:
Include clear documentation and usage examples.
Describe alternatives you've considered
Using TensorFlow Addons for CRF functionality was considered, but it adds deprecated dependencies that might cause conflicts.
Additional context
https://www.tensorflow.org/addons/api_docs/python/tfa/layers/CRF
The text was updated successfully, but these errors were encountered: