Willy030125 commited on
Commit
bd27114
·
verified ·
1 Parent(s): 00a6018

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -44,5 +44,8 @@ Use HuggingFace datasets to load:
44
  ```python
45
  from datasets import load_dataset, Audio
46
 
47
- dataset = load_dataset("Willy030125/librivox_filtered_id")
 
 
 
48
  ```
 
44
  ```python
45
  from datasets import load_dataset, Audio
46
 
47
+ try:
48
+ dataset = load_dataset("Willy030125/librivox_filtered_id", trust_remote_code=True, encoding="utf-8", errors="ignore")
49
+ except:
50
+ dataset = load_dataset("Willy030125/librivox_filtered_id", trust_remote_code=True)
51
  ```