Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc
|
3 |
+
---
|
4 |
+
# Whisper-base-minds14
|
5 |
+
Dataset source: https://huggingface.co/datasets/PolyAI/minds14 <br>
|
6 |
+
Model used for Fine Tuning: https://huggingface.co/openai/whisper-base <br>
|
7 |
+
Trained on Colab T4 @ 2 epoch (910 steps) <br>
|
8 |
+
|
9 |
+
Usage:
|
10 |
+
```python
|
11 |
+
from transformers import WhisperProcessor, WhisperForConditionalGeneration
|
12 |
+
processor = WhisperProcessor.from_pretrained("Willy030125/Whisper-base-minds14")
|
13 |
+
model = WhisperForConditionalGeneration.from_pretrained("Willy030125/Whisper-base-minds14")
|
14 |
+
```
|