-
Notifications
You must be signed in to change notification settings - Fork 11
/
data_loaders.py
215 lines (189 loc) · 7.42 KB
/
data_loaders.py
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
import os
import random
import numpy as np
import librosa
import torch
import random
from tqdm import tqdm
from torch.utils.data import Dataset
def traverse_dir(
root_dir,
extension,
amount=None,
str_include=None,
str_exclude=None,
is_pure=False,
is_sort=False,
is_ext=True):
file_list = []
cnt = 0
for root, _, files in os.walk(root_dir):
for file in files:
if file.endswith(extension):
# path
mix_path = os.path.join(root, file)
pure_path = mix_path[len(root_dir)+1:] if is_pure else mix_path
# amount
if (amount is not None) and (cnt == amount):
if is_sort:
file_list.sort()
return file_list
# check string
if (str_include is not None) and (str_include not in pure_path):
continue
if (str_exclude is not None) and (str_exclude in pure_path):
continue
if not is_ext:
ext = pure_path.split('.')[-1]
pure_path = pure_path[:-(len(ext)+1)]
file_list.append(pure_path)
cnt += 1
if is_sort:
file_list.sort()
return file_list
def get_data_loaders(args, whole_audio=False):
data_train = AudioDataset(
args.data.train_path,
waveform_sec=args.data.duration,
hop_size=args.data.block_size,
sample_rate=args.data.sampling_rate,
load_all_data=args.train.cache_all_data,
whole_audio=whole_audio,
volume_aug=True)
loader_train = torch.utils.data.DataLoader(
data_train ,
batch_size=args.train.batch_size if not whole_audio else 1,
shuffle=True,
num_workers=args.train.num_workers,
persistent_workers=(args.train.num_workers > 0),
pin_memory=True
)
data_valid = AudioDataset(
args.data.valid_path,
waveform_sec=args.data.duration,
hop_size=args.data.block_size,
sample_rate=args.data.sampling_rate,
load_all_data=args.train.cache_all_data,
whole_audio=True,
volume_aug=False)
loader_valid = torch.utils.data.DataLoader(
data_valid,
batch_size=1,
shuffle=False,
num_workers=0,
pin_memory=True
)
return loader_train, loader_valid
class AudioDataset(Dataset):
def __init__(
self,
path_root,
waveform_sec,
hop_size,
sample_rate,
load_all_data=True,
whole_audio=False,
volume_aug=False
):
super().__init__()
self.waveform_sec = waveform_sec
self.sample_rate = sample_rate
self.hop_size = hop_size
self.path_root = path_root
self.paths = traverse_dir(
os.path.join(path_root, 'audio'),
extension='wav',
is_pure=True,
is_sort=True,
is_ext=False
)
self.whole_audio = whole_audio
self.volume_aug = volume_aug
self.data_buffer={}
if load_all_data:
print('Load all the data from :', path_root)
else:
print('Load the f0, uv data from :', path_root)
for name in tqdm(self.paths, total=len(self.paths)):
path_audio = os.path.join(self.path_root, 'audio', name) + '.wav'
duration = librosa.get_duration(filename = path_audio, sr = self.sample_rate)
path_f0 = os.path.join(self.path_root, 'f0', name) + '.npy'
f0 = np.load(path_f0)
f0 = torch.from_numpy(f0).float().unsqueeze(-1)
path_uv = os.path.join(self.path_root, 'uv', name) + '.npy'
uv = np.load(path_uv)
uv = torch.from_numpy(uv).float()
if load_all_data:
audio, sr = librosa.load(path_audio, sr=self.sample_rate)
audio = torch.from_numpy(audio).float()
path_mel = os.path.join(self.path_root, 'mel', name) + '.npy'
audio_mel = np.load(path_mel)
audio_mel = torch.from_numpy(audio_mel).float()
self.data_buffer[name] = {
'duration': duration,
'audio': audio,
'audio_mel': audio_mel,
'f0': f0,
'uv': uv
}
else:
self.data_buffer[name] = {
'duration': duration,
'f0': f0,
'uv': uv
}
def __getitem__(self, file_idx):
name = self.paths[file_idx]
data_buffer = self.data_buffer[name]
# check duration. if too short, then skip
if data_buffer['duration'] < (self.waveform_sec + 0.1):
return self.__getitem__( (file_idx + 1) % len(self.paths))
# get item
return self.get_data(name, data_buffer)
def get_data(self, name, data_buffer):
frame_resolution = self.hop_size / self.sample_rate
duration = data_buffer['duration']
waveform_sec = duration if self.whole_audio else self.waveform_sec
# load audio
idx_from = 0 if self.whole_audio else random.uniform(0, duration - waveform_sec - 0.1)
start_frame = int(idx_from / frame_resolution)
mel_frame_len = int(waveform_sec / frame_resolution)
audio = data_buffer.get('audio')
if audio is None:
path_audio = os.path.join(self.path_root, 'audio', name) + '.wav'
audio, sr = librosa.load(
path_audio,
sr = self.sample_rate,
offset = start_frame * frame_resolution,
duration = waveform_sec)
# clip audio into N seconds
audio = audio[..., : audio.shape[-1] // self.hop_size * self.hop_size]
audio = torch.from_numpy(audio).float()
else:
audio = audio[..., start_frame * self.hop_size : (start_frame + mel_frame_len) * self.hop_size].clone()
# load mel
audio_mel = data_buffer.get('audio_mel')
if audio_mel is None:
path_mel = os.path.join(self.path_root, 'mel', name) + '.npy'
audio_mel = np.load(path_mel)
audio_mel = audio_mel[start_frame : start_frame + mel_frame_len]
audio_mel = torch.from_numpy(audio_mel).float()
else:
audio_mel = audio_mel[start_frame : start_frame + mel_frame_len].clone()
# load f0
f0 = data_buffer.get('f0')
f0_frames = f0[start_frame : start_frame + mel_frame_len]
# load uv
uv = data_buffer.get('uv')
uv_frames = uv[start_frame : start_frame + mel_frame_len]
# volume augmentation
if self.volume_aug:
max_amp = float(torch.max(torch.abs(audio))) + 1e-5
max_shift = min(1, np.log10(1/max_amp))
log10_mel_shift = random.uniform(-1, max_shift)
audio *= (10 ** log10_mel_shift)
audio_mel += log10_mel_shift
audio_mel = torch.clamp(audio_mel, min=-5)
return dict(audio=audio, f0=f0_frames, uv=uv_frames, mel=audio_mel, name=name)
def __len__(self):
return len(self.paths)