TBXark

Results 12 issues of TBXark

proto3 supports using optional fields to define optional fields, so `google/protobuf/wrappers.prot`o does not need to be used. This will make the generated code more concise. The `EnableOptionLabel` can enable this...

**Describe the bug** 使用 `FunAudioLLM/Fun-CosyVoice3-0.5B-2512` 模型通过最新代码和 `cosyvoice.inference_zero_shot` 方法进行声音克隆时,大概率出现胡言乱语输出,有时会正常播报。疑问是这种现象属于代码使用方式有误,还是模型存在幻觉或泛化问题? **To Reproduce** 调用片段: ```python results = cosyvoice.inference_zero_shot( text, prompt_text, prompt_wav_path, stream=False, ) for j in results: wav = j["tts_speech"] if wav.dim() ==...