Willy030125 commited on
Commit
d38547f
·
verified ·
1 Parent(s): 2285dee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -28,4 +28,14 @@ Each example is a dictionary with the following fields:
28
  "sampling_rate": 16000
29
  },
30
  "sentence": "Some transcription"
31
- }
 
 
 
 
 
 
 
 
 
 
 
28
  "sampling_rate": 16000
29
  },
30
  "sentence": "Some transcription"
31
+ }
32
+
33
+ ## Load dataset
34
+
35
+ Use HuggingFace datasets to load:
36
+
37
+ ```python
38
+ from datasets import load_dataset, Audio
39
+
40
+ my_dataset = load_dataset("Willy030125/librivox_filtered_id")
41
+ ```