Create README.md
Browse files
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!")
|