20240202在WIN10下使用fast whisper缺少cudnn_ops_infer64_8.dll

20240202在WIN10下使用fast whisper缺少cudnn_ops_infer64_8.dll
2024/2/2 10:48


https://blog.csdn.net/feinifi/article/details/132548556
Could not locate cudnn_ops_infer64_8.dll. Please make sure it is in your library path!解决办法
安装cuDNN


c:\faster-whisper-webui>python cli.py --model large-v2 --vad silero-vad --language Japanese --output_dir c:\faster-whisper-webui\whisper_model c:\faster-whisper-webui\Downloads\test.mp4
Using faster-whisper for Whisper
[Auto parallel] Using GPU devices None and 8 CPU cores for VAD/transcription.
Creating whisper container for faster-whisper
Using parallel devices: None
Created Silerio model
Parallel VAD: Executing chunk from 0 to 74.072 on CPU device 0
Loaded Silerio model from cache.
Getting timestamps from audio file: c:\faster-whisper-webui\Downloads\test.mp4, start: 0, duration: 74.072
Processing VAD in chunk from 00:00.000 to 01:14.072
VAD processing took 6.546280500013381 seconds
Transcribing non-speech:
[{'end': 75.0716875, 'start': 0.0}]
Parallel VAD processing took 15.04769109992776 seconds
Device None (index 0) has 1 segments
(get_merged_timestamps) Using override timestamps of size 1
Processing timestamps:
[{'end': 75.0716875, 'start': 0.0}]
Running whisper from  00:00.000  to  01:15.072 , duration:  75.0716875 expanded:  0 prompt:  None language:  None
Loading faster whisper model large-v2 for device None
WARNING: fp16 option is ignored by faster-whisper - use compute_type instead.
Could not load library cudnn_ops_infer64_8.dll. Error code 126
Please make sure cudnn_ops_infer64_8.dll is in your library path!


百度:cudnn_ops_infer64_8.dll
https://blog.csdn.net/qq_30150579/article/details/128499694
Windows10下NVIDA CUDA,cuDNN和TensorRT安装教程


三. 安装cuDNN
去官网下载CUDNN,同前,注意版本号。下载地址:https://developer.nvidia.com/rdp/cudnn-download
【需要注册】
https://developer.nvidia.com/rdp/cudnn-download
cuDNN Download
NVIDIA cuDNN is a GPU-accelerated library of primitives for deep neural networks.

 I Agree To the Terms of the cuDNN Software License Agreement

Ethical AI
NVIDIA’s platforms and application frameworks enable developers to build a wide array of AI applications. Consider potential algorithmic bias when choosing or creating the models being deployed. Work with the model’s developer to ensure that it meets the requirements for the relevant industry and use case; that the necessary instruction and documentation are provided to understand error rates, confidence intervals, and results; and that the model is being used under the conditions and in the manner intended.

参考资料:
https://blog.csdn.net/qq_33959661/article/details/112971532
安装cudnn之后,tf训练报错缺少libcudnn_ops_infer.so.8解决方法


https://blog.csdn.net/Kelen99/article/details/121883743
Could not load library cudnn_ops_infer64_8.dll. Error code 126


https://www.yii666.com/blog/397588.html
记录-安装cuda与cudnn 及对应版本的tensorflow|pytorch tensorflow出现报错:Could not load library cudnn_cnn_infer64_8.dll. Error code 126


https://mp.weixin.qq.com/s?__biz=MzI1ODEzMDQ3OQ==&mid=2247487745&idx=1&sn=c8a083e688d2a8cdb0699a3f8ba81b1f&chksm=ea0d8641dd7a0f5784de711bb12f8c1788e70b30b2fe6ee39e158ed0ab9103db714a8e07124f&scene=27
Windows 上基于 TensorRT 的 YOLOV6 部署保姆级教程

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/664079.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Libvirt 迁移标志详解

可参考:https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainMigrateFlags 在虚拟化环境中,迁移是一项重要的功能,Libvirt 提供了一系列标志,用于控制迁移过程中的不同行为。以下是 virDomainMigrateFlags 枚举的详细…

小程序中picker多列选择器

需求&#xff1a;实现类似省市联动的效果&#xff0c;选择第一列后&#xff0c;第二列数据变化 html部分: <view class"section"><view>多列选择器</view><picker mode"multiSelector" bindchange"bindMultiPickerChange"…

Unity_ShaderGraph示例项目启动

Unity_ShaderGraph示例项目启动 大前提不变:URP模板,Unity2023.1.19使用 Shader Graph - Unity 手册Shader Graph 是一个工具,能够让您直观地构建着色器。您可以在图形框架中创建并连接节点,而不必手写代码。Shader Graph 提供了能反映所作更改的即时反馈,对于不熟悉着色…

flutter抓包绕过

lutter的证书校验 起因&#xff1a; 最近工作上让做个app的复测&#xff0c;把apk发我后&#xff0c;开始尝试挂代理抓包&#xff0c;结果发现抓不到 为是证书没弄好&#xff0c;想着前几天不是刚导入了吗&#xff08;雾&#xff09;。又重新导入了下还是不行。然后各种lsp模…

【TCP】四次挥手(终止连接)

前言 TCP&#xff08;传输控制协议&#xff09;是互联网协议&#xff08;IP&#xff09;中的一种重要传输层协议&#xff0c;用于在通信的计算机之间建立可靠的、有序的和错误校验的数据传输。在TCP连接中&#xff0c;数据传输是双向的&#xff0c;因此需要一种机制来开始和结…

【数据结构】单向链表实现 超详细

