Gatozu35 commited on
Commit
7a562d5
·
verified ·
1 Parent(s): 42d4482

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -5,4 +5,16 @@ pretty_name: DNSMOS Score for common TTS datasets
5
 
6
  # DNSMOS-TTS
7
 
8
- DNSMOS-TTS contains DNSMOS Scores for common TTS datasets
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  # DNSMOS-TTS
7
 
8
+ DNSMOS-TTS contains DNSMOS Scores for common TTS datasets
9
+
10
+ This repo uses Lhotse to manage datasets.
11
+
12
+ For example, to load LJ-Speech:
13
+ ```py
14
+ from lhotse import CutSet
15
+
16
+ for cut in CutSet.from_webdataset("pipe:curl -s -L https://huggingface.co/datasets/Gatozu35/DNSMOS-TTS/resolve/main/ljspeech_mos.tar"):
17
+ wav = cut.load_audio()
18
+ mos = cut.supervisions[0].custom["mos"]
19
+ ...
20
+ ```