ashok2216 commited on
Commit
4dc7b92
·
verified ·
1 Parent(s): 2553064

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -38,9 +38,18 @@ It achieves the following results on the evaluation set:
38
  - Accuracy: 0.9680
39
  - F1: 0.9680
40
 
41
- <!-- ## Model description
42
 
43
  More information needed
 
 
 
 
 
 
 
 
 
44
 
45
  ## Intended uses & limitations
46
 
 
38
  - Accuracy: 0.9680
39
  - F1: 0.9680
40
 
41
+ ## Model description
42
 
43
  More information needed
44
+ Hi! I'd be happy to share some insights about the Amazon Sentiment Analysis model I developed. The model is based on GPT-2, a transformer-based language model, which I fine-tuned using Amazon user reviews from 2023. The purpose of fine-tuning GPT-2 was to adapt it specifically for understanding and generating text related to sentiment analysis in Amazon reviews.
45
+
46
+ During the fine-tuning process, I trained the model to recognize different sentiments (positive, negative, neutral) by leveraging real user feedback. The fine-tuned GPT-2 model can now predict the sentiment of new reviews by generating relevant responses or categorizing them based on the emotions conveyed in the text.
47
+
48
+ You can use my model by using API
49
+
50
+ import transformers
51
+ from transformers import pipeline
52
+ sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
53
 
54
  ## Intended uses & limitations
55