Edit model card

HunFlair2 model for PROMOTER

HunFlair (biomedical flair) for enhancer entity:

  • pre-trained language model: michiyasunaga/BioLinkBERT-base
  • fine-tuned on RegEl corpus for Promoter entity type

Predicts 1 tag:

tag meaning
Promoter DNA promoter region

Info

Demo: How to use in Flair

Requires:

  • Flair>=0.14.0 (pip install flair or pip install git+https://github.com/flairNLP/flair.git)
from flair.data import Sentence
from flair.nn import Classifier
from flair.tokenization import SciSpacyTokenizer

text = "The upstream region of the glnA gene contained two putative extended promoter consensus sequences (p1 and p2)."
sentence = Sentence(text, use_tokenizer=SciSpacyTokenizer())

tagger = Classifier.load("regel-corpus/hunflair2-regel-promoter")
tagger.predict(sentence)

print('The following NER tags are found:')
# iterate over entities and print
for entity in sentence.get_spans('ner'):
    print(entity)
Downloads last month
44
Inference API
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.