File size: 19,533 Bytes
3c50954 | 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 | # Copyright (c) 2021 Wenet Community. (authors: Binbin Zhang)
# 2023 Wenet Community. (authors: Dinghao Zhou)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import io
import json
from subprocess import PIPE, Popen
from urllib.parse import urlparse
from langid.langid import LanguageIdentifier, model
import logging
import librosa
import random
import torch
from torch.nn.utils.rnn import pad_sequence
import torchaudio
import torchaudio.compliance.kaldi as kaldi
import torch.nn.functional as F
from wenet.text.base_tokenizer import BaseTokenizer
torchaudio.utils.sox_utils.set_buffer_size(16500)
AUDIO_FORMAT_SETS = set(['flac', 'mp3', 'm4a', 'ogg', 'opus', 'wav', 'wma'])
lid = LanguageIdentifier.from_modelstring(model, norm_probs=True)
logging.getLogger('langid').setLevel(logging.INFO)
import os
try:
cpu_info = os.popen("lscpu | grep 'Vendor ID'").read()
# 0x48 --> HiSilicon
if (cpu_info.rstrip().split(" ")[-1] == "0x48"):
# NOTE (MengqingCao): set number of threads in the subprocesses to 1
# Why? There may be some operators ultilizing multi-threads in processor,
# causing possibly deadlock in Kunpeng.
# Similar issue in PyTorch: https://github.com/pytorch/pytorch/issues/45198
torch.set_num_threads(1)
except Exception as ex:
logging.warning('Failed to set number of thread in Kunpeng, \
this may cause segmentfault while dataloading, \
ignore this warning if you are not using Kunpeng')
class UrlOpenError(Exception):
def __init__(self, msg: str, *args: object) -> None:
super().__init__(*args)
self.err_msg = msg
def __str__(self) -> str:
return self.err_msg
def parse_json(elem):
line = elem['line']
obj = json.loads(line)
obj['file_name'] = elem['file_name']
return dict(obj)
def parse_url(elem):
assert 'file_name' in elem
assert 'line' in elem
assert isinstance(elem, dict)
url = elem['line']
try:
pr = urlparse(url)
# local file
if pr.scheme == '' or pr.scheme == 'file':
stream = open(url, 'rb')
# network file, such as HTTP(HDFS/OSS/S3)/HTTPS/SCP
else:
cmd = f'wget -q -O - {url}'
process = Popen(cmd, shell=True, stdout=PIPE)
elem.update(process=process)
stream = process.stdout
elem.update(stream=stream)
return elem
except Exception as ex:
err_msg = 'Failed to open {}'.format(url)
raise UrlOpenError(err_msg) from ex
def parse_speaker(sample, speaker_dict):
assert 'speaker' in sample
speaker = sample['speaker']
sample['speaker'] = speaker_dict.get(speaker, 0)
return sample
def detect_language(sample, limited_langs):
assert 'txt' in sample
# NOTE(xcsong): Because language classification may not be very accurate
# (for example, Chinese being classified as Japanese), our workaround,
# given we know for certain that the training data only consists of
# Chinese and English, is to limit the classification results to reduce
# the impact of misclassification.
lid.set_languages(limited_langs)
# i.e., ('zh', 0.9999999909903544)
sample['lang'] = lid.classify(sample['txt'])[0]
return sample
def detect_task(sample):
# TODO(xcsong): Currently, the task is hard-coded to 'transcribe'.
# In the future, we could dynamically determine the task based on
# the contents of sample. For instance, if a sample contains both
# 'txt_en' and 'txt_zh', the task should be set to 'translate'.
sample['task'] = "transcribe"
return sample
def decode_wav(sample):
""" Parse key/wav/txt from json line
Args:
sample: str, str is a json line has key/wav
Returns:
{key, wav, sample_rate, ...}
"""
assert 'key' in sample
assert 'wav' in sample
wav_file = sample['wav']
if isinstance(wav_file, str):
with open(wav_file, 'rb') as f:
wav_file = f.read()
if 'start' in sample:
assert 'end' in sample
sample_rate = torchaudio.info(wav_file).sample_rate
start_frame = int(sample['start'] * sample_rate)
end_frame = int(sample['end'] * sample_rate)
with io.BytesIO(wav_file) as file_obj:
waveform, _ = torchaudio.load(file_obj,
num_frames=end_frame - start_frame,
frame_offset=start_frame)
else:
with io.BytesIO(wav_file) as file_obj:
waveform, sample_rate = torchaudio.load(file_obj)
# del wav_file
del sample['wav']
sample['wav'] = waveform # overwrite wav
sample['sample_rate'] = sample_rate
return sample
def singal_channel(sample, channel=0):
""" Choose a channel of sample.
Inplace operation.
Args:
sample: {key, wav, label, sample_rate}
channel: target channel index
Returns:
{key, wav, label, sample_rate}
"""
assert 'wav' in sample
waveform = sample['wav']
channel_nums = waveform.size(0)
assert channel < channel_nums
if channel_nums != 1:
waveform = waveform[channel, :].unsqueeze(0)
sample['wav'] = waveform
return sample
def resample(sample, resample_rate=16000):
""" Resample sample.
Inplace operation.
Args:
sample: {key, wav, label, sample_rate}
resample_rate: target resample rate
Returns:
{key, wav, label, sample_rate}
"""
assert 'sample_rate' in sample
assert 'wav' in sample
sample_rate = sample['sample_rate']
waveform = sample['wav']
if sample_rate != resample_rate:
sample['sample_rate'] = resample_rate
sample['wav'] = torchaudio.transforms.Resample(
orig_freq=sample_rate, new_freq=resample_rate)(waveform)
return sample
def speed_perturb(sample, speeds=None):
""" Apply speed perturb to the sample.
Inplace operation.
Args:
sample: {key, wav, label, sample_rate}
speeds(List[float]): optional speed
Returns:
key, wav, label, sample_rate}
"""
if speeds is None:
speeds = [0.9, 1.0, 1.1]
assert 'sample_rate' in sample
assert 'wav' in sample
sample_rate = sample['sample_rate']
waveform = sample['wav']
speed = random.choice(speeds)
if speed != 1.0:
wav, _ = torchaudio.sox_effects.apply_effects_tensor(
waveform, sample_rate,
[['speed', str(speed)], ['rate', str(sample_rate)]])
sample['wav'] = wav
return sample
def compute_fbank(sample,
num_mel_bins=23,
frame_length=25,
frame_shift=10,
dither=0.0,
window_type="povey"):
""" Extract fbank
Args:
sample: {key, wav, sample_rate, ...}
Returns:
{key, feat, wav, sample_rate, ...}
"""
assert 'sample_rate' in sample
assert 'wav' in sample
assert 'key' in sample
sample_rate = sample['sample_rate']
waveform = sample['wav']
waveform = waveform * (1 << 15)
# Only keep key, feat, label
mat = kaldi.fbank(waveform,
num_mel_bins=num_mel_bins,
frame_length=frame_length,
frame_shift=frame_shift,
dither=dither,
energy_floor=0.0,
sample_frequency=sample_rate,
window_type=window_type)
sample['feat'] = mat
return sample
def compute_w2vbert_fbank(sample,
num_mel_bins=23,
frame_length=25,
frame_shift=10,
dither=0.0):
""" Extract Pretrain w2vbert(4.5M hours) fbank
"""
sample = compute_fbank(sample, num_mel_bins, frame_length, frame_shift,
dither)
mat = sample['feat']
std, mean = torch.std_mean(mat, dim=0)
mat = mat.subtract(mean).divide(std)
sample['feat'] = mat
return sample
def sort_by_feats(sample):
assert 'feat' in sample
assert isinstance(sample['feat'], torch.Tensor)
return sample['feat'].size(0)
def feats_length_fn(sample) -> int:
assert 'feat' in sample
return sample['feat'].size(0)
def compute_mfcc(sample,
num_mel_bins=23,
frame_length=25,
frame_shift=10,
dither=0.0,
num_ceps=40,
high_freq=0.0,
low_freq=20.0):
""" Extract mfcc
Args:
sample: {key, wav, sample_rate, ...}
Returns:
{key, wav, feat, sample_rate, ...}
"""
assert 'wav' in sample
assert 'key' in sample
sample_rate = sample['sample_rate']
waveform = sample['wav']
waveform = waveform * (1 << 15)
mat = kaldi.mfcc(waveform,
num_mel_bins=num_mel_bins,
frame_length=frame_length,
frame_shift=frame_shift,
dither=dither,
num_ceps=num_ceps,
high_freq=high_freq,
low_freq=low_freq,
sample_frequency=sample_rate)
sample['feat'] = mat
return sample
def compute_log_mel_spectrogram(sample,
n_fft=400,
hop_length=160,
num_mel_bins=80,
padding=0,
pad_or_trim: bool = False,
max_duration: int = 30):
""" Extract log mel spectrogram, modified from openai-whisper, see:
- https://github.com/openai/whisper/blob/main/whisper/audio.py
- https://github.com/wenet-e2e/wenet/pull/2141#issuecomment-1811765040
Args:
sample: {key, wav, sample_rate, ...}
max_duration: valid when pad_or_trim is True (orign whisper style)
Returns:
{key, feat, wav, sample_rate, ...}
"""
assert 'sample_rate' in sample
assert 'wav' in sample
assert 'key' in sample
sample_rate = sample['sample_rate']
waveform = sample['wav'].squeeze(0) # (channel=1, sample) -> (sample,)
if padding > 0:
waveform = F.pad(waveform, (0, padding))
if pad_or_trim:
length = max_duration * sample_rate
if waveform.size(0) >= length:
waveform = waveform[:length]
else:
waveform = F.pad(waveform, (0, length - waveform.size(0)))
window = torch.hann_window(n_fft)
stft = torch.stft(waveform,
n_fft,
hop_length,
window=window,
return_complex=True)
magnitudes = stft[..., :-1].abs()**2
filters = torch.from_numpy(
librosa.filters.mel(sr=sample_rate, n_fft=n_fft, n_mels=num_mel_bins))
mel_spec = filters @ magnitudes
# NOTE(xcsong): https://github.com/openai/whisper/discussions/269
log_spec = torch.clamp(mel_spec, min=1e-10).log10()
log_spec = torch.maximum(log_spec, log_spec.max() - 8.0)
log_spec = (log_spec + 4.0) / 4.0
sample['feat'] = log_spec.transpose(0, 1)
return sample
def tokenize(sample, tokenizer: BaseTokenizer):
""" Decode text to chars or BPE
Inplace operation
Args:
sample: {key, wav, txt, sample_rate, ...}
Returns:
{key, wav, txt, tokens, label, sample_rate, ...}
"""
assert 'txt' in sample
tokens, label = tokenizer.tokenize(sample['txt'])
sample['tokens'] = tokens
sample['label'] = label
return sample
def filter(sample,
max_length=10240,
min_length=10,
token_max_length=200,
token_min_length=1,
min_output_input_ratio=0.0005,
max_output_input_ratio=1):
""" Filter sample according to feature and label length
Inplace operation.
Args::
sample: {key, wav, label, sample_rate, ...}]
max_length: drop utterance which is greater than max_length(10ms)
min_length: drop utterance which is less than min_length(10ms)
token_max_length: drop utterance which is greater than
token_max_length, especially when use char unit for
english modeling
token_min_length: drop utterance which is
less than token_max_length
min_output_input_ratio: minimal ration of
token_length / feats_length(10ms)
max_output_input_ratio: maximum ration of
token_length / feats_length(10ms)
Returns:
bool: True to keep, False to filter
"""
assert 'sample_rate' in sample
assert 'wav' in sample
# sample['wav'] is torch.Tensor, we have 100 frames every second
num_frames = sample['wav'].size(1) / sample['sample_rate'] * 100
if num_frames < min_length:
return False
if num_frames > max_length:
return False
if 'label' in sample:
if len(sample['label']) < token_min_length:
return False
if len(sample['label']) > token_max_length:
return False
if num_frames != 0:
if len(sample['label']) / num_frames < min_output_input_ratio:
return False
if len(sample['label']) / num_frames > max_output_input_ratio:
return False
return True
def spec_aug(sample, num_t_mask=2, num_f_mask=2, max_t=50, max_f=10, max_w=80):
""" Do spec augmentation
Inplace operation
Args:
sample: {key, feat, ...}
num_t_mask: number of time mask to apply
num_f_mask: number of freq mask to apply
max_t: max width of time mask
max_f: max width of freq mask
max_w: max width of time warp
Returns
{key, feat, ....}
"""
assert 'feat' in sample
x = sample['feat']
assert isinstance(x, torch.Tensor)
y = x.clone().detach()
max_frames = y.size(0)
max_freq = y.size(1)
# time mask
for i in range(num_t_mask):
start = random.randint(0, max_frames - 1)
length = random.randint(1, max_t)
end = min(max_frames, start + length)
y[start:end, :] = 0
# freq mask
for _ in range(num_f_mask):
start = random.randint(0, max_freq - 1)
length = random.randint(1, max_f)
end = min(max_freq, start + length)
y[:, start:end] = 0
sample['feat'] = y
return sample
def spec_sub(sample, max_t=20, num_t_sub=3):
""" Do spec substitute
Inplace operation
ref: U2++, section 3.2.3 [https://arxiv.org/abs/2106.05642]
Args:
sample: Iterable{key, feat, ...}
max_t: max width of time substitute
num_t_sub: number of time substitute to apply
Returns
{key, feat, ...}
"""
assert 'feat' in sample
x = sample['feat']
assert isinstance(x, torch.Tensor)
y = x.clone().detach()
max_frames = y.size(0)
for _ in range(num_t_sub):
start = random.randint(0, max_frames - 1)
length = random.randint(1, max_t)
end = min(max_frames, start + length)
# only substitute the earlier time chosen randomly for current time
pos = random.randint(0, start)
y[start:end, :] = x[start - pos:end - pos, :]
sample['feat'] = y
return sample
def spec_trim(sample, max_t=20):
""" Trim tailing frames. Inplace operation.
ref: TrimTail [https://arxiv.org/abs/2211.00522]
Args:
sample: {key, feat, label}
max_t: max width of length trimming
Returns:
{key, feat, label}
"""
assert 'feat' in sample
x = sample['feat']
assert isinstance(x, torch.Tensor)
max_frames = x.size(0)
length = random.randint(1, max_t)
if length < max_frames / 2:
y = x.clone().detach()[:max_frames - length]
sample['feat'] = y
return sample
def padding(data):
""" Padding the data into training data
Args:
data: List[{key, feat, label}
Returns:
Tuple(keys, feats, labels, feats lengths, label lengths)
"""
sample = data
assert isinstance(sample, list)
feats_length = torch.tensor([x['feat'].size(0) for x in sample],
dtype=torch.int32)
order = torch.argsort(feats_length, descending=True)
feats_lengths = torch.tensor([sample[i]['feat'].size(0) for i in order],
dtype=torch.int32)
sorted_feats = [sample[i]['feat'] for i in order]
sorted_keys = [sample[i]['key'] for i in order]
sorted_labels = [
torch.tensor(sample[i]['label'], dtype=torch.int64) for i in order
]
sorted_wavs = [sample[i]['wav'].squeeze(0) for i in order]
langs = [sample[i]['lang'] for i in order]
tasks = [sample[i]['task'] for i in order]
label_lengths = torch.tensor([x.size(0) for x in sorted_labels],
dtype=torch.int32)
wav_lengths = torch.tensor([x.size(0) for x in sorted_wavs],
dtype=torch.int32)
padded_feats = pad_sequence(sorted_feats,
batch_first=True,
padding_value=0)
padding_labels = pad_sequence(sorted_labels,
batch_first=True,
padding_value=-1)
padded_wavs = pad_sequence(sorted_wavs, batch_first=True, padding_value=0)
batch = {
"keys": sorted_keys,
"feats": padded_feats,
"target": padding_labels,
"feats_lengths": feats_lengths,
"target_lengths": label_lengths,
"pcm": padded_wavs,
"pcm_length": wav_lengths,
"langs": langs,
"tasks": tasks,
}
if 'speaker' in sample[0]:
speaker = torch.tensor([sample[i]['speaker'] for i in order],
dtype=torch.int32)
batch['speaker'] = speaker
return batch
class DynamicBatchWindow:
def __init__(self, max_frames_in_batch=12000):
self.longest_frames = 0
self.max_frames_in_batch = max_frames_in_batch
def __call__(self, sample, buffer_size):
assert isinstance(sample, dict)
assert 'feat' in sample
assert isinstance(sample['feat'], torch.Tensor)
new_sample_frames = sample['feat'].size(0)
self.longest_frames = max(self.longest_frames, new_sample_frames)
frames_after_padding = self.longest_frames * (buffer_size + 1)
if frames_after_padding > self.max_frames_in_batch:
self.longest_frames = new_sample_frames
return True
return False
|