Overview
This model is used to identify statistical named entities in large text. Statistical Named Entities are entities that indicate the presence of a statistical claim (such as a hypothesis of an experiment) along with the type of test and the confidence value.
Use this model in your repo to categorize a text document to find claims, test statistics and probability scores. The model uses Flair NLP from ground-up to develop a Stats NER for researchers.
Usage
from flair.models import SequenceTagger
tagger = SequenceTagger.load("VinayNR/stats-ner")
sentence = Sentence(, use_tokenizer=True)
tagger.predict(sentence)
- Downloads last month
- 0
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.