Commit
·
13320a3
1
Parent(s):
c8a8967
Update BuilderConfig to clean
Browse filesWhen default is used it throws the following error:
ValueError: BuilderConfig 'default' not found. Available: ['clean']
Changing it to clean fixes the issue
README.md
CHANGED
|
@@ -127,7 +127,7 @@ pipe = pipeline(
|
|
| 127 |
device=device,
|
| 128 |
)
|
| 129 |
|
| 130 |
-
dataset = load_dataset("distil-whisper/librispeech_long", "
|
| 131 |
sample = dataset[0]["audio"]
|
| 132 |
|
| 133 |
result = pipe(sample)
|
|
|
|
| 127 |
device=device,
|
| 128 |
)
|
| 129 |
|
| 130 |
+
dataset = load_dataset("distil-whisper/librispeech_long", "clean", split="validation")
|
| 131 |
sample = dataset[0]["audio"]
|
| 132 |
|
| 133 |
result = pipe(sample)
|