Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
tags:
|
| 5 |
+
- audio-classification
|
| 6 |
+
- emotion-recognition
|
| 7 |
+
- hubert
|
| 8 |
+
- speech
|
| 9 |
+
library_name: transformers
|
| 10 |
+
pipeline_tag: audio-classification
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# HuBERT Emotion Recognition Model
|
| 14 |
+
|
| 15 |
+
Fine-tuned HuBERT model for emotion recognition in speech audio.
|
| 16 |
+
|
| 17 |
+
## Model Description
|
| 18 |
+
|
| 19 |
+
This model classifies speech audio into 5 emotion categories:
|
| 20 |
+
|
| 21 |
+
1. **Angry/Fearful** - Expressions of anger or fear
|
| 22 |
+
2. **Happy/Laugh** - Joyful or laughing expressions
|
| 23 |
+
3. **Neutral/Calm** - Neutral or calm speech
|
| 24 |
+
4. **Sad/Cry** - Expressions of sadness or crying
|
| 25 |
+
5. **Surprised/Amazed** - Surprised or amazed reactions
|
| 26 |
+
|
| 27 |
+
## Quick Start
|
| 28 |
+
|
| 29 |
+
```python
|
| 30 |
+
from transformers import pipeline
|
| 31 |
+
|
| 32 |
+
# Load the model
|
| 33 |
+
classifier = pipeline("audio-classification", model="YOUR_USERNAME/hubert-emotion-recognition")
|
| 34 |
+
|
| 35 |
+
# Predict emotion
|
| 36 |
+
result = classifier("audio.wav")
|
| 37 |
+
print(result)
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Detailed Usage
|
| 41 |
+
|
| 42 |
+
```python
|
| 43 |
+
from transformers import AutoModelForAudioClassification, Wav2Vec2FeatureExtractor
|
| 44 |
+
import torch
|
| 45 |
+
import librosa
|
| 46 |
+
|
| 47 |
+
# Load model and processor
|
| 48 |
+
model = AutoModelForAudioClassification.from_pretrained("YOUR_USERNAME/hubert-emotion-recognition")
|
| 49 |
+
processor = Wav2Vec2FeatureExtractor.from_pretrained("YOUR_USERNAME/hubert-emotion-recognition")
|
| 50 |
+
|
| 51 |
+
# Load audio (16kHz)
|
| 52 |
+
audio, sr = librosa.load("audio.wav", sr=16000)
|
| 53 |
+
|
| 54 |
+
# Prepare inputs
|
| 55 |
+
inputs = processor(audio, sampling_rate=16000, return_tensors="pt")
|
| 56 |
+
|
| 57 |
+
# Get predictions
|
| 58 |
+
with torch.no_grad():
|
| 59 |
+
outputs = model(**inputs)
|
| 60 |
+
probs = torch.softmax(outputs.logits, dim=1)[0]
|
| 61 |
+
pred_id = torch.argmax(probs).item()
|
| 62 |
+
|
| 63 |
+
# Show results
|
| 64 |
+
emotions = ["Angry/Fearful", "Happy/Laugh", "Neutral/Calm", "Sad/Cry", "Surprised/Amazed"]
|
| 65 |
+
print(f"Emotion: {emotions[pred_id]}")
|
| 66 |
+
print(f"Confidence: {probs[pred_id]:.3f}")
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Model Details
|
| 70 |
+
|
| 71 |
+
- **Base Model**: HuBERT
|
| 72 |
+
- **Task**: Audio Classification
|
| 73 |
+
- **Sample Rate**: 16kHz
|
| 74 |
+
- **Max Duration**: 3 seconds
|
| 75 |
+
- **Framework**: PyTorch + Transformers
|
| 76 |
+
|
| 77 |
+
## Training Data
|
| 78 |
+
|
| 79 |
+
[Describe your training dataset here - name, size, speakers, etc.]
|
| 80 |
+
|
| 81 |
+
## Performance
|
| 82 |
+
|
| 83 |
+
[Add your evaluation metrics here]
|
| 84 |
+
|
| 85 |
+
Example:
|
| 86 |
+
- Accuracy: 87.3%
|
| 87 |
+
- F1 Score: 85.1%
|
| 88 |
+
|
| 89 |
+
## Limitations
|
| 90 |
+
|
| 91 |
+
- Optimized for English speech
|
| 92 |
+
- Works best with clear audio (3 seconds)
|
| 93 |
+
- Performance may vary with background noise
|
| 94 |
+
- Emotion expression varies across cultures
|
| 95 |
+
|
| 96 |
+
## Intended Uses
|
| 97 |
+
|
| 98 |
+
✅ Call center analytics
|
| 99 |
+
✅ Mental health monitoring
|
| 100 |
+
✅ Voice assistants
|
| 101 |
+
✅ Media analysis
|
| 102 |
+
✅ Research in affective computing
|
| 103 |
+
|
| 104 |
+
## License
|
| 105 |
+
|
| 106 |
+
Apache 2.0
|
| 107 |
+
|
| 108 |
+
## Citation
|
| 109 |
+
|
| 110 |
+
```bibtex
|
| 111 |
+
@misc{hubert_emotion_2024,
|
| 112 |
+
author = {YOUR_NAME},
|
| 113 |
+
title = {HuBERT Emotion Recognition},
|
| 114 |
+
year = {2024},
|
| 115 |
+
publisher = {Hugging Face},
|
| 116 |
+
url = {https://huggingface.co/YOUR_USERNAME/hubert-emotion-recognition}
|
| 117 |
+
}
|
| 118 |
+
```
|