Datasets:

Formats:
parquet
Languages:
English
DOI:
Libraries:
Datasets
Dask
License:
ssm-treble commited on
Commit
8ee2289
·
verified ·
1 Parent(s): 8027df2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -96,7 +96,7 @@ speech_ds = load_dataset("openslr/librispeech_asr", "clean", split="test[:1]")
96
  speech = speech_ds[0]["audio"]["array"]
97
 
98
  # 2. Load one Treble10 RIR
99
- rir_ds = load_dataset("treble-technologies/current-Treble10-RIR", split="rir_mono", streaming=True)
100
  rir_rec = next(iter(rir_ds))
101
  rir = rir_rec["audio"]["array"]
102
  rir_sr = rir_rec["audio"]["sampling_rate"]
@@ -131,8 +131,7 @@ from datasets import load_dataset, Audio
131
  from torch.utils.data import DataLoader
132
 
133
  # Load the dataset in streaming mode
134
- # rir_ds = load_dataset("treble-technologies/current-Treble10-RIR", split="rir_mono", streaming=True)
135
- rir_ds = load_dataset("treble-technologies/debug-Treble10-RIR", split="rir_mono", streaming=True)
136
  rir_ds = rir_ds.cast_column("audio", Audio())
137
 
138
 
@@ -164,7 +163,7 @@ import matplotlib.pyplot as plt
164
  import numpy as np
165
 
166
  ds = load_dataset(
167
- "treble-technologies/debug-Treble10-RIR",
168
  split="rir_6ch",
169
  streaming=True,
170
  )
 
96
  speech = speech_ds[0]["audio"]["array"]
97
 
98
  # 2. Load one Treble10 RIR
99
+ rir_ds = load_dataset("treble-technologies/Treble10-RIR", split="rir_mono", streaming=True)
100
  rir_rec = next(iter(rir_ds))
101
  rir = rir_rec["audio"]["array"]
102
  rir_sr = rir_rec["audio"]["sampling_rate"]
 
131
  from torch.utils.data import DataLoader
132
 
133
  # Load the dataset in streaming mode
134
+ rir_ds = load_dataset("treble-technologies/Treble10-RIR", split="rir_mono", streaming=True)
 
135
  rir_ds = rir_ds.cast_column("audio", Audio())
136
 
137
 
 
163
  import numpy as np
164
 
165
  ds = load_dataset(
166
+ "treble-technologies/Treble10-RIR",
167
  split="rir_6ch",
168
  streaming=True,
169
  )