acho0057 commited on
Commit
f981b25
·
1 Parent(s): a4c9d33

edit readme

Browse files
Files changed (1) hide show
  1. README.md +0 -82
README.md CHANGED
@@ -1,82 +0,0 @@
1
- ---
2
- language: english
3
- widget:
4
- - text: "Covid cases are increasing fast!"
5
- ---
6
-
7
-
8
- # Twitter-roBERTa-base for Sentiment Analysis - UPDATED (2021)
9
-
10
- This is a roBERTa-base model trained on ~124M tweets from January 2018 to December 2021 (see [here](https://huggingface.co/cardiffnlp/twitter-roberta-base-2021-124m)), and finetuned for sentiment analysis with the TweetEval benchmark.
11
- The original roBERTa-base model can be found [here](https://huggingface.co/cardiffnlp/twitter-roberta-base-2021-124m) and the original reference paper is [TweetEval](https://github.com/cardiffnlp/tweeteval). This model is suitable for English.
12
-
13
- - Reference Paper: [TimeLMs paper](https://arxiv.org/abs/2202.03829).
14
- - Git Repo: [TimeLMs official repository](https://github.com/cardiffnlp/timelms).
15
-
16
- <b>Labels</b>:
17
- 0 -> Negative;
18
- 1 -> Neutral;
19
- 2 -> Positive
20
-
21
- ## Example Pipeline
22
- ```python
23
- from transformers import pipeline
24
- sentiment_task = pipeline("sentiment-analysis", model=model_path, tokenizer=model_path)
25
- sentiment_task("Covid cases are increasing fast!")
26
- ```
27
- ```
28
- [{'label': 'Negative', 'score': 0.7236}]
29
- ```
30
-
31
- ## Full classification example
32
-
33
- ```python
34
- from transformers import AutoModelForSequenceClassification
35
- from transformers import TFAutoModelForSequenceClassification
36
- from transformers import AutoTokenizer, AutoConfig
37
- import numpy as np
38
- from scipy.special import softmax
39
- # Preprocess text (username and link placeholders)
40
- def preprocess(text):
41
- new_text = []
42
- for t in text.split(" "):
43
- t = '@user' if t.startswith('@') and len(t) > 1 else t
44
- t = 'http' if t.startswith('http') else t
45
- new_text.append(t)
46
- return " ".join(new_text)
47
- MODEL = f"cardiffnlp/twitter-roberta-base-sentiment-latest"
48
- tokenizer = AutoTokenizer.from_pretrained(MODEL)
49
- config = AutoConfig.from_pretrained(MODEL)
50
- # PT
51
- model = AutoModelForSequenceClassification.from_pretrained(MODEL)
52
- #model.save_pretrained(MODEL)
53
- text = "Covid cases are increasing fast!"
54
- text = preprocess(text)
55
- encoded_input = tokenizer(text, return_tensors='pt')
56
- output = model(**encoded_input)
57
- scores = output[0][0].detach().numpy()
58
- scores = softmax(scores)
59
- # # TF
60
- # model = TFAutoModelForSequenceClassification.from_pretrained(MODEL)
61
- # model.save_pretrained(MODEL)
62
- # text = "Covid cases are increasing fast!"
63
- # encoded_input = tokenizer(text, return_tensors='tf')
64
- # output = model(encoded_input)
65
- # scores = output[0][0].numpy()
66
- # scores = softmax(scores)
67
- # Print labels and scores
68
- ranking = np.argsort(scores)
69
- ranking = ranking[::-1]
70
- for i in range(scores.shape[0]):
71
- l = config.id2label[ranking[i]]
72
- s = scores[ranking[i]]
73
- print(f"{i+1}) {l} {np.round(float(s), 4)}")
74
- ```
75
-
76
- Output:
77
-
78
- ```
79
- 1) Negative 0.7236
80
- 2) Neutral 0.2287
81
- 3) Positive 0.0477
82
- ```