bert_crf icon indicating copy to clipboard operation
bert_crf copied to clipboard

BERT CRF model for Name Entity Recognition in pytorch

Results 5 bert_crf issues
Sort by recently updated
recently updated
newest added

Bumps [transformers](https://github.com/huggingface/transformers) from 2.3.0 to 4.30.0. Release notes Sourced from transformers's releases. v4.30.0: 100k, Agents improvements, Safetensors core dependency, Swiftformer, Autoformer, MobileViTv2, timm-as-a-backbone 100k Transformers has just reached 100k stars...

dependencies

Hello, I wonder how to use my own dataset, hope you can introduce it more detailed in your README.

When i changed the line 113, 114 in pad function by: maxlen = 501 do_pad = lambda x, seqlen: [sample[x][:maxlen] + [0] * (seqlen - len(sample[x])) for sample in batch]...

Hi I clone your repo on google colab to run it At the beginning I get an error that torchcrf module not found but after I install pytorch-crf (!pip install...

Hi, I wrote the code for BERT token classification from scratch and was looking around how to add the CRF layer on top of the model for NER task. Ran...