Anuj5504 commited on
Commit
f78eade
·
verified ·
1 Parent(s): 3b447dd

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # My Fine-Tuned Model
2
+
3
+ This model is fine-tuned for emotion classification with labels: joy, fear, anger, etc.
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ from transformers import pipeline
9
+
10
+ clf = pipeline("text-classification", model="your-username/your-model-name")
11
+ clf("I'm so happy today!")