Let me know if you want me to modify anything!
def get_deep_feature(img_path): # Load VGG16 model model = VGG16(weights='imagenet', include_top=False, input_shape=(224, 224, 3)) rctd 404