Created
May 2, 2018 14:59
-
-
Save FavioVazquez/96e13301b6286eb7b52f34faedce4c24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyspark.ml.classification import LogisticRegression | |
from pyspark.ml import Pipeline | |
from sparkdl import DeepImageFeaturizer | |
featurizer = DeepImageFeaturizer(inputCol="image", outputCol="features", modelName="InceptionV3") | |
lr = LogisticRegression(maxIter=10, regParam=0.05, elasticNetParam=0.3, labelCol="label") | |
p = Pipeline(stages=[featurizer, lr]) | |
p_model = p.fit(train_df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
any update on the same. Getting the error
module 'sparkdl' has no attribute 'utils'
while import from sparkdl import DeepImageFeaturizer