-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathspeech_to_text_buffered_infer_rnnt.py
More file actions
334 lines (278 loc) · 13.3 KB
/
Copy pathspeech_to_text_buffered_infer_rnnt.py
File metadata and controls
334 lines (278 loc) · 13.3 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
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# 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.
"""
Script to perform buffered inference using RNNT models.
Buffered inference is the primary form of audio transcription when the audio segment is longer than 20-30 seconds.
This is especially useful for models such as Conformers, which have quadratic time and memory scaling with
audio duration.
The difference between streaming and buffered inference is the chunk size (or the latency of inference).
Buffered inference will use large chunk sizes (5-10 seconds) + some additional buffer for context.
Streaming inference will use small chunk sizes (0.1 to 0.25 seconds) + some additional buffer for context.
Note, currently greedy_batched inferece for TDT is not supported. Decoding strategy will be set to greedy for
TDT automatically.
# Middle Token merge algorithm
python speech_to_text_buffered_infer_rnnt.py \
model_path=null \
pretrained_name=null \
audio_dir="<remove or path to folder of audio files>" \
dataset_manifest="<remove or path to manifest>" \
output_filename="<remove or specify output filename>" \
total_buffer_in_secs=4.0 \
chunk_len_in_secs=1.6 \
batch_size=32 \
clean_groundtruth_text=True \
langid='en'
# Longer Common Subsequence (LCS) Merge algorithm
python speech_to_text_buffered_infer_rnnt.py \
model_path=null \
pretrained_name=null \
audio_dir="<remove or path to folder of audio files>" \
dataset_manifest="<remove or path to manifest>" \
output_filename="<remove or specify output filename>" \
total_buffer_in_secs=4.0 \
chunk_len_in_secs=1.6 \
batch_size=32 \
merge_algo="lcs" \
lcs_alignment_dir=<OPTIONAL: Some path to store the LCS alignments>
# NOTE:
You can use `DEBUG=1 python speech_to_text_buffered_infer_rnnt.py ...` to print out the
predictions of the model, and ground-truth text if presents in manifest.
"""
import copy
import glob
import math
import os
from dataclasses import dataclass, field
from typing import Optional
import lightning.pytorch as pl
import torch
from omegaconf import OmegaConf, open_dict
from nemo.collections.asr.models import EncDecHybridRNNTCTCModel, EncDecRNNTModel
from nemo.collections.asr.parts.submodules.rnnt_decoding import RNNTDecodingConfig
from nemo.collections.asr.parts.utils.eval_utils import cal_write_wer
from nemo.collections.asr.parts.utils.streaming_utils import (
BatchedFrameASRRNNT,
BatchedFrameASRTDT,
LongestCommonSubsequenceBatchedFrameASRRNNT,
)
from nemo.collections.asr.parts.utils.transcribe_utils import (
compute_output_filename,
get_buffered_pred_feat_rnnt,
setup_model,
write_transcription,
)
from nemo.core.config import hydra_runner
from nemo.utils import logging
@dataclass
class TranscriptionConfig:
"""
Transcription Configuration for buffered inference.
"""
# Required configs
model_path: Optional[str] = None # Path to a .nemo file
pretrained_name: Optional[str] = None # Name of a pretrained model
audio_dir: Optional[str] = None # Path to a directory which contains audio files
dataset_manifest: Optional[str] = None # Path to dataset's JSON manifest
# General configs
output_filename: Optional[str] = None
batch_size: int = 32
num_workers: int = 0
append_pred: bool = False # Sets mode of work, if True it will add new field transcriptions.
pred_name_postfix: Optional[str] = None # If you need to use another model name, rather than standard one.
random_seed: Optional[int] = None # seed number going to be used in seed_everything()
# Set to True to output greedy timestamp information (only supported models)
compute_timestamps: bool = False
# Set to True to output language ID information
compute_langs: bool = False
# Chunked configs
chunk_len_in_secs: float = 1.6 # Chunk length in seconds
total_buffer_in_secs: float = 4.0 # Length of buffer (chunk + left and right padding) in seconds
# Set `cuda` to int to define CUDA device. If 'None', will look for CUDA
# device anyway, and do inference on CPU only if CUDA device is not found.
# If `cuda` is a negative number, inference will be on CPU only.
cuda: Optional[int] = None
matmul_precision: str = "high" # Literal["highest", "high", "medium"]
audio_type: str = "wav"
# Recompute model transcription, even if the output folder exists with scores.
overwrite_transcripts: bool = True
# Decoding strategy for RNNT models
decoding: RNNTDecodingConfig = field(default_factory=RNNTDecodingConfig)
# Decoding configs
max_steps_per_timestep: int = 5 #'Maximum number of tokens decoded per acoustic timestep'
stateful_decoding: bool = False # Whether to perform stateful decoding
# Merge algorithm for transducers
# choices=['middle', 'lcs', 'tdt'], choice of algorithm to apply during inference.
# if None, we use 'middle' for rnnt and 'tdt' for tdt.
merge_algo: Optional[str] = None
lcs_alignment_dir: Optional[str] = None # Path to a directory to store LCS algo alignments
# Config for word / character error rate calculation
calculate_wer: bool = True
clean_groundtruth_text: bool = False
langid: str = "en" # specify this for convert_num_to_words step in groundtruth cleaning
use_cer: bool = False
@hydra_runner(config_name="TranscriptionConfig", schema=TranscriptionConfig)
def main(cfg: TranscriptionConfig) -> TranscriptionConfig:
"""
Transcribes the input audio and can be used to infer long audio files by chunking
them into smaller segments.
Currently, greedy_batched inferece for TDT is not supported. Decoding strategy
will be set to greedy for TDT automatically.
"""
logging.warning(
"This script is deprecated. Consider using the new buffered inference script "
"`examples/asr/asr_chunked_inference/rnnt/speech_to_text_streaming_infer_rnnt.py`"
)
logging.info(f'Hydra config: {OmegaConf.to_yaml(cfg)}')
torch.set_grad_enabled(False)
torch.set_float32_matmul_precision(cfg.matmul_precision)
cfg = OmegaConf.structured(cfg)
if cfg.random_seed:
pl.seed_everything(cfg.random_seed)
if cfg.model_path is None and cfg.pretrained_name is None:
raise ValueError("Both cfg.model_path and cfg.pretrained_name cannot be None!")
if cfg.audio_dir is None and cfg.dataset_manifest is None:
raise ValueError("Both cfg.audio_dir and cfg.dataset_manifest cannot be None!")
filepaths = None
manifest = cfg.dataset_manifest
if cfg.audio_dir is not None:
filepaths = list(glob.glob(os.path.join(cfg.audio_dir, f"**/*.{cfg.audio_type}"), recursive=True))
manifest = None # ignore dataset_manifest if audio_dir and dataset_manifest both presents
# setup GPU
if cfg.cuda is None:
if torch.cuda.is_available():
device = [0] # use 0th CUDA device
accelerator = 'gpu'
else:
device = 1
accelerator = 'cpu'
else:
device = [cfg.cuda]
accelerator = 'gpu'
map_location = torch.device('cuda:{}'.format(device[0]) if accelerator == 'gpu' else 'cpu')
logging.info(f"Inference will be done on device : {device}")
asr_model, model_name = setup_model(cfg, map_location)
model_cfg = copy.deepcopy(asr_model._cfg)
OmegaConf.set_struct(model_cfg.preprocessor, False)
# some changes for streaming scenario
model_cfg.preprocessor.dither = 0.0
model_cfg.preprocessor.pad_to = 0
if model_cfg.preprocessor.normalize != "per_feature":
logging.error("Only EncDecRNNTBPEModel models trained with per_feature normalization are supported currently")
# Disable config overwriting
OmegaConf.set_struct(model_cfg.preprocessor, True)
# Compute output filename
cfg = compute_output_filename(cfg, model_name)
# if transcripts should not be overwritten, and already exists, skip re-transcription step and return
if not cfg.overwrite_transcripts and os.path.exists(cfg.output_filename):
logging.info(
f"Previous transcripts found at {cfg.output_filename}, and flag `overwrite_transcripts`"
f"is {cfg.overwrite_transcripts}. Returning without re-transcribing text."
)
return cfg
asr_model.freeze()
asr_model = asr_model.to(asr_model.device)
model_is_tdt = hasattr(asr_model.loss, '_loss') and type(asr_model.loss._loss).__name__ == 'TDTLossNumba'
if cfg.merge_algo is None:
cfg.merge_algo = "tdt" if model_is_tdt else "middle"
logging.info(f"merge_algo not specified. We use the default algorithm (middle for rnnt and tdt for tdt).")
if model_is_tdt and cfg.merge_algo != "tdt":
raise ValueError("merge_algo must be 'tdt' for TDT models")
# Change Decoding Config
with open_dict(cfg.decoding):
if cfg.stateful_decoding or cfg.merge_algo == 'tdt':
cfg.decoding.strategy = "greedy"
else:
cfg.decoding.strategy = "greedy_batch"
cfg.decoding.preserve_alignments = True # required to compute the middle token for transducers.
cfg.decoding.fused_batch_size = -1 # temporarily stop fused batch during inference.
cfg.decoding.beam.return_best_hypothesis = True # return and write the best hypothsis only
# Setup decoding strategy
if hasattr(asr_model, 'change_decoding_strategy'):
if not isinstance(asr_model, EncDecRNNTModel) and not isinstance(asr_model, EncDecHybridRNNTCTCModel):
raise ValueError("The script supports rnnt model and hybrid model with rnnt decodng!")
else:
# rnnt model
if isinstance(asr_model, EncDecRNNTModel):
asr_model.change_decoding_strategy(cfg.decoding)
# hybrid ctc rnnt model with decoder_type = rnnt
if hasattr(asr_model, 'cur_decoder'):
asr_model.change_decoding_strategy(cfg.decoding, decoder_type='rnnt')
feature_stride = model_cfg.preprocessor['window_stride']
model_stride_in_secs = feature_stride * asr_model.encoder.subsampling_factor
total_buffer = cfg.total_buffer_in_secs
chunk_len = float(cfg.chunk_len_in_secs)
tokens_per_chunk = math.ceil(chunk_len / model_stride_in_secs)
mid_delay = math.ceil((chunk_len + (total_buffer - chunk_len) / 2) / model_stride_in_secs)
logging.info(f"tokens_per_chunk is {tokens_per_chunk}, mid_delay is {mid_delay}")
if cfg.merge_algo == 'middle':
frame_asr = BatchedFrameASRRNNT(
asr_model=asr_model,
frame_len=chunk_len,
total_buffer=cfg.total_buffer_in_secs,
batch_size=cfg.batch_size,
max_steps_per_timestep=cfg.max_steps_per_timestep,
stateful_decoding=cfg.stateful_decoding,
)
elif cfg.merge_algo == 'lcs':
frame_asr = LongestCommonSubsequenceBatchedFrameASRRNNT(
asr_model=asr_model,
frame_len=chunk_len,
total_buffer=cfg.total_buffer_in_secs,
batch_size=cfg.batch_size,
max_steps_per_timestep=cfg.max_steps_per_timestep,
stateful_decoding=cfg.stateful_decoding,
alignment_basepath=cfg.lcs_alignment_dir,
)
# Set the LCS algorithm delay.
frame_asr.lcs_delay = math.floor(((total_buffer - chunk_len)) / model_stride_in_secs)
elif cfg.merge_algo == 'tdt':
frame_asr = BatchedFrameASRTDT(
asr_model=asr_model,
frame_len=chunk_len,
total_buffer=cfg.total_buffer_in_secs,
batch_size=cfg.batch_size,
max_steps_per_timestep=cfg.max_steps_per_timestep,
stateful_decoding=cfg.stateful_decoding,
)
else:
raise ValueError("Invalid choice of merge algorithm for transducer buffered inference.")
hyps = get_buffered_pred_feat_rnnt(
asr=frame_asr,
tokens_per_chunk=tokens_per_chunk,
delay=mid_delay,
model_stride_in_secs=model_stride_in_secs,
batch_size=cfg.batch_size,
manifest=manifest,
filepaths=filepaths,
accelerator=accelerator,
)
output_filename, pred_text_attr_name = write_transcription(
hyps, cfg, model_name, filepaths=filepaths, compute_langs=False, timestamps=False
)
logging.info(f"Finished writing predictions to {output_filename}!")
if cfg.calculate_wer:
output_manifest_w_wer, total_res, _ = cal_write_wer(
pred_manifest=output_filename,
pred_text_attr_name=pred_text_attr_name,
clean_groundtruth_text=cfg.clean_groundtruth_text,
langid=cfg.langid,
use_cer=cfg.use_cer,
output_filename=None,
)
if output_manifest_w_wer:
logging.info(f"Writing prediction and error rate of each sample to {output_manifest_w_wer}!")
logging.info(f"{total_res}")
return cfg
if __name__ == '__main__':
main() # noqa pylint: disable=no-value-for-parameter