Views
No views yet
bert-base-cased for named entity recognition on financial text, trained on the FiNER-ORD dataset. Recognises persons (PER), locations (LOC), and organisations (ORG) in financial news and filings.| Metric | Score |
|---|---|
| Precision | 0.840 |
| Recall | 0.856 |
| F1 | 0.848 |
| Accuracy | 0.984 |
O, B-PER, I-PER, B-LOC, I-LOC, B-ORG, I-ORG1from transformers import pipeline
2
3ner = pipeline("token-classification", model="rajaadil/finer-ord-ner",
4 aggregation_strategy="simple")
5ner("Goldman Sachs analyst John Smith met clients in London.")