forked from espnet/espnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths2st_inference.py
More file actions
executable file
·994 lines (900 loc) · 35.9 KB
/
Copy paths2st_inference.py
File metadata and controls
executable file
·994 lines (900 loc) · 35.9 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
989
990
991
992
993
994
#!/usr/bin/env python3
"""Script to run the inference of speech-to-speech translation model."""
import argparse
import logging
import shutil
import sys
import time
from pathlib import Path
from typing import Any, Dict, List, Optional, Sequence, Tuple, Union
import numpy as np
import soundfile as sf
import torch
from packaging.version import parse as V
from typeguard import typechecked
from espnet2.fileio.datadir_writer import DatadirWriter
from espnet2.fileio.npy_scp import NpyScpWriter
from espnet2.tasks.s2st import S2STTask
from espnet2.text.build_tokenizer import build_tokenizer
from espnet2.text.token_id_converter import TokenIDConverter
from espnet2.torch_utils.device_funcs import to_device
from espnet2.torch_utils.set_all_random_seed import set_all_random_seed
from espnet2.utils import config_argparse
from espnet2.utils.types import str2bool, str2triple_str, str_or_none
from espnet.nets.batch_beam_search import BatchBeamSearch
from espnet.nets.beam_search import BeamSearch, Hypothesis
from espnet.nets.scorer_interface import BatchScorerInterface
from espnet.nets.scorers.length_bonus import LengthBonus
from espnet.utils.cli_utils import get_commandline_args
class Speech2Speech:
"""Speech2Speech class."""
@typechecked
def __init__(
self,
train_config: Union[Path, str, None] = None,
model_file: Union[Path, str, None] = None,
threshold: float = 0.5,
minlenratio: float = 0.0,
maxlenratio: float = 10.0,
st_subtask_maxlenratio: float = 1.5,
st_subtask_minlenratio: float = 0.0,
use_teacher_forcing: bool = False,
use_att_constraint: bool = False,
backward_window: int = 1,
forward_window: int = 3,
nbest: int = 1,
normalize_length: bool = False,
beam_size: int = 5,
penalty: float = 0.0,
st_subtask_beam_size: int = 5,
st_subtask_penalty: float = 0.0,
st_subtask_nbest: int = 1,
st_subtask_token_type: Optional[str] = None,
st_subtask_bpemodel: Optional[str] = None,
vocoder_config: Union[Path, str, None] = None,
vocoder_file: Union[Path, str, None] = None,
dtype: str = "float32",
device: str = "cpu",
seed: int = 777,
always_fix_seed: bool = False,
prefer_normalized_feats: bool = False,
):
"""Initialize Speech2Speech module."""
# setup model
model, train_args = S2STTask.build_model_from_file(
train_config, model_file, device
)
model.to(dtype=getattr(torch, dtype)).eval()
self.device = device
self.dtype = dtype
self.train_args = train_args
self.model = model
self.s2st_type = self.model.s2st_type
self.preprocess_fn = S2STTask.build_preprocess_fn(train_args, False)
self.use_teacher_forcing = use_teacher_forcing
self.maxlenratio = maxlenratio
self.minlenratio = minlenratio
self.st_subtask_maxlenratio = st_subtask_maxlenratio
self.st_subtask_minlenratio = st_subtask_minlenratio
self.seed = seed
self.always_fix_seed = always_fix_seed
self.prefer_normalized_feats = prefer_normalized_feats
if self.model.require_vocoder and vocoder_file is not None:
vocoder = S2STTask.build_vocoder_from_file(
vocoder_config, vocoder_file, model, device
)
if isinstance(vocoder, torch.nn.Module):
vocoder.to(dtype=getattr(torch, dtype)).eval()
self.vocoder = vocoder
else:
self.vocoder = None
logging.info(f"S2ST:\n{self.model}")
if self.vocoder is not None:
logging.info(f"Vocoder:\n{self.vocoder}")
# setup decoding config
self.decode_conf = {} # use for specotrogram-based decoding
scorers = {} # use for beam-search decoding
st_subtask_scorers = {} # use for beam-search in st_subtask
if self.s2st_type == "translatotron":
self.decode_conf.update(
threshold=threshold,
maxlenratio=maxlenratio,
minlenratio=minlenratio,
use_att_constraint=use_att_constraint,
forward_window=forward_window,
backward_window=backward_window,
use_teacher_forcing=use_teacher_forcing,
)
elif self.s2st_type == "discrete_unit" or self.s2st_type == "unity":
decoder = model.synthesizer
token_list = model.unit_token_list
scorers.update(decoder=decoder, length_bonus=LengthBonus(len(token_list)))
weights = dict(
decoder=1.0,
length_bonus=penalty,
)
beam_search = BeamSearch(
beam_size=beam_size,
weights=weights,
scorers=scorers,
sos=model.unit_sos,
eos=model.unit_eos,
vocab_size=len(token_list),
token_list=None, # No need to print out the lengthy discrete unit
pre_beam_score_key="full",
normalize_length=normalize_length,
)
# TODO(karita): make all scorers batchfied
non_batch = [
k
for k, v in beam_search.full_scorers.items()
if not isinstance(v, BatchScorerInterface)
]
if len(non_batch) == 0:
beam_search.__class__ = BatchBeamSearch
logging.info("BatchBeamSearch implementation is selected.")
else:
logging.warning(
f"As non-batch scorers {non_batch} are found, "
f"fall back to non-batch implementation."
)
beam_search.to(device=device, dtype=getattr(torch, dtype)).eval()
for scorer in scorers.values():
if isinstance(scorer, torch.nn.Module):
scorer.to(device=device, dtype=getattr(torch, dtype)).eval()
logging.info(f"Beam_search: {beam_search}")
logging.info(f"Decoding device={device}, dtype={dtype}")
self.beam_search = beam_search
# Further define st_subtask decoder
if self.s2st_type == "unity":
st_subtask_decoder = model.st_decoder
st_subtask_scorers.update(
decoder=st_subtask_decoder,
length_bonus=LengthBonus(len(model.tgt_token_list)),
)
st_subtask_weights = {
"decoder": 1.0,
"length_bonus": st_subtask_penalty,
}
logging.info("model sos eos: {}".format(model.eos))
st_subtask_beam_search = BeamSearch(
beam_size=st_subtask_beam_size,
weights=st_subtask_weights,
scorers=st_subtask_scorers,
sos=model.sos,
eos=model.eos,
vocab_size=len(model.tgt_token_list),
pre_beam_score_key="full",
normalize_length=normalize_length,
return_hs=True,
)
# TODO(karita): make all st_subtask_scorers batchfied
non_batch = [
k
for k, v in st_subtask_beam_search.full_scorers.items()
if not isinstance(v, BatchScorerInterface)
]
if len(non_batch) == 0:
st_subtask_beam_search.__class__ = BatchBeamSearch
logging.info("BatchBeamSearch implementation is selected.")
else:
logging.warning(
f"As non-batch st_subtask_scorers {non_batch} are found, "
f"fall back to non-batch implementation."
)
st_subtask_beam_search.to(
device=device, dtype=getattr(torch, dtype)
).eval()
for st_subtask_scorers in st_subtask_scorers.values():
if isinstance(st_subtask_scorers, torch.nn.Module):
st_subtask_scorers.to(
device=device, dtype=getattr(torch, dtype)
).eval()
logging.info(f"st_subtask Beam_search: {st_subtask_beam_search}")
logging.info(f"st_subtask Decoding device={device}, dtype={dtype}")
self.st_subtask_beam_search = st_subtask_beam_search
# NOTE(jiatong): we here regard the st_subtask as target text
# but it may also be source text
if st_subtask_token_type is None:
st_subtask_token_type = train_args.tgt_token_type
elif st_subtask_token_type == "bpe":
if st_subtask_bpemodel is not None:
self.st_subtask_tokenizer = build_tokenizer(
token_type=st_subtask_token_type,
bpemodel=st_subtask_bpemodel,
)
else:
self.st_subtask_tokenizer = None
else:
self.st_subtask_tokenizer = build_tokenizer(
token_type=st_subtask_token_type
)
self.st_subtask_converter = TokenIDConverter(
token_list=self.model.tgt_token_list
)
else:
raise NotImplementedError(
"Not recognized s2st type of {}".format(self.s2st_type)
)
@torch.no_grad()
@typechecked
def __call__(
self,
src_speech: Union[torch.Tensor, np.ndarray],
src_speech_lengths: Union[torch.Tensor, np.ndarray, None] = None,
tgt_speech: Union[torch.Tensor, np.ndarray, None] = None,
tgt_speech_lengths: Union[torch.Tensor, np.ndarray, None] = None,
spembs: Union[torch.Tensor, np.ndarray, None] = None,
sids: Union[torch.Tensor, np.ndarray, None] = None,
lids: Union[torch.Tensor, np.ndarray, None] = None,
decode_conf: Optional[Dict[str, Any]] = None,
) -> Dict[str, torch.Tensor]:
"""Run speech-to-speech."""
# check inputs
if self.use_speech and tgt_speech is None:
raise RuntimeError("Missing required argument: 'tgt_speech'")
if self.use_sids and sids is None:
raise RuntimeError("Missing required argument: 'sids'")
if self.use_lids and lids is None:
raise RuntimeError("Missing required argument: 'lids'")
if self.use_spembs and spembs is None:
raise RuntimeError("Missing required argument: 'spembs'")
# Input as audio signal
if isinstance(src_speech, np.ndarray):
src_speech = torch.tensor(src_speech.astype(np.float32))
if src_speech_lengths is None:
src_speech_lengths = src_speech.new_full(
[1], dtype=torch.long, fill_value=src_speech.size(1)
)
# prepare batch
batch = dict(src_speech=src_speech, src_speech_lengths=src_speech_lengths)
if tgt_speech is not None:
batch.update(tgt_speech=tgt_speech)
batch.update(tgt_speech_lengths=tgt_speech_lengths)
if spembs is not None:
batch.update(spembs=spembs)
if sids is not None:
batch.update(sids=sids)
if lids is not None:
batch.update(lids=lids)
batch = to_device(batch, self.device)
# overwrite the decode configs if provided
cfg = self.decode_conf
if decode_conf is not None:
cfg = self.decode_conf.copy()
cfg.update(decode_conf)
# inference
if self.always_fix_seed:
set_all_random_seed(self.seed)
if self.s2st_type == "translatotron":
output_dict = self.model.inference(**batch, **cfg)
# apply vocoder (mel-to-wav)
if self.vocoder is not None:
if (
self.prefer_normalized_feats
or output_dict.get("feat_gen_denorm") is None
):
input_feat = output_dict["feat_gen"]
else:
input_feat = output_dict["feat_gen_denorm"]
wav = self.vocoder(input_feat)
output_dict.update(wav=wav)
elif self.s2st_type == "discrete_unit":
output_dict = {}
# Forward Encoder
enc, _ = self.model.encode(batch["src_speech"], batch["src_speech_lengths"])
nbest_hyps = self.beam_search(
x=enc[0], maxlenratio=self.maxlenratio, minlenratio=self.minlenratio
)
# TODO(jiatong): get nbest list instead of just best hyp
best_hyp = nbest_hyps[0] # just use the best
# remove sos/eos and get results
token_int = np.array(best_hyp.yseq[1:-1].tolist())
output_dict.update(feat_gen=torch.tensor(token_int))
logging.info("token_int: {}".format(token_int))
if self.vocoder is not None:
if len(token_int) == 0:
output_dict.update(wav=torch.tensor([0] * 100))
else:
input_discrete_unit = to_device(
torch.tensor(token_int).view(-1, 1), device=self.device
)
# NOTE(jiatong): we default take the last token
# in the token list as <unk>
# see scripts/feats/performa_kemans.sh for details
input_discrete_unit = input_discrete_unit[
input_discrete_unit != self.model.unit_vocab_size - 1
].view(-1, 1)
wav = self.vocoder(input_discrete_unit)
output_dict.update(wav=wav)
elif self.s2st_type == "unity":
output_dict = {}
# Forward Encoder
enc, _ = self.model.encode(batch["src_speech"], batch["src_speech_lengths"])
st_subtask_nbest_hyps = self.st_subtask_beam_search(
x=enc[0],
maxlenratio=self.st_subtask_maxlenratio,
minlenratio=self.st_subtask_minlenratio,
)
logging.info(
"st_subtask_token_int: {}".format(
st_subtask_nbest_hyps[0].yseq[1:-1].tolist()
)
)
st_subtask_result = []
for hyp in st_subtask_nbest_hyps:
assert isinstance(hyp, Hypothesis), type(hyp)
# remove sos/eos and get results
if isinstance(hyp.hs, List):
st_subtask_hs = torch.stack(hyp.hs)
else:
st_subtask_hs = hyp.hs
st_subtask_token_int = hyp.yseq[1:-1].tolist()
st_subtask_token = self.st_subtask_converter.ids2tokens(
st_subtask_token_int
)
if self.st_subtask_tokenizer is not None:
st_subtask_hyp_text = self.st_subtask_tokenizer.tokens2text(
st_subtask_token
)
else:
st_subtask_hyp_text = None
st_subtask_result.append(
(
st_subtask_hyp_text,
st_subtask_token,
st_subtask_token_int,
st_subtask_hs,
)
)
if self.st_subtask_tokenizer is not None:
(
st_subtask_hyp_text,
st_subtask_token,
st_subtask_token_int,
_,
) = st_subtask_result[0]
logging.info("st_subtask_text: {}".format(st_subtask_result[0][0]))
output_dict.update(st_subtask_text=st_subtask_hyp_text)
output_dict.update(st_subtask_token=st_subtask_token)
output_dict.update(st_subtask_token_int=st_subtask_token_int)
# encoder 1best st_subtask result
st_subtask_hs = st_subtask_result[0][-1].unsqueeze(0)
st_subtask_hs = to_device(st_subtask_hs, device=self.device)
st_subtask_hs_lengths = st_subtask_hs.new_full(
[1], dtype=torch.long, fill_value=st_subtask_hs.size(1)
)
md_enc, _, _ = self.model.unit_encoder(st_subtask_hs, st_subtask_hs_lengths)
nbest_hyps = self.beam_search(
md_enc[0],
maxlenratio=self.maxlenratio * 100,
minlenratio=self.minlenratio,
)
# TODO(jiatong): get nbest list instead of just best hyp
best_hyp = nbest_hyps[0] # just use the best
# remove sos/eos and get results
token_int = np.array(best_hyp.yseq[1:-1].tolist())
output_dict.update(feat_gen=torch.tensor(token_int))
logging.info("token_int: {}".format(token_int))
if self.vocoder is not None:
if len(token_int) == 0:
output_dict.update(wav=torch.tensor([0] * 100))
else:
input_discrete_unit = to_device(
torch.tensor(token_int).view(-1, 1), device=self.device
)
# NOTE(jiatong): we default take the last token
# in the token list as <unk>
# see scripts/feats/performa_kemans.sh for details
input_discrete_unit = input_discrete_unit[
input_discrete_unit != self.model.unit_vocab_size - 1
].view(-1, 1)
wav = self.vocoder(input_discrete_unit)
output_dict.update(wav=wav)
return output_dict
@property
def fs(self) -> Optional[int]:
"""Return sampling rate."""
if hasattr(self.vocoder, "fs"):
return self.vocoder.fs
elif hasattr(self.model.synthesizer, "fs"):
return self.model.synthesizer.fs
else:
return None
@property
def use_speech(self) -> bool:
"""Return speech is needed or not in the inference."""
return self.use_teacher_forcing
@property
def use_sids(self) -> bool:
"""Return sid is needed or not in the inference."""
return self.model.synthesizer.spks is not None
@property
def use_lids(self) -> bool:
"""Return sid is needed or not in the inference."""
return self.model.synthesizer.langs is not None
@property
def use_spembs(self) -> bool:
"""Return spemb is needed or not in the inference."""
return self.model.synthesizer.spk_embed_dim is not None
@staticmethod
def from_pretrained(
vocoder_tag: Optional[str] = None,
**kwargs: Optional[Any],
):
"""Build Text2Speech instance from the pretrained model.
Args:
vocoder_tag (Optional[str]): Vocoder tag of the pretrained vocoders.
Currently, the tags of parallel_wavegan are supported, which should
start with the prefix "parallel_wavegan/".
Returns:
Text2Speech: Text2Speech instance.
"""
if vocoder_tag is not None:
if vocoder_tag.startswith("parallel_wavegan/"):
try:
from parallel_wavegan.utils import download_pretrained_model
except ImportError:
logging.error(
"`parallel_wavegan` is not installed. "
"Please install via `pip install -U parallel_wavegan`."
)
raise
from parallel_wavegan import __version__
# NOTE(kan-bayashi): Filelock download is supported from 0.5.2
assert V(__version__) > V("0.5.1"), (
"Please install the latest parallel_wavegan "
"via `pip install -U parallel_wavegan`."
)
vocoder_tag = vocoder_tag.replace("parallel_wavegan/", "")
vocoder_file = download_pretrained_model(vocoder_tag)
vocoder_config = Path(vocoder_file).parent / "config.yml"
kwargs.update(vocoder_config=vocoder_config, vocoder_file=vocoder_file)
else:
raise ValueError(f"{vocoder_tag} is unsupported format.")
return Speech2Speech(**kwargs)
@typechecked
def inference(
output_dir: str,
batch_size: int,
dtype: str,
ngpu: int,
seed: int,
num_workers: int,
log_level: Union[int, str],
data_path_and_name_and_type: Sequence[Tuple[str, str, str]],
key_file: Optional[str],
train_config: Optional[str],
model_file: Optional[str],
threshold: float,
minlenratio: float,
maxlenratio: float,
st_subtask_minlenratio: float,
st_subtask_maxlenratio: float,
use_teacher_forcing: bool,
use_att_constraint: bool,
backward_window: int,
forward_window: int,
always_fix_seed: bool,
nbest: int,
normalize_length: bool,
beam_size: int,
penalty: float,
st_subtask_nbest: int,
st_subtask_beam_size: int,
st_subtask_penalty: float,
st_subtask_token_type: Optional[str],
st_subtask_bpemodel: Optional[str],
allow_variable_data_keys: bool,
vocoder_config: Optional[str],
vocoder_file: Optional[str],
vocoder_tag: Optional[str],
):
"""Run text-to-speech inference."""
if batch_size > 1:
raise NotImplementedError("batch decoding is not implemented")
if ngpu > 1:
raise NotImplementedError("only single GPU decoding is supported")
logging.basicConfig(
level=log_level,
format="%(asctime)s (%(module)s:%(lineno)d) %(levelname)s: %(message)s",
)
if ngpu >= 1:
device = "cuda"
else:
device = "cpu"
# 1. Set random-seed
set_all_random_seed(seed)
# 2. Build model
speech2speech_kwargs = dict(
train_config=train_config,
model_file=model_file,
threshold=threshold,
maxlenratio=maxlenratio,
minlenratio=minlenratio,
st_subtask_maxlenratio=st_subtask_maxlenratio,
st_subtask_minlenratio=st_subtask_minlenratio,
use_teacher_forcing=use_teacher_forcing,
use_att_constraint=use_att_constraint,
backward_window=backward_window,
forward_window=forward_window,
nbest=nbest,
normalize_length=normalize_length,
beam_size=beam_size,
penalty=penalty,
st_subtask_nbest=st_subtask_nbest,
st_subtask_beam_size=st_subtask_beam_size,
st_subtask_penalty=st_subtask_penalty,
st_subtask_token_type=st_subtask_token_type,
st_subtask_bpemodel=st_subtask_bpemodel,
vocoder_config=vocoder_config,
vocoder_file=vocoder_file,
dtype=dtype,
device=device,
seed=seed,
always_fix_seed=always_fix_seed,
)
speech2speech = Speech2Speech.from_pretrained(
vocoder_tag=vocoder_tag,
**speech2speech_kwargs,
)
# 3. Build data-iterator
loader = S2STTask.build_streaming_iterator(
data_path_and_name_and_type,
dtype=dtype,
batch_size=batch_size,
key_file=key_file,
num_workers=num_workers,
preprocess_fn=S2STTask.build_preprocess_fn(speech2speech.train_args, False),
collate_fn=S2STTask.build_collate_fn(speech2speech.train_args, False),
allow_variable_data_keys=allow_variable_data_keys,
inference=True,
)
# 6. Start for-loop
output_dir: Path = Path(output_dir)
(output_dir / "norm").mkdir(parents=True, exist_ok=True)
(output_dir / "denorm").mkdir(parents=True, exist_ok=True)
(output_dir / "speech_shape").mkdir(parents=True, exist_ok=True)
(output_dir / "wav").mkdir(parents=True, exist_ok=True)
(output_dir / "att_ws").mkdir(parents=True, exist_ok=True)
(output_dir / "probs").mkdir(parents=True, exist_ok=True)
(output_dir / "focus_rates").mkdir(parents=True, exist_ok=True)
# Lazy load to avoid the backend error
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
from matplotlib.ticker import MaxNLocator
with NpyScpWriter(
output_dir / "norm",
output_dir / "norm/feats.scp",
) as norm_writer, NpyScpWriter(
output_dir / "denorm", output_dir / "denorm/feats.scp"
) as denorm_writer, open(
output_dir / "speech_shape/speech_shape", "w"
) as shape_writer, open(
output_dir / "focus_rates/focus_rates", "w"
) as focus_rate_writer, DatadirWriter(
output_dir / "st_subtask"
) as st_subtask_wrtier:
for idx, (keys, batch) in enumerate(loader, 1):
assert isinstance(batch, dict), type(batch)
assert all(isinstance(s, str) for s in keys), keys
_bs = len(next(iter(batch.values())))
assert _bs == 1, _bs
# # Change to single sequence and remove *_length
# # because inference() requires 1-seq, not mini-batch.
# batch = {k: v for k, v in batch.items() if not k.endswith("_lengths")}
start_time = time.perf_counter()
output_dict = speech2speech(**batch)
key = keys[0]
insize = next(iter(batch.values())).size(0) + 1
# standard speech2mel model case
feat_gen = output_dict["feat_gen"]
logging.info(
"inference speed = {:.1f} frames / sec.".format(
int(feat_gen.size(0)) / (time.perf_counter() - start_time)
)
)
logging.info(f"{key} (size:{insize}->{feat_gen.size(0)})")
if feat_gen.size(0) == insize * maxlenratio:
logging.warning(f"output length reaches maximum length ({key}).")
norm_writer[key] = output_dict["feat_gen"].cpu().numpy()
shape_writer.write(
f"{key} " + ",".join(map(str, output_dict["feat_gen"].shape)) + "\n"
)
if output_dict.get("feat_gen_denorm") is not None:
denorm_writer[key] = output_dict["feat_gen_denorm"].cpu().numpy()
if output_dict.get("focus_rate") is not None:
focus_rate_writer.write(
f"{key} {float(output_dict['focus_rate']):.5f}\n"
)
if output_dict.get("att_w") is not None:
# Plot attention weight
att_w = output_dict["att_w"].cpu().numpy()
if att_w.ndim == 3:
logging.warning(
"Cannot plot attn due to dim mismatch (for multihead)"
)
output_dict["att_w"] = None
else:
if att_w.ndim == 2:
att_w = att_w[None][None]
elif att_w.ndim != 4:
raise RuntimeError(f"Must be 2 or 4 dimension: {att_w.ndim}")
w, h = plt.figaspect(att_w.shape[0] / att_w.shape[1])
fig = plt.Figure(
figsize=(
w * 1.3 * min(att_w.shape[0], 2.5),
h * 1.3 * min(att_w.shape[1], 2.5),
)
)
fig.suptitle(f"{key}")
axes = fig.subplots(att_w.shape[0], att_w.shape[1])
if len(att_w) == 1:
axes = [[axes]]
for ax, att_w in zip(axes, att_w):
for ax_, att_w_ in zip(ax, att_w):
ax_.imshow(att_w_.astype(np.float32), aspect="auto")
ax_.set_xlabel("Input")
ax_.set_ylabel("Output")
ax_.xaxis.set_major_locator(MaxNLocator(integer=True))
ax_.yaxis.set_major_locator(MaxNLocator(integer=True))
fig.set_tight_layout({"rect": [0, 0.03, 1, 0.95]})
fig.savefig(output_dir / f"att_ws/{key}.png")
fig.clf()
if output_dict.get("prob") is not None:
# Plot stop token prediction
prob = output_dict["prob"].cpu().numpy()
fig = plt.Figure()
ax = fig.add_subplot(1, 1, 1)
ax.plot(prob)
ax.set_title(f"{key}")
ax.set_xlabel("Output")
ax.set_ylabel("Stop probability")
ax.set_ylim(0, 1)
ax.grid(which="both")
fig.set_tight_layout(True)
fig.savefig(output_dir / f"probs/{key}.png")
fig.clf()
if output_dict.get("wav") is not None:
# TODO(kamo): Write scp
logging.info("wav {}".format(output_dict["wav"].size()))
sf.write(
f"{output_dir}/wav/{key}.wav",
output_dict["wav"].cpu().numpy(),
speech2speech.fs,
"PCM_16",
)
if output_dict.get("st_subtask_token") is not None:
st_subtask_wrtier["token"][key] = " ".join(
output_dict["st_subtask_token"]
)
st_subtask_wrtier["token_int"][key] == " ".join(
map(str, output_dict["st_subtask_token_int"])
)
if output_dict.get("st_subtask_text") is not None:
st_subtask_wrtier["text"][key] = output_dict["st_subtask_text"]
# remove files if those are not included in output dict
if output_dict.get("feat_gen") is None:
shutil.rmtree(output_dir / "norm")
if output_dict.get("feat_gen_denorm") is None:
shutil.rmtree(output_dir / "denorm")
if output_dict.get("att_w") is None:
shutil.rmtree(output_dir / "att_ws")
if output_dict.get("focus_rate") is None:
shutil.rmtree(output_dir / "focus_rates")
if output_dict.get("prob") is None:
shutil.rmtree(output_dir / "probs")
if output_dict.get("wav") is None:
shutil.rmtree(output_dir / "wav")
if output_dict.get("st_subtask_token") is not None:
shutil.rmtree(output_dict / "st_subtask")
def get_parser():
"""Get argument parser."""
parser = config_argparse.ArgumentParser(
description="S2ST inference",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
# Note(kamo): Use "_" instead of "-" as separator.
# "-" is confusing if written in yaml.
parser.add_argument(
"--log_level",
type=lambda x: x.upper(),
default="INFO",
choices=("CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG", "NOTSET"),
help="The verbose level of logging",
)
parser.add_argument(
"--output_dir",
type=str,
required=True,
help="The path of output directory",
)
parser.add_argument(
"--ngpu",
type=int,
default=0,
help="The number of gpus. 0 indicates CPU mode",
)
parser.add_argument(
"--seed",
type=int,
default=0,
help="Random seed",
)
parser.add_argument(
"--dtype",
default="float32",
choices=["float16", "float32", "float64"],
help="Data type",
)
parser.add_argument(
"--num_workers",
type=int,
default=1,
help="The number of workers used for DataLoader",
)
parser.add_argument(
"--batch_size",
type=int,
default=1,
help="The batch size for inference",
)
group = parser.add_argument_group("Input data related")
group.add_argument(
"--data_path_and_name_and_type",
type=str2triple_str,
required=True,
action="append",
)
group.add_argument(
"--key_file",
type=str_or_none,
)
group.add_argument(
"--allow_variable_data_keys",
type=str2bool,
default=False,
)
group = parser.add_argument_group("The model configuration related")
group.add_argument(
"--train_config",
type=str,
help="Training configuration file",
)
group.add_argument(
"--model_file",
type=str,
help="Model parameter file",
)
group = parser.add_argument_group("Decoding related")
group.add_argument(
"--maxlenratio",
type=float,
default=10.0,
help="Maximum length ratio in decoding",
)
group.add_argument(
"--minlenratio",
type=float,
default=0.0,
help="Minimum length ratio in decoding",
)
group.add_argument(
"--st_subtask_maxlenratio",
type=float,
default=1.5,
help="Maximum length ratio in decoding",
)
group.add_argument(
"--st_subtask_minlenratio",
type=float,
default=0.1,
help="Minimum length ratio in decoding",
)
group = parser.add_argument_group("Spectrogram-based generation related")
group.add_argument(
"--threshold",
type=float,
default=0.5,
help="Threshold value in decoding",
)
group.add_argument(
"--use_att_constraint",
type=str2bool,
default=False,
help="Whether to use attention constraint",
)
group.add_argument(
"--backward_window",
type=int,
default=1,
help="Backward window value in attention constraint",
)
group.add_argument(
"--forward_window",
type=int,
default=3,
help="Forward window value in attention constraint",
)
group.add_argument(
"--use_teacher_forcing",
type=str2bool,
default=False,
help="Whether to use teacher forcing",
)
group.add_argument(
"--always_fix_seed",
type=str2bool,
default=False,
help="Whether to always fix seed",
)
group = parser.add_argument_group("Beam-search (discrete unit/multi-pass) related")
group.add_argument("--nbest", type=int, default=1, help="Output N-best hypotheses")
group.add_argument("--beam_size", type=int, default=20, help="Beam size")
group.add_argument("--penalty", type=float, default=0.0, help="Insertion penalty")
group.add_argument(
"--st_subtask_nbest",
type=int,
default=1,
help="Output N-best hypotheses for st subtask",
)
group.add_argument(
"--st_subtask_beam_size", type=int, default=5, help="Beam size for st subtask"
)
group.add_argument(
"--st_subtask_penalty",
type=float,
default=0.0,
help="Insertion penalty for st subtask",
)
group = parser.add_argument_group("Vocoder related")
group.add_argument(
"--vocoder_config",
type=str_or_none,
help="Vocoder configuration file",
)
group.add_argument(
"--vocoder_file",
type=str_or_none,
help="Vocoder parameter file",
)
group.add_argument(
"--vocoder_tag",
type=str,
help="Pretrained vocoder tag. If specify this option, vocoder_config and "
"vocoder_file will be overwritten",
)
group = parser.add_argument_group("Text converter related")
group.add_argument(
"--st_subtask_token_type",
type=str_or_none,
default=None,
choices=["char", "bpe", None],
help="The token type for ST model. "
"If not given, refers from the training args",
)
group.add_argument(
"--st_subtask_bpemodel",
type=str_or_none,
default=None,
help="The model path of sentencepiece. "
"If not given, refers from the training args",
)
group.add_argument(
"--normalize_length",
type=str2bool,
default=False,
help="If true, best hypothesis is selected by length-normalized scores",
)
return parser
def main(cmd=None):
"""Run S2ST model inference."""
print(get_commandline_args(), file=sys.stderr)
parser = get_parser()
args = parser.parse_args(cmd)
kwargs = vars(args)
kwargs.pop("config", None)
inference(**kwargs)
if __name__ == "__main__":
main()