Tudorx95/NER_Economic_Political
Token Classification • Updated
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Custom NER dataset for politico-economic entity recognition, built using:
POLITICIAN, POLITICAL_PARTY, POLITICAL_ORG, FINANCIAL_ORG,
ECONOMIC_INDICATOR, POLICY, LEGISLATION, MARKET_EVENT,
CURRENCY, TRADE_AGREEMENT, GPE
splits/train.jsonl — training setsplits/dev.jsonl — validation setsplits/test.jsonl — test set (includes CoNLL-2003 test as gold standard)Each line is a JSON object:
{
"text": "The Federal Reserve raised rates.",
"entities": [
{"text": "Federal Reserve", "label": "FINANCIAL_ORG", "start": 4, "end": 19}
],
"source": "weak_supervision_cc_news"
}
Inspired by Lison et al. (2020), "Named Entity Recognition without Labelled Data: A Weak Supervision Approach" (ACL 2020).