摘要:
在一个类中定义__call__方法,使得它的实例能够像函数一样接受参数,并返回结果。 点击查看代码 class MyClass: def __init__(self): self.x = 0 def __call__(self, a, b): self.x = a + b return self.x 阅读全文
摘要:
只需要转化模型即可。(nn.module) encoder decoder 检测模型正确性: import onnx onnx_model = onnx.load("/home/mgtv/test_whisper/onnx/medium/whisper_decoder.onnx") onnx.che 阅读全文
摘要:
调试Whisper时,不管执行什么命令都会报错RuntimeError: CUDA error: device-side assert triggered 问题 这个错误通常意味着CUDA运行时检测到了某些问题,例如尝试访问不存在的内存地址或尝试在CUDA内核中进行非法操作等。可能的原因包括: CU 阅读全文
摘要:
错误描述:numpy版本太高,不支持np.object, np.bool, np.int,需要对应改成np.object_, np.bool_, np.int_或object、np.int32, np.int64 或者可以 在报错前patch/ monkey patch import numpy a 阅读全文
摘要:
模型理解 model.py ModelDimensions的含义如下: n_mels:Mel频率的数量,用于音频处理,通常设置为80。 n_audio_ctx:输入音频的上下文大小,即处理音频的窗口大小,通常设置为1500。 即音频帧的数量,指定了模型在处理音频时要考虑多少帧的上下文。在每个时间步, 阅读全文
摘要:
Python中的**语法用于解压缩字典,并将其key-value对作为关键字参数传递给函数或构造函数。 点击查看代码 my_dict = {"arg1": 10, "arg2": "hello", "arg3": True} my_function(**my_dict) # 等价于 my_funct 阅读全文
摘要:
ffmpeg -ss 00:01:00 -i /mnt/cluster/lynch/576460752303462911.mp4 -t 00:05:00 -c copy /home/mgtv/test_whisper/test4.mp4 ffmpeg -i 'xxx/test2.mp4' -acod 阅读全文
摘要:
运行: 参照:markdown 问题: CMake Error: Error: generator : Ninja Ninja:提高构建速度 wenet/runtime/libtorch/fc_base/libtorch-src/lib/libtorch_cuda_cpp.so: undefined 阅读全文
摘要:
旧版本:3.15 新版本:3.22.1 下载新版本 https://cmake.org/files/ 手动下载或使用wget wget https://cmake.org/files/v3.22/cmake-3.22.1.tar.gz 解压 tar -xvzf cmake-3.22.1.tar.gz 阅读全文