InterviewSolution
Saved Bookmarks
| 1. |
How can you achieve machine learning in Spark? |
|
Answer» Spark provides a very robust, SCALABLE machine learning-based library CALLED MLlib. This library aims at implementing easy and scalable common ML-based algorithms and has the features like classification, clustering, DIMENSIONAL reduction, REGRESSION filtering, etc. More information about this library can be obtained in detail from Spark’s official documentation site here: https://spark.apache.org/docs/latest/ml-guide.html |
|