CouchCat commited on
Commit
110fc6a
1 Parent(s): db5d7e2

Add readme

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - sentiment-analysis
6
+ widget:
7
+ - text: "I am very disappointed with the quality"
8
+ ---
9
+
10
+ ### Description
11
+ A Sentiment Analysis model trained on customer feedback data using DistilBert.
12
+ Possible sentiments are:
13
+ * negative
14
+ * neutral
15
+ * positive
16
+
17
+ ### Usage
18
+
19
+ ```
20
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
21
+
22
+ tokenizer = AutoTokenizer.from_pretrained("CouchCat/ma_sa_v7_distil")
23
+
24
+ model = AutoModelForSequenceClassification.from_pretrained("CouchCat/ma_sa_v7_distil")
25
+ ```