-
Notifications
You must be signed in to change notification settings - Fork 482
Expand file tree
/
Copy pathdataset.py
More file actions
988 lines (793 loc) · 37.8 KB
/
Copy pathdataset.py
File metadata and controls
988 lines (793 loc) · 37.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
import importlib
import numpy as np
import io
import json
import os
import posixpath
import random
import time
import torch
import torchaudio
import webdataset as wds
from os import path
from torch import nn
from torchaudio import transforms as T
from typing import Optional, Callable, List
from .utils import Stereo, Mono, PhaseFlipper, PadCrop_Normalized_T, VolumeNorm
AUDIO_KEYS = ("flac", "wav", "mp3", "m4a", "ogg", "opus")
# fast_scandir implementation by Scott Hawley originally in https://github.com/zqevans/audio-diffusion/blob/main/dataset/dataset.py
def fast_scandir(
dir:str, # top-level directory at which to begin scanning
ext:list, # list of allowed file extensions,
#max_size = 1 * 1000 * 1000 * 1000 # Only files < 1 GB
):
"very fast `glob` alternative. from https://stackoverflow.com/a/59803793/4259243"
subfolders, files = [], []
ext = ['.'+x if x[0]!='.' else x for x in ext] # add starting period to extensions if needed
try: # hope to avoid 'permission denied' by this try
for f in os.scandir(dir):
try: # 'hope to avoid too many levels of symbolic links' error
if f.is_dir():
subfolders.append(f.path)
elif f.is_file():
file_ext = os.path.splitext(f.name)[1].lower()
is_hidden = os.path.basename(f.path).startswith(".")
if file_ext in ext and not is_hidden:
files.append(f.path)
except:
pass
except:
pass
for dir in list(subfolders):
sf, f = fast_scandir(dir, ext)
subfolders.extend(sf)
files.extend(f)
return subfolders, files
def keyword_scandir(
dir: str, # top-level directory at which to begin scanning
ext: list, # list of allowed file extensions
keywords: list, # list of keywords to search for in the file name
):
"very fast `glob` alternative. from https://stackoverflow.com/a/59803793/4259243"
subfolders, files = [], []
# make keywords case insensitive
keywords = [keyword.lower() for keyword in keywords]
# add starting period to extensions if needed
ext = ['.'+x if x[0] != '.' else x for x in ext]
banned_words = ["paxheader", "__macosx"]
try: # hope to avoid 'permission denied' by this try
for f in os.scandir(dir):
try: # 'hope to avoid too many levels of symbolic links' error
if f.is_dir():
subfolders.append(f.path)
elif f.is_file():
is_hidden = f.name.split("/")[-1][0] == '.'
has_ext = os.path.splitext(f.name)[1].lower() in ext
name_lower = f.name.lower()
has_keyword = any(
[keyword in name_lower for keyword in keywords])
has_banned = any(
[banned_word in name_lower for banned_word in banned_words])
if has_ext and has_keyword and not has_banned and not is_hidden and not os.path.basename(f.path).startswith("._"):
files.append(f.path)
except:
pass
except:
pass
for dir in list(subfolders):
sf, f = keyword_scandir(dir, ext, keywords)
subfolders.extend(sf)
files.extend(f)
return subfolders, files
def get_audio_filenames(
paths: list, # directories in which to search
keywords=None,
exts=['.wav', '.mp3', '.flac', '.ogg', '.aif', '.opus']
):
"recursively get a list of audio filenames"
filenames = []
if type(paths) is str:
paths = [paths]
for path in paths: # get a list of relevant filenames
if keywords is not None:
subfolders, files = keyword_scandir(path, exts, keywords)
else:
subfolders, files = fast_scandir(path, exts)
filenames.extend(files)
return filenames
def get_latent_filenames(
paths: list, # directories in which to search
extensions=['npy']
):
"recursively get a list of pre-encoded filenames"
filenames = []
if type(paths) is str:
paths = [paths]
for path in paths: # get a list of relevant filenames
# Check for filelist.txt at the root of the directory
filelist_path = path + "/filelist.txt"
if os.path.exists(filelist_path):
with open(filelist_path, "r") as f:
files = f.readlines()
files = [os.path.join(path, file.strip()) for file in files]
filenames.extend(files)
continue
_, files = fast_scandir(path, extensions)
filenames.extend(files)
return filenames
class LocalDatasetConfig:
def __init__(
self,
id: str,
path: str,
custom_metadata_fn: Optional[Callable[[str], str]] = None
):
self.id = id
self.path = path
self.custom_metadata_fn = custom_metadata_fn
class SampleDataset(torch.utils.data.Dataset):
def __init__(
self,
configs,
sample_size=65536,
sample_rate=48000,
keywords=None,
random_crop=True,
force_channels="stereo"
):
super().__init__()
self.filenames = []
self.augs = torch.nn.Sequential(
PhaseFlipper()
)
self.root_paths = []
self.pad_crop = PadCrop_Normalized_T(sample_size, sample_rate, randomize=random_crop)
self.force_channels = force_channels
self.encoding = torch.nn.Sequential(
Stereo() if self.force_channels == "stereo" else torch.nn.Identity(),
Mono() if self.force_channels == "mono" else torch.nn.Identity(),
)
self.sr = sample_rate
self.custom_metadata_fns = {}
for config in configs:
self.root_paths.append(config.path)
self.filenames.extend(get_audio_filenames(config.path, keywords))
if config.custom_metadata_fn is not None:
self.custom_metadata_fns[config.path] = config.custom_metadata_fn
print(f'Found {len(self.filenames)} files')
def load_file(self, filename):
ext = filename.split(".")[-1]
audio, in_sr = torchaudio.load(filename, format=ext)
if in_sr != self.sr:
resample_tf = T.Resample(in_sr, self.sr)
audio = resample_tf(audio)
return audio
def __len__(self):
return len(self.filenames)
def __getitem__(self, idx):
audio_filename = self.filenames[idx]
try:
start_time = time.time()
audio = self.load_file(audio_filename)
audio, t_start, t_end, seconds_start, seconds_total, padding_mask = self.pad_crop(audio)
# Check for silence
if is_silence(audio):
return self[random.randrange(len(self))]
# Run augmentations on this sample (including random crop)
if self.augs is not None:
audio = self.augs(audio)
audio = audio.clamp(-1, 1)
# Encode the file to assist in prediction
if self.encoding is not None:
audio = self.encoding(audio)
info = {}
info["path"] = audio_filename
for root_path in self.root_paths:
if root_path in audio_filename:
info["relpath"] = path.relpath(audio_filename, root_path)
info["timestamps"] = (t_start, t_end)
info["seconds_start"] = seconds_start
info["seconds_total"] = seconds_total
info["padding_mask"] = padding_mask
info["sample_rate"] = self.sr
end_time = time.time()
info["load_time"] = end_time - start_time
for custom_md_path in self.custom_metadata_fns.keys():
if custom_md_path in audio_filename:
custom_metadata_fn = self.custom_metadata_fns[custom_md_path]
custom_metadata = custom_metadata_fn(info, audio)
info.update(custom_metadata)
if "__reject__" in info and info["__reject__"]:
return self[random.randrange(len(self))]
# Provide audio inputs as their own dictionary to be merged into info, each audio element will be normalized in the same way as the main audio
if "__audio__" in info:
for audio_key, audio_value in info["__audio__"].items():
# Process the audio_value tensor, which should be a torch tensor
audio_value, _, _, _, _, _ = self.pad_crop(audio_value)
audio_value = audio_value.clamp(-1, 1)
if self.encoding is not None:
audio_value = self.encoding(audio_value)
info[audio_key] = audio_value
del info["__audio__"]
return (audio, info)
except Exception as e:
print(f'Couldn\'t load file {audio_filename}: {e}')
return self[random.randrange(len(self))]
class PreEncodedDataset(torch.utils.data.Dataset):
def __init__(
self,
configs: List[LocalDatasetConfig],
latent_crop_length=None,
min_length_sec=None,
max_length_sec=None,
random_crop=False,
latent_extension='npy'
):
super().__init__()
self.filenames = []
self.custom_metadata_fns = {}
self.latent_extension = latent_extension
for config in configs:
self.filenames.extend(get_latent_filenames(config.path, [latent_extension]))
if config.custom_metadata_fn is not None:
self.custom_metadata_fns[config.path] = config.custom_metadata_fn
self.latent_crop_length = latent_crop_length
self.random_crop = random_crop
self.min_length_sec = min_length_sec
self.max_length_sec = max_length_sec
print(f'Found {len(self.filenames)} files')
def __len__(self):
return len(self.filenames)
def __getitem__(self, idx):
latent_filename = self.filenames[idx]
try:
latents = torch.from_numpy(np.load(latent_filename)) # [C, N]
md_filename = latent_filename.replace(f".{self.latent_extension}", ".json")
with open(md_filename, "r") as f:
try:
info = json.load(f)
except:
raise Exception(f"Couldn't load metadata file {md_filename}")
info["latent_filename"] = latent_filename
if self.latent_crop_length is not None:
# Get the last index from the padding mask, the index of the last 1 in the sequence
last_ix = len(info["padding_mask"]) - 1 - info["padding_mask"][::-1].index(1)
if self.random_crop and last_ix > self.latent_crop_length:
start = random.randint(0, last_ix - self.latent_crop_length)
else:
start = 0
latents = latents[:, start:start+self.latent_crop_length]
info["padding_mask"] = info["padding_mask"][start:start+self.latent_crop_length]
info["latent_crop_length"] = self.latent_crop_length
info["latent_crop_start"] = start
info["padding_mask"] = [torch.tensor(info["padding_mask"])]
seconds_total = info["seconds_total"]
if self.min_length_sec is not None and seconds_total < self.min_length_sec:
return self[random.randrange(len(self))]
if self.max_length_sec is not None and seconds_total > self.max_length_sec:
return self[random.randrange(len(self))]
for custom_md_path in self.custom_metadata_fns.keys():
if custom_md_path in latent_filename:
custom_metadata_fn = self.custom_metadata_fns[custom_md_path]
custom_metadata = custom_metadata_fn(info, None)
info.update(custom_metadata)
if "__reject__" in info and info["__reject__"]:
return self[random.randrange(len(self))]
if "__replace__" in info and info["__replace__"] is not None:
# Replace the latents with the new latents if the custom metadata function returns a new set of latents
latents = info["__replace__"]
info["audio"] = latents
return (latents, info)
except Exception as e:
print(f'Couldn\'t load file {latent_filename}: {e}')
return self[random.randrange(len(self))]
# S3 code and WDS preprocessing code based on implementation by Scott Hawley originally in https://github.com/zqevans/audio-diffusion/blob/main/dataset/dataset.py
def _get_s3_client(profile=None):
"""
Build a boto3 S3 client. Honors AWS_ENDPOINT_URL when set so the same
code path works against any S3-compatible endpoint (AWS S3 by default;
set AWS_ENDPOINT_URL to a Backblaze B2 endpoint to point it at B2).
When the env var is unset, behavior matches the default AWS client.
"""
import boto3 # local import so boto3 is only required when S3 is used
endpoint_url = os.environ.get("AWS_ENDPOINT_URL") or None
session = boto3.Session(profile_name=profile) if profile else boto3.Session()
return session.client("s3", endpoint_url=endpoint_url)
def get_s3_contents(dataset_path, s3_url_prefix=None, filter='', recursive=True, debug=False, profile=None):
"""
Returns a list of S3 keys (relative to ``dataset_path``) for objects in a
given S3 bucket and directory path. Uses boto3 directly so it works
against any S3-compatible endpoint when ``AWS_ENDPOINT_URL`` is set.
"""
# Ensure dataset_path ends with a trailing slash
if dataset_path != '' and not dataset_path.endswith('/'):
dataset_path += '/'
# Use posixpath to construct the S3 URL path (e.g. "s3://bucket/prefix/")
bucket_path = posixpath.join(s3_url_prefix or '', dataset_path)
# Parse "s3://bucket/prefix/..." into bucket + prefix.
if not bucket_path.startswith("s3://"):
raise ValueError(
f"get_s3_contents expected an s3:// URL, got: {bucket_path!r}"
)
without_scheme = bucket_path[len("s3://"):]
bucket, _, prefix = without_scheme.partition("/")
s3 = _get_s3_client(profile=profile)
paginator = s3.get_paginator("list_objects_v2")
list_kwargs = {"Bucket": bucket, "Prefix": prefix}
if not recursive:
list_kwargs["Delimiter"] = "/"
keys = []
for page in paginator.paginate(**list_kwargs):
for obj in page.get("Contents", []) or []:
key = obj.get("Key", "")
if not key or key.endswith("/"):
continue
keys.append(key)
# Apply the filter, if specified
if filter:
keys = [k for k in keys if filter in k]
# Match the legacy `aws s3 ls` output shape: paths relative to dataset_path.
# The legacy CLI emitted basenames in non-recursive mode and full keys
# (which it then stripped) in recursive mode; both paths ended up
# relative to dataset_path. boto3 always returns full keys, so strip
# the prefix unconditionally.
if prefix:
keys = [k[len(prefix):] if k.startswith(prefix) else k for k in keys]
keys = [k.lstrip('/') for k in keys]
if debug:
print("contents = \n", keys)
return keys
def get_all_s3_urls(
names=[], # list of all valid [LAION AudioDataset] dataset names
# list of subsets you want from those datasets, e.g. ['train','valid']
subsets=[''],
s3_url_prefix=None, # prefix for those dataset names
recursive=True, # recursively list all tar files in all subdirs
filter_str='tar', # only grab files with this substring
# print debugging info -- note: info displayed likely to change at dev's whims
debug=False,
profiles={}, # dictionary of profiles for each item in names, e.g. {'dataset1': 'profile1', 'dataset2': 'profile2'}
):
"get urls of shards (tar files) for multiple datasets in one s3 bucket"
urls = []
for name in names:
# If s3_url_prefix is not specified, assume the full S3 path is included in each element of the names list
if s3_url_prefix is None:
contents_str = name
else:
# Construct the S3 path using the s3_url_prefix and the current name value
contents_str = posixpath.join(s3_url_prefix, name)
if debug:
print(f"get_all_s3_urls: {contents_str}:")
for subset in subsets:
subset_str = posixpath.join(contents_str, subset)
if debug:
print(f"subset_str = {subset_str}")
# Get the list of tar files in the current subset directory
profile = profiles.get(name, None)
tar_list = get_s3_contents(
subset_str, s3_url_prefix=None, recursive=recursive, filter=filter_str, debug=debug, profile=profile)
# Build a boto3 client once per (name, subset) for presigning.
s3_client = _get_s3_client(profile=profile)
for tar in tar_list:
# Construct the full s3:// URL for the current tar file.
if s3_url_prefix is None:
full_s3_url = posixpath.join(name, subset, tar)
else:
full_s3_url = posixpath.join(s3_url_prefix, name, subset, tar)
if not full_s3_url.startswith("s3://"):
raise ValueError(
f"get_all_s3_urls expected an s3:// URL, got: {full_s3_url!r}"
)
without_scheme = full_s3_url[len("s3://"):]
bucket, _, key = without_scheme.partition("/")
# Short-lived (1h) presigned GET URL works against AWS and any
# S3-compatible endpoint when AWS_ENDPOINT_URL is set.
presigned = s3_client.generate_presigned_url(
"get_object",
Params={"Bucket": bucket, "Key": key},
ExpiresIn=3600,
)
request_str = f'pipe:curl -fsSL "{presigned}"'
if debug:
print("request_str = ", request_str)
urls.append(request_str)
return urls
def log_and_continue(exn):
"""Call in an exception handler to ignore any exception, isssue a warning, and continue."""
print(f"Handling webdataset error ({repr(exn)}). Ignoring.")
return True
# get_dbmax and is_silence copied from https://github.com/drscotthawley/aeiou/blob/main/aeiou/core.py under Apache 2.0 License
# License can be found in LICENSES/LICENSE_AEIOU.txt
def get_dbmax(
audio, # torch tensor of (multichannel) audio
):
"finds the loudest value in the entire clip and puts that into dB (full scale)"
return 20*torch.log10(torch.flatten(audio.abs()).max()).cpu().numpy()
def is_silence(
audio, # torch tensor of (multichannel) audio
thresh=-60, # threshold in dB below which we declare to be silence
):
"checks if entire clip is 'silence' below some dB threshold"
dBmax = get_dbmax(audio)
return dBmax < thresh
def is_valid_sample(sample):
has_json = "json" in sample
has_audio = "audio" in sample
is_pre_encoded = sample.get("__pre_encoded__", False)
is_silent = (not is_pre_encoded) and is_silence(sample["audio"])
is_rejected = "__reject__" in sample["json"] and sample["json"]["__reject__"]
return has_json and has_audio and not is_silent and not is_rejected
def remove_long_silence(audio, sample_rate, silence_threshold=[0.01, 0.5], max_silence_duration=0.25):
"""
Removes silence longer than max_silence_duration and replaces it with a short silence.
:param audio: torch tensor of shape [1, T]
:param sample_rate: Sampling rate of the audio
:param silence_threshold: List with [silence_energy_threshold, silence_duration_threshold] to consider a segment as silence
:param max_silence_duration: Maximum allowed silence duration in seconds
:return: Processed audio tensor
"""
silence_energy_threshold, silence_duration_threshold = silence_threshold
max_silence_samples = int(max_silence_duration * sample_rate)
tiny_silence_samples = int(silence_duration_threshold * sample_rate)
# Flatten the audio tensor
audio = audio.flatten()
# Detect silent segments
silence_mask = torch.abs(audio) < silence_energy_threshold
silence_mask_diff = torch.diff(silence_mask.int())
# Find indices where silence starts and ends
silence_starts = torch.where(silence_mask_diff == 1)[0] + 1
silence_ends = torch.where(silence_mask_diff == -1)[0] + 1
# Handle the case where the tensor starts or ends with silence
if silence_mask[0]:
silence_starts = torch.cat((torch.tensor([0], device=silence_starts.device), silence_starts))
if silence_mask[-1]:
silence_ends = torch.cat((silence_ends, torch.tensor([len(audio)], device=silence_ends.device)))
processed_audio = []
prev_end = 0
for start, end in zip(silence_starts, silence_ends):
# Add non-silence segment
processed_audio.append(audio[prev_end:start])
silence_segment = audio[start:end]
if len(silence_segment) > max_silence_samples:
# Replace long silence with a random segment of 0-0.5s silence
if len(silence_segment) > tiny_silence_samples:
start_idx = random.randint(0, len(silence_segment) - tiny_silence_samples)
processed_audio.append(silence_segment[start_idx:start_idx + tiny_silence_samples])
else:
processed_audio.append(silence_segment[:tiny_silence_samples])
else:
# Keep the silence segment as is
processed_audio.append(silence_segment)
prev_end = end
# Add the last non-silence segment if there is any
if prev_end < len(audio):
processed_audio.append(audio[prev_end:])
# Concatenate all processed segments back into a single tensor
processed_audio_tensor = torch.cat(processed_audio).unsqueeze(0)
return processed_audio_tensor
def is_silence_audio(audio, silence_threshold=0.01, max_silence_ratio=0.3):
# Calculate the ratio of silent frames in the audio sample
silence_frames = torch.sum(audio.abs() < silence_threshold, dim=1)
total_frames = audio.size(1)
silence_ratio_per_channel = silence_frames / total_frames
if torch.any(silence_ratio_per_channel > max_silence_ratio).item():
# Save the tensor to an audio file
output_path = f'rejected_audios/rejected_{silence_ratio_per_channel.item()}.wav'
torchaudio.save(output_path, audio, 16000)
print(f'Rejected: {silence_ratio_per_channel}')
# Check if any channel exceeds the max silence ratio
return torch.any(silence_ratio_per_channel > max_silence_ratio).item()
class S3DatasetConfig:
def __init__(
self,
id: str,
s3_path: str,
custom_metadata_fn: Optional[Callable[[str], str]] = None,
profile: Optional[str] = None,
):
self.id = id
self.path = s3_path
self.custom_metadata_fn = custom_metadata_fn
self.profile = profile
self.urls = []
def load_data_urls(self):
self.urls = get_all_s3_urls(
names=[self.path],
s3_url_prefix=None,
recursive=True,
profiles={self.path: self.profile} if self.profile else {},
)
return self.urls
class LocalWebDatasetConfig:
def __init__(
self,
id: str,
path: str,
custom_metadata_fn: Optional[Callable[[str], str]] = None,
profile: Optional[str] = None,
):
self.id = id
self.path = path
self.custom_metadata_fn = custom_metadata_fn
self.urls = []
def load_data_urls(self):
self.urls = fast_scandir(self.path, ["tar"])[1]
return self.urls
def audio_decoder(key, value):
# Get file extension from key
ext = key.split(".")[-1]
if ext in AUDIO_KEYS:
return torchaudio.load(io.BytesIO(value))
else:
return None
def npy_decoder(key, value):
# Get file extension from key
ext = key.split(".")[-1]
if ext == "npy":
return np.lib.format.read_array(io.BytesIO(value))
else:
return None
def collation_fn(samples):
batched = list(zip(*samples))
result = []
for b in batched:
if isinstance(b[0], (int, float)):
b = np.array(b)
elif isinstance(b[0], torch.Tensor):
b = torch.stack(b)
elif isinstance(b[0], np.ndarray):
b = np.array(b)
else:
b = b
result.append(b)
return result
class WebDatasetDataLoader():
def __init__(
self,
datasets: List[S3DatasetConfig],
batch_size,
sample_size,
sample_rate=48000,
num_workers=8,
epoch_steps=1000,
random_crop=True,
force_channels="stereo",
augment_phase=True,
remove_silence=True,
silence_threshold=[0.01, 0.5],
max_silence_duration=0.2,
volume_norm=False,
volume_norm_param=(-16, 2),
pre_encoded=False,
latent_crop_length=None,
resampled_shards=True,
**data_loader_kwargs
):
self.datasets = datasets
self.sample_size = sample_size
self.sample_rate = sample_rate
self.random_crop = random_crop
self.force_channels = force_channels
self.augment_phase = augment_phase
self.pre_encoded = pre_encoded
self.latent_crop_length = latent_crop_length
self.volume_norm = volume_norm
self.volume_norm_param = volume_norm_param
self.remove_silence = remove_silence
self.silence_threshold = silence_threshold
self.max_silence_duration = max_silence_duration
urls = [dataset.load_data_urls() for dataset in datasets]
# Flatten the list of lists of URLs
urls = [url for dataset_urls in urls for url in dataset_urls]
# Shuffle the urls
random.shuffle(urls)
self.dataset = wds.DataPipeline(
wds.ResampledShards(urls) if resampled_shards else wds.SimpleShardList(urls),
wds.tarfile_to_samples(handler=log_and_continue),
wds.decode(audio_decoder, handler=log_and_continue) if not self.pre_encoded else wds.decode(npy_decoder, handler=log_and_continue),
wds.map(self.wds_preprocess, handler=log_and_continue),
#wds.map(self.wds_preprocess),
wds.select(is_valid_sample),
wds.to_tuple("audio", "json", handler=log_and_continue),
#wds.shuffle(bufsize=1000, initial=5000),
wds.batched(batch_size, partial=False, collation_fn=collation_fn),
)
if resampled_shards:
self.dataset = self.dataset.with_epoch(epoch_steps//num_workers if num_workers > 0 else epoch_steps)
def worker_init_fn(worker_id):
torch.multiprocessing.set_sharing_strategy('file_system')
self.data_loader = wds.WebLoader(self.dataset, num_workers=num_workers, worker_init_fn=worker_init_fn, **data_loader_kwargs)
def wds_preprocess(self, sample):
if self.pre_encoded:
audio = torch.from_numpy(sample["npy"])
del sample["npy"]
sample["__pre_encoded__"] = True
padding_mask = sample["json"]["padding_mask"]
if self.latent_crop_length is not None:
# Get the last index from the padding mask, the index of the last 1 in the sequence
last_ix = len(padding_mask) - 1 - padding_mask[::-1].index(1)
if self.random_crop and last_ix > self.latent_crop_length:
start = random.randint(0, last_ix - self.latent_crop_length)
else:
start = 0
audio = audio[:, start:start+self.latent_crop_length]
padding_mask = padding_mask[start:start+self.latent_crop_length]
sample["json"]["padding_mask"] = torch.tensor(padding_mask)
else:
found_key, rewrite_key = '', ''
for k, v in sample.items(): # print the all entries in dict
for akey in AUDIO_KEYS:
if k.endswith(akey):
# to rename long/weird key with its simpler counterpart
found_key, rewrite_key = k, akey
break
if '' != found_key:
break
if '' == found_key: # got no audio!
return None # try returning None to tell WebDataset to skip this one
audio, in_sr = sample[found_key]
if in_sr != self.sample_rate:
resample_tf = T.Resample(in_sr, self.sample_rate)
audio = resample_tf(audio)
# Replace the long silence by the short for the mono audios
if audio.shape[0] == 1 and self.remove_silence:
audio = remove_long_silence(audio, self.sample_rate, self.silence_threshold, self.max_silence_duration)
if self.sample_size is not None:
# Pad/crop and get the relative timestamp
pad_crop = PadCrop_Normalized_T(
self.sample_size, randomize=self.random_crop, sample_rate=self.sample_rate)
audio, t_start, t_end, seconds_start, seconds_total, padding_mask = pad_crop(
audio)
sample["json"]["seconds_start"] = seconds_start
sample["json"]["seconds_total"] = seconds_total
sample["json"]["padding_mask"] = padding_mask
else:
t_start, t_end = 0, 1
# Check if audio is length zero, initialize to a single zero if so
if audio.shape[-1] == 0:
audio = torch.zeros(1, 1)
# Make the audio stereo and augment by randomly inverting phase
augs = torch.nn.Sequential(
Stereo() if self.force_channels == "stereo" else torch.nn.Identity(),
Mono() if self.force_channels == "mono" else torch.nn.Identity(),
VolumeNorm(self.volume_norm_param, self.sample_rate) if self.volume_norm else torch.nn.Identity(),
PhaseFlipper() if self.augment_phase else torch.nn.Identity()
)
audio = augs(audio)
sample["json"]["timestamps"] = (t_start, t_end)
if found_key != rewrite_key: # rename long/weird key with its simpler counterpart
del sample[found_key]
if "text" in sample["json"]:
sample["json"]["prompt"] = sample["json"]["text"]
# Check for custom metadata functions
for dataset in self.datasets:
if dataset.custom_metadata_fn is None:
continue
if dataset.path in sample["__url__"]:
custom_metadata = dataset.custom_metadata_fn(sample["json"], audio)
sample["json"].update(custom_metadata)
sample["audio"] = audio
# Add audio to the metadata as well for conditioning
sample["json"]["audio"] = audio
return sample
def create_dataloader_from_config(dataset_config, batch_size, sample_size, sample_rate, audio_channels=2, num_workers=4, shuffle = True):
dataset_type = dataset_config.get("dataset_type", None)
assert dataset_type is not None, "Dataset type must be specified in dataset config"
if audio_channels == 1:
force_channels = "mono"
else:
force_channels = "stereo"
if dataset_type == "audio_dir":
audio_dir_configs = dataset_config.get("datasets", None)
assert audio_dir_configs is not None, "Directory configuration must be specified in datasets[\"dataset\"]"
configs = []
for audio_dir_config in audio_dir_configs:
audio_dir_path = audio_dir_config.get("path", None)
assert audio_dir_path is not None, "Path must be set for local audio directory configuration"
custom_metadata_fn = None
custom_metadata_module_path = audio_dir_config.get("custom_metadata_module", None)
if custom_metadata_module_path is not None:
spec = importlib.util.spec_from_file_location("metadata_module", custom_metadata_module_path)
metadata_module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(metadata_module)
custom_metadata_fn = metadata_module.get_custom_metadata
configs.append(
LocalDatasetConfig(
id=audio_dir_config["id"],
path=audio_dir_path,
custom_metadata_fn=custom_metadata_fn
)
)
train_set = SampleDataset(
configs,
sample_rate=sample_rate,
sample_size=sample_size,
random_crop=dataset_config.get("random_crop", True),
force_channels=force_channels
)
return torch.utils.data.DataLoader(train_set, batch_size, shuffle=shuffle,
num_workers=num_workers, persistent_workers=True, pin_memory=True, drop_last=dataset_config.get("drop_last", True), collate_fn=collation_fn)
elif dataset_type == "pre_encoded":
pre_encoded_dir_configs = dataset_config.get("datasets", None)
assert pre_encoded_dir_configs is not None, "Directory configuration must be specified in datasets[\"dataset\"]"
latent_crop_length = dataset_config.get("latent_crop_length", None)
min_length_sec = dataset_config.get("min_length_sec", None)
max_length_sec = dataset_config.get("max_length_sec", None)
random_crop = dataset_config.get("random_crop", False)
configs = []
for pre_encoded_dir_config in pre_encoded_dir_configs:
pre_encoded_dir_path = pre_encoded_dir_config.get("path", None)
assert pre_encoded_dir_path is not None, "Path must be set for local audio directory configuration"
custom_metadata_fn = None
custom_metadata_module_path = pre_encoded_dir_config.get("custom_metadata_module", None)
if custom_metadata_module_path is not None:
spec = importlib.util.spec_from_file_location("metadata_module", custom_metadata_module_path)
metadata_module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(metadata_module)
custom_metadata_fn = metadata_module.get_custom_metadata
configs.append(
LocalDatasetConfig(
id=pre_encoded_dir_config["id"],
path=pre_encoded_dir_path,
custom_metadata_fn=custom_metadata_fn
)
)
latent_extension = dataset_config.get("latent_extension", 'npy')
train_set = PreEncodedDataset(
configs,
latent_crop_length=latent_crop_length,
min_length_sec=min_length_sec,
max_length_sec=max_length_sec,
random_crop=random_crop,
latent_extension=latent_extension
)
return torch.utils.data.DataLoader(train_set, batch_size, shuffle=shuffle,
num_workers=num_workers, persistent_workers=True, pin_memory=True, drop_last=dataset_config.get("drop_last", True), collate_fn=collation_fn)
elif dataset_type in ["s3", "wds"]: # Support "s3" type for backwards compatibility
wds_configs = []
for wds_config in dataset_config["datasets"]:
custom_metadata_fn = None
custom_metadata_module_path = wds_config.get("custom_metadata_module", None)
if custom_metadata_module_path is not None:
spec = importlib.util.spec_from_file_location("metadata_module", custom_metadata_module_path)
metadata_module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(metadata_module)
custom_metadata_fn = metadata_module.get_custom_metadata
if "s3_path" in wds_config:
wds_configs.append(
S3DatasetConfig(
id=wds_config["id"],
s3_path=wds_config["s3_path"],
custom_metadata_fn=custom_metadata_fn,
profile=wds_config.get("profile", None),
)
)
elif "path" in wds_config:
wds_configs.append(
LocalWebDatasetConfig(
id=wds_config["id"],
path=wds_config["path"],
custom_metadata_fn=custom_metadata_fn
)
)
return WebDatasetDataLoader(
wds_configs,
sample_rate=sample_rate,
sample_size=sample_size,
batch_size=batch_size,
remove_silence=dataset_config.get("remove_silence", False),
silence_threshold=dataset_config.get("silence_threshold", [0.01, 0.5]),
max_silence_duration=dataset_config.get("max_silence_duration", 0.25),
random_crop=dataset_config.get("random_crop", True),
volume_norm=dataset_config.get("volume_norm", False),
volume_norm_param=dataset_config.get("volume_norm_param", [-16, 2]),
num_workers=num_workers,
persistent_workers=True,
pin_memory=True,
force_channels=force_channels,
epoch_steps=dataset_config.get("epoch_steps", 2000),
pre_encoded=dataset_config.get("pre_encoded", False),
latent_crop_length=dataset_config.get("latent_crop_length", None),
resampled_shards=dataset_config.get("resampled_shards", True)
).data_loader