中心。版本== 0.1.1 ''' 导入 tensorflow_hub 作为集线器
module_spec = hub.load_module_spec("/home/neo/learn_tf/inception_v3")
height, width = hub.get_expected_image_size(module_spec)
images = ... # A batch of images with shape [batch_size, height,
width, 3].
module = hub.Module(module_spec)
features = module(images) # A batch with shape [batch_size,
num_features].
'''
我只是复制它 c' https://tfhub.dev/google/imagenet/inception_v3/feature_vector/1 ',当我运行它但得到
无法转换“图像”:预期为 float32,而是得到“省略号”类型的省略号。
帮我