I am trying to implement Multiclass classification using pySpark, I have spent loads of time searching the web, and I have read that it is possible now using Spark 2.1.0.
I have generated my own dataset with all-numerical features and I have created a DataFrame as shown below;
I have three classes 'Service_Level' which are either 0, 1 or 2.
Questions:
- Do I have to use LabeledPoints if I have features like these?
- how do I use a multilayer perceptron instead of logistic regression?
Thanks.