ner-benchmark-test / README.md
Nikhila Begur Sreekanth
Added data, eval.yaml and submissions
e6c04b1

NER Benchmark

Named Entity Recognition benchmark dataset.

Entities

  • PER (Person)
  • ORG (Organization)
  • LOC (Location)
  • MISC (Miscellaneous)

Task

Predict entity labels for each token.

Metrics

  • Precision
  • Recall
  • F1 (entity-level)

Format

{
  "tokens": ["Apple", "is", "great"],
  "ner_tags": ["ORG", "O", "O"]
}