python找不到对象怎么办_Python ImportError:找不到'nvcuda.dll'

在尝试使用Tensorflow进行对象识别时遇到错误:ImportError:找不到'nvcuda.dll'。该错误通常是由于缺少CUDA驱动或者环境变量配置不正确导致的。解决方案包括安装CUDA驱动,并确保'nvcuda.dll'位于系统路径下的'C:WindowsSystem32'或其他指定目录。
摘要由CSDN通过智能技术生成

我只想使用tensorflow从inception预训练模型进行对象识别&我使用以下代码:from __future__ import absolute_import

from __future__ import division

from __future__ import print_function

import argparse

import os.path

import re

import sys

import tarfile

import numpy as np

from six.moves import urllib

import tensorflow as tf

FLAGS = None

# pylint: disable=line-too-long

DATA_URL = 'http://download.tensorflow.org/models/image/imagenet/inception-2015-12-05.tgz'

# pylint: enable=line-too-long

class NodeLookup(object):

def __init__(self,

label_lookup_path=None,

uid_lookup_path=None):

if not label_lookup_path:

label_lookup_path = os.path.join(

FLAGS.model_dir, 'imagenet_2012_challenge_label_map_proto.pbtxt')

if not uid_lookup_path:

uid_lookup_path = os.path.join(

FLAGS.model_dir, 'imagenet_synset_to_human_label_map.txt')

self.node_lookup = self.load(label_lookup_path, uid_lookup_path)

def load(self, label_lookup_path, uid_lookup_path):

if not tf.gfile.Exists(uid_lookup_path):

tf.logging.fatal('File does not exist %s', uid_lookup_path)

if not tf.gfile.Exists(label_lookup_path):

tf.logging.fatal('File does not exist %s', label_lookup_path)

# Loads mapping from string UID to human-readable string

proto_as_ascii_lines = tf.gfile.GFile(uid_lookup_path)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值