古风汉服美女图集

cardiffnlp/twitter-roberta-base-sentiment

2023-12-27 11:27 0 微浪网
导语: Twitter-roBERTa-base for Se...,

cardiffnlp/twitter-roberta-base-sentiment


Twitter-roBERTa-base for Sentiment Analysis

This is a roBERTa-base model trained on ~58M tweets and finetuned for sentiment analysis with the TweetEval benchmark. This model is suitable for English (for a similar multilingual model, see XLM-T).

  • Reference Paper: TweetEval (Findings of EMNLP 2020).
  • Git Repo: Tweeteval official repository.

Labels:
0 -> Negative;
1 -> Neutral;
2 -> Positive
New! We just released a new sentiment analysis model trained on more recent and a larger quantity of tweets.
See twitter-roberta-base-sentiment-latest and TweetNLP for more details.


Example of classification

from transformers import AutoModelForSequenceClassification<br /> from transformers import TFAutoModelForSequenceClassification<br /> from transformers import AutoTokenizer<br /> import numpy as np<br /> from scipy.special import softmax<br /> import csv<br /> import urllib.request<br /> # Preprocess text (username and link placeholders)<br /> def preprocess(text):<br /> new_text = []<br /> for t in text.split(" "):<br /> t = '@user' if t.startswith('@') and len(t) > 1 else t<br /> t = 'http' if t.startswith('http') else t<br /> new_text.append(t)<br /> return " ".join(new_text)<br /> # Tasks:<br /> # emoji, emotion, hate, irony, offensive, sentiment<br /> # stance/abortion, stance/atheism, stance/climate, stance/feminist, stance/hillary<br /> task='sentiment'<br /> MODEL = f"cardiffnlp/twitter-roberta-base-{task}"<br /> tokenizer = AutoTokenizer.from_pretrained(MODEL)<br /> # download label mapping<br /> labels=[]<br /> mapping_link = f"https://raw.githubusercontent.com/cardiffnlp/tweeteval/main/datasets/{task}/mapping.txt"<br /> with urllib.request.urlopen(mapping_link) as f:<br /> html = f.read().decode('utf-8').split("\n")<br /> csvreader = csv.reader(html, delimiter='\t')<br /> labels = [row[1] for row in csvreader if len(row) > 1]<br /> # PT<br /> model = AutoModelForSequenceClassification.from_pretrained(MODEL)<br /> model.save_pretrained(MODEL)<br /> text = "Good night "<br /> text = preprocess(text)<br /> encoded_input = tokenizer(text, return_tensors='pt')<br /> output = model(**encoded_input)<br /> scores = output[0][0].detach().numpy()<br /> scores = softmax(scores)<br /> # # TF<br /> # model = TFAutoModelForSequenceClassification.from_pretrained(MODEL)<br /> # model.save_pretrained(MODEL)<br /> # text = "Good night "<br /> # encoded_input = tokenizer(text, return_tensors='tf')<br /> # output = model(encoded_input)<br /> # scores = output[0][0].numpy()<br /> # scores = softmax(scores)<br /> ranking = np.argsort(scores)<br /> ranking = ranking[::-1]<br /> for i in range(scores.shape[0]):<br /> l = labels[ranking[i]]<br /> s = scores[ranking[i]]<br /> print(f"{i+1}) {l} {np.round(float(s), 4)}")<br />

Output:
1) positive 0.8466<br /> 2) neutral 0.1458<br /> 3) negative 0.0076<br />


BibTeX entry and citation info

Please cite the reference paper if you use this model.
@inproceedings{barbieri-etal-2020-tweeteval,<br /> title = "{T}weet{E}val: Unified Benchmark and Comparative Evaluation for Tweet Classification",<br /> author = "Barbieri, Francesco and<br /> Camacho-Collados, Jose and<br /> Espinosa Anke, Luis and<br /> Neves, Leonardo",<br /> booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2020",<br /> month = nov,<br /> year = "2020",<br /> address = "Online",<br /> publisher = "Association for Computational Linguistics",<br /> url = "https://aclanthology.org/2020.findings-emnlp.148",<br /> doi = "10.18653/v1/2020.findings-emnlp.148",<br /> pages = "1644--1650"<br /> }<br />


收录说明:
1、本网页并非 cardiffnlp/twitter-roberta-base-sentiment 官网网址页面,此页面内容编录于互联网,只作展示之用;2、如果有与 cardiffnlp/twitter-roberta-base-sentiment 相关业务事宜,请访问其网站并获取联系方式;3、本站与 cardiffnlp/twitter-roberta-base-sentiment 无任何关系,对于 cardiffnlp/twitter-roberta-base-sentiment 网站中的信息,请用户谨慎辨识其真伪。4、本站收录 cardiffnlp/twitter-roberta-base-sentiment 时,此站内容访问正常,如遇跳转非法网站,有可能此网站被非法入侵或者已更换新网址,导致旧网址被非法使用,5、如果你是网站站长或者负责人,不想被收录请邮件删除:i-hu#Foxmail.com (#换@)

前往AI网址导航
1、本文来自 AIGC网址导航 投稿的内容 cardiffnlp/twitter-roberta-base-sentiment ,所有言论和图片纯属作者个人意见,版权归原作者所有;不代表 本站 立场;
2、本站所有文章、图片、资源等如果未标明原创,均为收集自互联网公开资源;分享的图片、资源、视频等,出镜模特均为成年女性正常写真内容,版权归原作者所有,仅作为个人学习、研究以及欣赏!如有涉及下载请24小时内删除;
3、如果您发现本站上有侵犯您的权益的作品,请与我们取得联系,我们会及时修改、删除并致以最深的歉意。邮箱: i-hu#(#换@)foxmail.com

2023-12-27

2023-12-27

古风汉服美女图集
扫一扫二维码分享