虽然我在colab.research.google.com上从事Jupyter的工作, 代码是:
from sparkdl import DeepImageFeaturizer
from sparkdl import readImages, DeepImagePredictor
predictor = DeepImagePredictor(inputCol="image",
outputCol="predicted_labels",modelName="InceptionV3",decodePredictions=True,
topK=10)
我不断收到以下错误消息。可能是什么问题?
"AttributeError: module 'sparkdl' has no attribute 'graph'"
谢谢