几年前,我使用了“ Tensorflow For Poets”教程来创建图像分类器。太神奇了,从那时起我就一直在定期使用它。
今天,我试图将图像分类器迁移到新的Docker环境中,但是它正在运行新版本的Tensorflow 2,因此我的脚本中断了。
有人可以帮助将这个著名的教程脚本升级到Tensorflow 2吗?
directory = '/imageFolder'
# Tensorflow labels
label_lines = [line.rstrip() for line in tf.gfile.GFile('/tf_files/retrained_labels.txt')]
# Unpersists graph from file
with tf.gfile.FastGFile('/tf_files/retrained_graph.pb', 'rb') as f:
graph_def = tf.GraphDef()
graph_def.ParseFromString(f.read())
_ = tf.import_graph_def(graph_def, name='')
with tf.Session() as sess:
# Feed the image_data as input to the graph and get first prediction
softmax_tensor = sess.graph.get_tensor_by_name('final_result:0')
# Count the folders
def fcount(path, map = {}):
count = 0
for f in os.listdir(path):
child = os.path.join(path, f)
if os.path.isdir(child):
child_count = fcount(child, map)
count += child_count + 1 # unless include self
map[path] = count
return count
map = {}
totalDirectories = fcount(directory, map)
# Walk the directory
for dirpath, dirnames, filenames in os.walk(directory):
splicedDirpath = dirpath[len(directory):]
print "Processing ", splicedDirpath
counter = 0
for name in filenames:
if name.lower().endswith(('.jpg', '.jpeg', '.tiff')):
print name
image_data = tf.gfile.FastGFile(os.path.join(dirpath, name), 'rb').read()
predictions = sess.run(softmax_tensor, \
{'DecodeJpeg/contents:0': image_data})
# Sort to show labels of first prediction in order of confidence
top_k = predictions[0].argsort()[-len(predictions[0]):][::-1]
firstElt = top_k[0];
for node_id in top_k:
human_string = label_lines[node_id]
score = predictions[0][node_id]
答案 0 :(得分:0)
此notebook中已经有 TensorFlow for Poets 的新更新版本。
如果您需要迁移,将代码从 TensorFlow 1.x 迁移到 TensorFlow 2.x 。
您可以通过基本上导入tf.compat.v1 和执行tf.compat.v1.disable_v2_behavior()来使用TensorFlow 2.x的 compat 库。 >。
您还可以使用 TensorFlow 提供的升级脚本来协助迁移代码,这还将向您显示需要手动更改的部分代码 >。
此link中的自动升级脚本使用指南。
在link中,对将代码从TensorFlow 1.x迁移到2.x 的指南进行了更深入的讨论。