Willy030125 commited on
Commit
9c2474a
·
verified ·
1 Parent(s): d1145df

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
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
+ ```