FunASR icon indicating copy to clipboard operation
FunASR copied to clipboard

A Fundamental End-to-End Speech Recognition Toolkit and Open Source SOTA Pretrained Models, Supporting Speech Recognition, Voice Activity Detection, Text Post-processing etc.

Results 555 FunASR issues
Sort by recently updated
recently updated
newest added

Notice: In order to resolve issues more efficiently, please raise issue following the template. (注意:为了更加高效率解决您遇到的问题,请按照模板提问,补充细节) ## ❓ Questions and Help ### Before asking: 1. search the issues. 2. search the...

question

版本:funasr:funasr-runtime-sdk-gpu-0.2.0 模式:2pass 启动方式: ``` nohup bash run_server.sh \ --download-model-dir /workspace/models \ --vad-dir damo/speech_fsmn_vad_zh-cn-16k-common-onnx \ --model-dir damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch \ --punc-dir damo/punc_ct-transformer_cn-en-common-vocab471067-large-onnx \ --lm-dir damo/speech_ngram_lm_zh-cn-ai-wesp-fst \ --itn-dir thuduj12/fst_itn_zh \ --certfile 0 \ --hotword...

question

# 1.首字返回会出现符号 使用给出的html观察发现在页面中有一个处理过程。 注释掉这一部分,服务器使用官网所给出的地址同样会出现标点。 ![Image](https://github.com/user-attachments/assets/50a18df3-3cd9-4910-80b2-4b6aed560924) ![Image](https://github.com/user-attachments/assets/d80be602-cbff-467b-83f4-2334fc7f5f91) --------------- # 想知道这样的原因,是因为模型识别的原因还是因为设置is_final=Ture导致的这个原因 ![Image](https://github.com/user-attachments/assets/4222919a-b1d9-4517-8a00-3e76052da4bd)

question

Notice: In order to resolve issues more efficiently, please raise issue following the template. (注意:为了更加高效率解决您遇到的问题,请按照模板提问,补充细节) ## 🐛 Bug ### To Reproduce Steps to reproduce the behavior (**always include the command...

bug

在调用代码时,当mp3时长超过3755秒时,就会报错:torch.OutOfMemoryError: CUDA out of memory. 代码如下: def load_model_to_asr(local_path): model = AutoModel( model=model_dir, vad_model=vad_model, punc_model=punc_model, spk_model=spk_model, vad_kwargs={"max_single_segment_time": 30000}, device="cuda:0", ) # en res = model.generate( #input=f"{model.model_path}/example/en.mp3", input=local_path, cache={}, language="auto", # "zn",...

question

Python版本下面的funasr_wss_server.py启动会出现没有循环事件的问题 Traceback (most recent call last): File "E:\project\FunASR-main\runtime\python\websocket\funasr_wss_server.py", line 337, in start_server = websockets.serve( File "E:\Miniconda3\envs\huiyi\lib\site-packages\websockets\asyncio\server.py", line 737, in __init__ self.server = Server( File "E:\Miniconda3\envs\huiyi\lib\site-packages\websockets\asyncio\server.py", line 281, in __init__ self.loop...

Notice: In order to resolve issues more efficiently, please raise issue following the template. (注意:为了更加高效率解决您遇到的问题,请按照模板提问,补充细节) ## ❓ Questions and Help ### Before asking: 1. search the issues. 2. search the...

question

有没男女声音检测的模型

question

When using Whisper-large-v3-turbo support. This error occurs, and I have confirmed that whisper is already installed.

question

您好,目前观察到 --lm-dir 参数仅支持 C++ 运行时。想请教: 1. 是否有计划在未来版本中支持 Python 运行时? 2. 如果暂时没有官方支持计划: - 能否提供一些技术指导,如何自行实现这个功能? - 需要修改哪些核心模块? - 有什么需要特别注意的地方? 感谢帮助! Hello, I've noticed that the --lm-dir parameter currently only supports C++ runtime....