目录 一. 单链表的实现 1.准备工作及其注意事项 1.1 先创建三个文件 1.2 注意事项&#xff1a;帮助高效记忆和理解 2.链表的基本功能接口 2.0 创建一个 链表 2.1 链表的打印 3.链表的创建新节点接口 4.链表的节点插入功能接口 4.1 尾插接口 4.2 头插接口 4.3 指定位…

【无标题】yarn报错 “https://registry.npm.taobao.org/...: certificate has expired“如何处理

前言 今天在jenkins打包项目时yarn打包报错&#xff0c;查看log发现npm淘宝镜像报错 原因 在 1 月 22 日&#xff0c;淘宝原镜像域名&#xff08;registry.npm.taobao.org&#xff09;的 HTTPS 证书正式到期。如果想要继续使用&#xff0c;需要将 npm 源切换到新的源&#…

Dockerfile构建Nginx访问说明

Dockerfile使用情况 20210903 Dockerfile ,Nginx 参考地址&#xff1a;https://yeasy.gitbook.io/docker_practice/image/build 编写简单Dockerfile 在一个空白目录中&#xff0c;建立一个文本文件&#xff0c;并命名为 Dockerfile&#xff1a; $ mkdir mynginx $ cd myngin…

跟着cherno手搓游戏引擎【18】抽象Shader、项目小修改

抽象&#xff1a; Shader.h: #pragma once #include <string>namespace YOTO {class Shader {public:virtual~Shader()default;virtual void Bind()const0;virtual void UnBind()const0;static Shader* Create(const std::string& vertexSrc, const std::string&am…

window 安装 jenkins 编写脚本

set JAVA_HOMED:\RuanJianKaiFa\jdk\jdk11 set CLASSPATH.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOMe%\lib\tools.jar; set Path%JAVA_HOME%\bin; java -jar jenkins.war 下载jenkins.war包&#xff0c;编写一个txt文档&#xff0c;把脚本复制进去&#xff0c;修改文件后缀为.bat文件…

MySQL EXPLAIN查询执行计划

EXPLAIN 可用来查看SQL执行计划&#xff0c;常用来分析调试SQL语句&#xff0c;来使SQL语句达到更好的性能。 1 前置知识 在学习EXPLAIN 之前&#xff0c;有些基础知识需要清楚。 1.1 JSON类型 MySQL 5.7及以上版本支持JSON数据类型。可以将数组存为JSON格式的字符串&#…

【Arduino】LGT8F328 UNO R3编译上传

LGT8F328 UNO R3编译上传 示例代码 这是一段示例代码&#xff0c;将示例代码编译打包上传到LGT8F328 UNO R3开发板。 #include <Servo.h> Servo myservo; int pos 0; void setup() {// put your setup code here, to run once:Serial.begin(9600);Serial.println(&qu…

uni-app切换页面刷新,返回上一页刷新(onShow钩子函数的使用)

切换页面刷新&#xff1a;通过onShow()便可实现 返回上一页通过uni.navigateBack({delta: 1});实现 以返回上一页刷新为例 从B页面返回上一页到A页面&#xff0c;在A页面写入方法refreshHandler() //a.vue methods: { // 执行刷新逻辑refreshHandler() {uni.request({ur…

NoSQL数据库管理系统和模型的比较

介绍 当大多数人想到数据库时&#xff0c;他们通常会想到传统的关系数据库模型&#xff0c;其中包括由行和列组成的表。虽然关系数据库管理系统仍然处理着互联网上的大部分数据&#xff0c;但近年来&#xff0c;随着开发人员寻求绕过关系模型的限制&#xff0c;替代数据模型变…

本体匹配方法概述

目录 前言1 基于术语匹配的方法1.1 字符串匹配1.2 语言方法 2 基于虚拟文档的方法3 基于结构的匹配方法3.1 结构信息利用3.2 Anchor-prompt方法 4 大型本体匹配4.1 本体划分4.2 匹配分块4.3 实体间映射 结语 前言 本文将深入探讨本体匹配的不同方法&#xff0c;从基于术语匹配…

springboot项目以jar包运行时,读取jar包内的静态文件

springboot项目以jar包运行时&#xff0c;读取jar包内的静态文件 java

从编程中理解:大脑的成瘾行为

成瘾行为在心理学中被定义为个体对某种物质或行为产生强烈的心理和生理依赖,无法自控地重复该行为。从编程的角度来看,我们可以将大脑的成瘾行为模型化为一种反馈循环系统,其中包含激励、奖赏、强化学习等机制。以下是一个用Unity C#代码模拟金庸武侠小说中人物成瘾行为的例…

Git指令大全:如何同步github代码,12个你必须了解的最常见Git命令!

&#x1f4e5; 准备好合作&#xff01;克隆仓库&#xff1a; git init - 初始化仓库。git clone [仓库URL] - 克隆仓库。 &#x1f575;️‍♂️ 监控变更&#xff1a; git status - 检查状态。git add [文件(们)] - 添加变更。git commit -m "[消息]" - 提交变更…

神经网络和深度学习吴恩达coursera笔记

Deep Learning 文章目录 Deep LearningBasicLogistic Regressionsome signLoss functioncost functionGradient DescentComputation Grapha VectorizationvectorizedImplementing:broadcasting Shallow Neural NetworkRepresentationcomputing:Vectorize:Activation functionsG…

DES加密原理

DES加密算法综合运用了置换、代替、代数等多种密码技术&#xff0c;具有设计精 巧、实现容易、使用方便等特点。DES加密算法的明文、密文和密钥的分组长度 都是64位&#xff0c;详细的DES加密算法结构如图6-10所示。 图6-10 DES加密算法结构图 DES加密过程如下所示&#xff…