Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -33,7 +33,7 @@ Here are the available speech data: [CHiME-4](https://entuedu-my.sharepoint.com/
|
|
33 |
[VB-DEMAND](https://datashare.ed.ac.uk/handle/10283/2791), [LS-FreeSound](https://github.com/archiki/Robust-E2E-ASR), [NOIZEUS](https://ecs.utdallas.edu/loizou/speech/noizeus/).
|
34 |
|
35 |
|
36 |
-
**IMPORTANT:** The vast speech feature size mentioned above is because Whisper requires a
|
37 |
- Modified the [whisper model code](https://github.com/openai/whisper/blob/main/whisper/model.py#L167) `x = (x + self.positional_embedding).to(x.dtype)` to be `x = (x + self.positional_embedding[:x.shape[1], :]).to(x.dtype)`
|
38 |
|
39 |
|
|
|
33 |
[VB-DEMAND](https://datashare.ed.ac.uk/handle/10283/2791), [LS-FreeSound](https://github.com/archiki/Robust-E2E-ASR), [NOIZEUS](https://ecs.utdallas.edu/loizou/speech/noizeus/).
|
34 |
|
35 |
|
36 |
+
**IMPORTANT:** The vast speech feature size mentioned above is because Whisper requires a fixed input length of 30s that is too long. Please do the follwing step to remove it before running ***add_speech_feats_to_train_data.py***:
|
37 |
- Modified the [whisper model code](https://github.com/openai/whisper/blob/main/whisper/model.py#L167) `x = (x + self.positional_embedding).to(x.dtype)` to be `x = (x + self.positional_embedding[:x.shape[1], :]).to(x.dtype)`
|
38 |
|
39 |
|