Varnikasiva commited on
Commit
013fb3b
·
verified ·
1 Parent(s): 41cc0a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -3
README.md CHANGED
@@ -1,3 +1,23 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - text-classification
5
+ - pytorch
6
+ ---
7
+
8
+ # My Awesome Model 🚀
9
+
10
+ This model is fine-tuned for sentiment analysis wgiach predicts various human emotions.
11
+
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
17
+
18
+ tokenizer = AutoTokenizer.from_pretrained("Varnikasiva/Spacika")
19
+ model = AutoModelForSequenceClassification.from_pretrained("Varnikasiva/Spacika")
20
+
21
+ inputs = tokenizer("This movie was great!", return_tensors="pt")
22
+ outputs = model(**inputs)
23
+