Initial release: Fine-tuned Whisper for engine sounds
Browse files
README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- audio-classification
|
| 5 |
+
- whisper
|
| 6 |
+
datasets:
|
| 7 |
+
- yasinarafatbd/Qwen_Audio_Dataset
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Whisper Small Engine Sound Classifier
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
```python
|
| 14 |
+
from transformers import pipeline
|
| 15 |
+
|
| 16 |
+
classifier = pipeline(
|
| 17 |
+
"audio-classification",
|
| 18 |
+
"yasinarafatbd/Whisper_Small_Engine_Sound"
|
| 19 |
+
)
|