mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
Rename 'res' in line 514 to avoid with naming conflict with line 365
This commit is contained in:
parent
bd352983c6
commit
d80ac2fd2d
@ -511,8 +511,8 @@ class AutoModel:
|
||||
sv_output = postprocess(all_segments, None, labels, spk_embedding.cpu())
|
||||
if self.spk_mode == "vad_segment": # recover sentence_list
|
||||
sentence_list = []
|
||||
for res, vadsegment in zip(restored_data, vadsegments):
|
||||
if "timestamp" not in res:
|
||||
for rest, vadsegment in zip(restored_data, vadsegments):
|
||||
if "timestamp" not in rest:
|
||||
logging.error(
|
||||
"Only 'iic/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch' \
|
||||
and 'iic/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch'\
|
||||
@ -522,8 +522,8 @@ class AutoModel:
|
||||
{
|
||||
"start": vadsegment[0],
|
||||
"end": vadsegment[1],
|
||||
"sentence": res["text"],
|
||||
"timestamp": res["timestamp"],
|
||||
"sentence": rest["text"],
|
||||
"timestamp": rest["timestamp"],
|
||||
}
|
||||
)
|
||||
elif self.spk_mode == "punc_segment":
|
||||
|
||||
Loading…
Reference in New Issue
Block a user