I am new to Spark and creating a platform which supports Machine Learning, I am looking for a way to save models and came up with the save
method of the models.
Its documentation states:
Save this model to the given path.
This saves: - human-readable (JSON) model metadata to path/metadata/ - Parquet formatted data to path/data/
I am looking for a way to load models written in all programming languages (Python, Java, Scala) using one programming language only (Java).
Is it possible to simply load the model using different programming language?