- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 TensorFlow 初学者,在尝试加载已保存的模型时遇到以下问题。
我正在关注本教程:https://youtu.be/6g4O5UOH304?t=7532
在视频中的那个点运行代码时,我遇到了这个错误:
2020-02-03 08:59:24.589058: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'nvcuda.dll'; dlerror: nvcuda.dll not found
2020-02-03 08:59:24.589234: E tensorflow/stream_executor/cuda/cuda_driver.cc:351] failed call to cuInit: UNKNOWN ERROR (303)
Traceback (most recent call last):
File "C:/Users/btu/PycharmProjects/Chatbot/venv/testMovieReviews.py", line 53, in <module>
encode = review_encode(nline)
File "C:/Users/btu/PycharmProjects/Chatbot/venv/testMovieReviews.py", line 41, in review_encode
encoded.append(word_index[word])
KeyError: 'Of'
最佳答案
我在我的电脑(win 10)上也遇到了和你一样的错误,但我的程序可以继续运行。
所以,你的问题不是“调用cuInit失败:未知错误(303)”,看来你的代码有一些KeyError。您应该首先检查您的代码。
简单的例子:
tf> python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
2020-04-29 09:22:01.959213: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'cudart64_101.dll'; dlerror: cudart64_101.dll not found
2020-04-29 09:22:01.962833: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
2020-04-29 09:22:09.075191: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'nvcuda.dll'; dlerror: nvcuda.dll not found
2020-04-29 09:22:09.079202: E tensorflow/stream_executor/cuda/cuda_driver.cc:351] failed call to cuInit: UNKNOWN ERROR (303)
.....
tf.Tensor(-101.936615, shape=(), dtype=float32) <=== This is the output and ignore the previous error info
关于python - TensorFlow 2.1 调用 cuInit : UNKNOWN ERROR (303) 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60041399/
我目前正在编写一个应用程序来流式传输 openGL 内容,因此将 CUDA 与 NVidias NVenc-API 结合使用。我注意到调用 cuInit(0) - 根据许多教程,这应该作为初始化 Cu
我的测试: import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session()` 错误: c:\
我正在使用动态语言 (Clojure) 以使用 JCuda 的交互式开发方式创建 CUDA 上下文。通常我会调用一个初始化器,其中包含对 jcuda.driver.JCudaDriver/cuInit
我安装了 CUDA 然后尝试了以下操作: In [1]: import pycuda.driver as cuda In [2]: cuda.init() ----------------------
我的程序中有以下代码可以使用纯驱动程序 API, cuInit(0) 并且 Nvidia Visual Profiler 8.0 没有在时间线图中显示它。 我可以偶尔调用它一次,还是像 pc 唤醒一样
我一直致力于让依赖于 TensorFlow 的应用程序作为带有 nvidia-docker 的 docker 容器工作。我已经在 tensorflow/tensorflow:latest-gpu-py
我是 TensorFlow 初学者,在尝试加载已保存的模型时遇到以下问题。 我正在关注本教程:https://youtu.be/6g4O5UOH304?t=7532 在视频中的那个点运行代码时,我遇到
我在 python 上使用 tensorflow 训练了一个没有问题的模型。我现在正尝试将此模型的推理集成到预先存在的支持 OpenGL 的软件中。但是,我在 cuInit 期间得到了一个 CUDA_
我的测试 import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() 我的错误 2019
我是一名优秀的程序员,十分优秀!