ModuleNotFoundError:没有名为“推理”的模块
Posted
技术标签:
【中文标题】ModuleNotFoundError:没有名为“推理”的模块【英文标题】:ModuleNotFoundError: No module named 'inference' 【发布时间】:2020-01-02 06:52:59 【问题描述】:ModuleNotFoundError:没有名为inference
的模块
我尝试了pip install inference,安装成功,但还是出现同样的错误。
import tensorflow as tf
import inference
image_size = 128
MODEL_SAVE_PATH = "model/"
MODEL_NAME = "model.ckpt"
image_data = tf.gfile.FastGFile("./data/test/d.png", 'rb').read()
decode_image = tf.image.decode_png(image_data, 1)
decode_image = tf.image.convert_image_dtype(decode_image, tf.float32)
image = tf.reshape(decode_image, [-1, image_size, image_size, 1])
test_logit = inference.inference(image, train=False, regularizer=None)
probabilities = tf.nn.softmax(test_logit)
correct_prediction = tf.argmax(test_logit, 1)
saver = tf.train.Saver()
with tf.Session() as sess:
sess.run((tf.global_variables_initializer(),
tf.local_variables_initializer()))
ckpt = tf.train.get_checkpoint_state(MODEL_SAVE_PATH)
if ckpt and ckpt.model_checkpoint_path:
saver.restore(sess, ckpt.model_checkpoint_path)
print("Loading the model successfully:" + ckpt.model_checkpoint_path)
global_step = ckpt.model_checkpoint_path.split('/')[-1].split('-')[-1]
probabilities, label = sess.run([probabilities, correct_prediction])
probability = probabilities[0][label]
print("After %s training step(s),validation label = %d, has %g probability" % (global_step, label, probability))
else:
print("Model loading failed!" + ckpt.model_checkpoint_path)
ModuleNotFoundError:没有模块名为inference
【问题讨论】:
你做了 pip install inference 吗?还是您尝试过 pip3 安装推断? 你用的是python 2还是python 3? 他在 python 3 上考虑到打印有括号@drum 编辑:没关系这实际上不是确定性的,因为它在 2.7 中的技术上是可选的 【参考方案1】:-
你可以试试
pip install inference-tools
。
我认为您需要的是自定义inference.py
文件。
参考:
inference_Sincky-CSDN
【讨论】:
【参考方案2】:查看https://pypi.org/project/inference/0.1/#files的包文件,安装包似乎没有使用该模块名称的任何实际源代码。
【讨论】:
以上是关于ModuleNotFoundError:没有名为“推理”的模块的主要内容,如果未能解决你的问题,请参考以下文章
ModuleNotFoundError:没有名为“dataviz”的模块
ModuleNotFoundError:没有名为“numpy”的模块
错误:ModuleNotFoundError:没有名为“图像”的模块
ModuleNotFoundError:没有名为“knox”的模块