Kwaku commited on
Commit
739a675
1 Parent(s): dae1279

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -4,11 +4,11 @@ datasets:
4
  - banking77
5
  ---
6
 
7
- # tweets_model
8
- This is a fine-tuned version of the [tweets_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
- tweets_model_finetuned 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,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/tweets_model_finetuned"
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)