Commit
•
75d9c92
1
Parent(s):
f0a8663
fix invalid "default" build in examples (#5)
Browse files- fix invalid "default" build in examples (dffb570a116dcda7ce4fa0cd211dbabcdcc8994d)
Co-authored-by: Mahmoud Ashraf <[email protected]>
README.md
CHANGED
@@ -124,7 +124,7 @@ pipe = pipeline(
|
|
124 |
device=device,
|
125 |
)
|
126 |
|
127 |
-
dataset = load_dataset("distil-whisper/librispeech_long", "
|
128 |
sample = dataset[0]["audio"]
|
129 |
|
130 |
result = pipe(sample)
|
|
|
124 |
device=device,
|
125 |
)
|
126 |
|
127 |
+
dataset = load_dataset("distil-whisper/librispeech_long", "clean", split="validation")
|
128 |
sample = dataset[0]["audio"]
|
129 |
|
130 |
result = pipe(sample)
|