Github user sethah commented on a diff in the pull request:
https://github.com/apache/spark/pull/11119#discussion_r83515271
--- Diff: mllib/src/main/scala/org/apache/spark/ml/util/ReadWrite.scala ---
@@ -300,15 +301,23 @@ private[ml] object DefaultParamsWriter {
paramMap: Option[JValue] = None): String = {
val uid = instance.uid
val cls = instance.getClass.getName
- val params =
instance.extractParamMap().toSeq.asInstanceOf[Seq[ParamPair[Any]]]
+ val params = instance.extractParamMap().toSeq
+ .filter(_.param.name !=
"initialModel").asInstanceOf[Seq[ParamPair[Any]]]
--- End diff --
It's also possible that we introduce other params that can be of type model
in the future. Thus, being an instance of `Param[Mode[_]]` may not be
sufficient to determine if it's the initialModel.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]