code-rider commited on
Commit
13320a3
1 Parent(s): c8a8967

Update BuilderConfig to clean

Browse files

When default is used it throws the following error:
ValueError: BuilderConfig 'default' not found. Available: ['clean']

Changing it to clean fixes the issue

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -127,7 +127,7 @@ pipe = pipeline(
127
  device=device,
128
  )
129
 
130
- dataset = load_dataset("distil-whisper/librispeech_long", "default", split="validation")
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)