YangZhuo

Results 2 issues of YangZhuo

无法返回简中推理结果,使用以下代码: ```import time import mindspore as ms # 指定设备 ms.set_context(device_target="Ascend", device_id=1) from mindnlp.transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline model_id = "openai/whisper-tiny" model = AutoModelForSpeechSeq2Seq.from_pretrained( model_id, ms_dtype=ms.float16, low_cpu_mem_usage=True, use_safetensors=True, ) processor =...

bug

**Describe the bug** When streaming video without audio to SRS via the RTMP protocol, the resulting HLS playback anomalously contains audio information, causing compatibility issues with some players. By adding...

TransByAI