Model creates duplicate transcriptions
#2
by
ceyxasm
- opened
import nemo.collections.asr as nemo_asr
import sys
MODEL_PATH = '/home/bubu/attention-tag/customs/asr-onprem/parakeet-tdt_ctc-110m.nemo'
asr_model = nemo_asr.models.ASRModel.restore_from(MODEL_PATH)
transcriptions = asr_model.transcribe([sys.argv[1]])
With a single audio wav file, transcriptions consist of a tuple consisting of two transcriptions which are duplicate of each other.