Pyspark Guardar el modelo de aprendizaje automático a AWS S3

model.save(“myModelPath”)
sameModel = RandomForestClassificationModel.load(“myModelPath”)
Stormy Sloth