Spark MLLIb Logistic Regression 中的 predict() 是在哪里实现的?

Where is the predict() in Logistic Regression of Spark MLLIb implemented?

有人可以指出 spark mllib 的 LogisticRegressionModel 中 predict() 的实现吗?我可以在 class LogisticRegressionModel 中找到一个 predictPoint(),但是 predict() 在哪里?

由于 LogisticRegressionModel 扩展了 GeneralizedLinearModel with ClassificationModel(以及其他一些不太有趣的东西),因此可以合理地期望 predict 继承自上述内容。

正如预期的那样: