Newest SKLearn docs(http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html) say that:
scoring: For evaluating multiple metrics, either give a list of (unique) strings or a dict with names as keys and callables as values.
However, spark-sklearn does not seem to accept scoring parameter in a form of list.
Is there an easy way to accomplish that(submitting few scorers, eg. scoring = ['accuracy', 'f1', 'roc_auc', 'average_precision']? Or is it perhaps in your roadmap? If not, how much time(approximately) would the implementation take for somebody new to the project(like me)?