flax icon indicating copy to clipboard operation
flax copied to clipboard

Add CRF module

Open Sun-Xiaohui opened this issue 2 years ago • 1 comments

Conditional Random Field (CRF) is a basic model of natural language processing, which is widely used in word segmentation, named entity recognition, part-of-speech tagging and other tagging scenarios. For example, BiLSTM-CRF model is widely used in NER. Could Flax add CRF module? That will useful! Thanks

Sun-Xiaohui avatar Jan 25 '24 01:01 Sun-Xiaohui

Flax currently tries to keep the framework minimal, adding only essential layers that can serve as building blocks for more complex layers and layers that are very commonly used. For everything else, we encourage users to fork our repo and create their own custom layers.

chiamp avatar Jan 25 '24 03:01 chiamp