Views
No views yet
"id2label": {
"0": "B-corporation",
"1": "B-creative_work",
"2": "B-event",
"3": "B-group",
"4": "B-location",
"5": "B-person",
"6": "B-product",
"7": "I-corporation",
"8": "I-creative_work",
"9": "I-event",
"10": "I-group",
"11": "I-location",
"12": "I-person",
"13": "I-product",
"14": "O"
}
1from transformers import pipeline
2text = "Halo Infinite analysis - The only true analysis {{USERNAME}} {{USERNAME}} {{USERNAME}} {{USERNAME}} {{USERNAME}} {{URL}}"
3
4model_name = "cardiffnlp/twitter-roberta-base-ner7-latest"
5pipe = pipeline('ner', model=model_name, tokenizer=model_name, aggregation_strategy="simple")
6predictions = pipe(text)
7predictions
8>> [{'entity_group': 'creative_work',
9 'score': 0.5278398,
10 'word': 'Halo Infinite',
11 'start': 0,
12 'end': 13}]1@inproceedings{antypas2023supertweeteval,
2 title={SuperTweetEval: A Challenging, Unified and Heterogeneous Benchmark for Social Media NLP Research},
3 author={Dimosthenis Antypas and Asahi Ushio and Francesco Barbieri and Leonardo Neves and Kiamehr Rezaee and Luis Espinosa-Anke and Jiaxin Pei and Jose Camacho-Collados},
4 booktitle={Findings of the Association for Computational Linguistics: EMNLP 2023},
5 year={2023}
6}