alphacep / vosk-server

WebSocket, gRPC and WebRTC speech recognition server based on Vosk and Kaldi libraries
Apache License 2.0
896 stars 243 forks source link

Loading model all the time #105

Closed ben-8878 closed 3 years ago

ben-8878 commented 3 years ago

I add a punctation predict model after asr model,loading asr model succesfully but loading the punctation model all the time. I load the punctation model successfull and alone.

`model = Model(vosk_model_path)
predict, word_vocabulary, punctuation_vocabulary, reverse_punctuation_vocabulary = load_model(os.path.join(vosk_model_path,"seg.pcl"))
`