Update README.md
Browse files
README.md
CHANGED
@@ -4,11 +4,11 @@ datasets:
|
|
4 |
- banking77
|
5 |
---
|
6 |
|
7 |
-
#
|
8 |
-
This is a fine-tuned version of the [
|
9 |
|
10 |
## Model Description
|
11 |
-
|
12 |
|
13 |
## Intended Uses and Limitations
|
14 |
This model is meant for sentiment-analysis. Because it was trained on a corpus of tweets, it is familiar with social media jargons.
|
@@ -20,7 +20,7 @@ You can use this model directly with a pipeline for text generation:
|
|
20 |
```python
|
21 |
>>>from transformers import pipeline
|
22 |
|
23 |
-
>>> model_name = "Kwaku/
|
24 |
>>> generator = pipeline("sentiment-analysis", model=model_name)
|
25 |
>>> result = generator("I like this model")
|
26 |
>>> print(result)
|
|
|
4 |
- banking77
|
5 |
---
|
6 |
|
7 |
+
# Social Media Sentiment Analysis Model (Finetuned)
|
8 |
+
This is a fine-tuned version of the [Social Media Sentiment Analysis Model](https://huggingface.co/Kwaku/tweets_model_finetuned) which is a finetuned version of [Distilbert](https://huggingface.co/models?other=distilbert). It's best suited for sentiment-analysis.
|
9 |
|
10 |
## Model Description
|
11 |
+
Social Media Sentiment Analysis Model was trained on the [dataset consisting of tweets](https://www.kaggle.com/code/mohamednabill7/sentiment-analysis-of-twitter-data/data) obtained from Kaggle."
|
12 |
|
13 |
## Intended Uses and Limitations
|
14 |
This model is meant for sentiment-analysis. Because it was trained on a corpus of tweets, it is familiar with social media jargons.
|
|
|
20 |
```python
|
21 |
>>>from transformers import pipeline
|
22 |
|
23 |
+
>>> model_name = "Kwaku/social_media_sa_finetuned_1"
|
24 |
>>> generator = pipeline("sentiment-analysis", model=model_name)
|
25 |
>>> result = generator("I like this model")
|
26 |
>>> print(result)
|