Edit model card

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
6

Dataset used to train VinayNR/stats-nerd