jpdiazpardo
commited on
Commit
·
d339892
1
Parent(s):
f2cd160
Update README.md
Browse files
README.md
CHANGED
@@ -13,24 +13,26 @@ model-index:
|
|
13 |
results: []
|
14 |
---
|
15 |
|
16 |
-
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
17 |
-
should probably proofread and complete it, then remove this comment. -->
|
18 |
-
|
19 |
# Whisper Tiny Metal - Juan Pablo Díaz
|
20 |
|
21 |
This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the Gutural Scream & Metal Vocals dataset.
|
22 |
|
23 |
## Model description
|
24 |
-
|
25 |
-
More information needed
|
26 |
|
27 |
## Intended uses & limitations
|
|
|
28 |
|
29 |
-
|
|
|
|
|
30 |
|
31 |
-
|
|
|
|
|
32 |
|
33 |
-
|
|
|
34 |
|
35 |
## Training procedure
|
36 |
|
@@ -48,8 +50,6 @@ The following hyperparameters were used during training:
|
|
48 |
|
49 |
### Training results
|
50 |
|
51 |
-
|
52 |
-
|
53 |
### Framework versions
|
54 |
|
55 |
- Transformers 4.32.0
|
|
|
13 |
results: []
|
14 |
---
|
15 |
|
|
|
|
|
|
|
16 |
# Whisper Tiny Metal - Juan Pablo Díaz
|
17 |
|
18 |
This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the Gutural Scream & Metal Vocals dataset.
|
19 |
|
20 |
## Model description
|
21 |
+
The model is inteded for automatic speech recognition in gutural and scream voice. The model was trained on vocals preprocessed using Spleeter source separtion algorithm.
|
|
|
22 |
|
23 |
## Intended uses & limitations
|
24 |
+
Check out a demo of the model in my 'Spaces' repository: jpdiazpardo/jpdiazpardo-whisper-tiny-metal
|
25 |
|
26 |
+
Load the dataset from huggingface in your notebook:
|
27 |
+
```python
|
28 |
+
from transformers import WhisperForConditionalGeneration, WhisperProcessor
|
29 |
|
30 |
+
model = WhisperForConditionalGeneration.from_pretrained("jpdiazpardo/whisper-tiny-metal")
|
31 |
+
processor = WhisperProcessor.from_pretrained("jpdiazpardo/whisper-tiny-metal")
|
32 |
+
```
|
33 |
|
34 |
+
## Training and evaluation data
|
35 |
+
jpdiazpardo/guturalScream_metalVocals
|
36 |
|
37 |
## Training procedure
|
38 |
|
|
|
50 |
|
51 |
### Training results
|
52 |
|
|
|
|
|
53 |
### Framework versions
|
54 |
|
55 |
- Transformers 4.32.0
|