Kwaku commited on
Commit
dae1279
1 Parent(s): c01c079

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -8,7 +8,7 @@ datasets:
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 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"
24
  >>> generator = pipeline("sentiment-analysis", model=model_name)
25
  >>> result = generator("I like this model")
26
  >>> print(result)
 
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
  ```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)