hub.version == 0.1.1 ''' import tensorflow_hub as 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].
'''
I just copy it c'https://tfhub.dev/google/imagenet/inception_v3/feature_vector/1', when I run it but got
Can't convert 'images': Expected float32, got Ellipsis of type 'ellipsis' instead.
HELP ME