You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by jkbradley <gi...@git.apache.org> on 2014/10/08 01:42:56 UTC

[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

GitHub user jkbradley opened a pull request:

    https://github.com/apache/spark/pull/2700

    [SPARK-3841] [mllib] Pretty-print params for ML examples

    Provide a parent class for the Params case classes used in many MLlib examples, where the parent class pretty-prints the case class fields:
    Param1Name	Param1Value
    Param2Name	Param2Value
    ...
    Using this class will make it easier to print test settings to logs.
    
    Also, updated DecisionTreeRunner to print a little more info.
    
    CC: @mengxr

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/jkbradley/spark dtrunner-update

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/2700.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2700
    
----
commit 19eb6fcdbed37012059165dc4ff9025fc35e87f4
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-03T02:14:41Z

    Updated DecisionTreeRunner to print training time.

commit f7441b69b0f6f11a795412127a520f9d731e29a6
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-03T19:45:01Z

    Merge remote-tracking branch 'upstream/master' into dtrunner-update

commit 5f84f0397bac078aecd636c7f54c8f94cdad68e7
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-06T20:18:58Z

    Merge remote-tracking branch 'upstream/master' into dtrunner-update

commit 12b7798f4276eb6bfd5923a022b191381cb1cd78
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-06T22:07:27Z

    Added abstract class TestParams for pretty-printing Params values

commit 0fc9c64952e019a0021eaa7a9b3417bec13bf8c7
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-07T23:37:50Z

    Added abstract TestParams class for mllib example parameters

commit d8228a732044d1707c587e561aa1593db6789c54
Author: Joseph K. Bradley <jo...@gmail.com>
Date:   2014-10-07T23:37:54Z

    Merge remote-tracking branch 'upstream/master' into dtrunner-update

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58415448
  
      [QA tests have started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/21482/consoleFull) for   PR 2700 at commit [`cff873f`](https://github.com/apache/spark/commit/cff873fb9be9d30312c17e4d322e4dc36e0e58de).
     * This patch merges cleanly.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58392581
  
    ![title](https://cloud.githubusercontent.com/assets/829644/4563459/702d7022-4f0e-11e4-95b0-27a7e89df456.png)



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2700#discussion_r18559543
  
    --- Diff: examples/src/main/scala/org/apache/spark/examples/mllib/TestParams.scala ---
    @@ -0,0 +1,49 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.examples.mllib
    +
    +/**
    + * Abstract class for parameter case classes.
    + * This overrides the [[toString]] method to print all case class fields by name and value.
    + * @tparam T  Concrete parameter class.
    + */
    +abstract class TestParams[T: scala.reflect.runtime.universe.TypeTag] {
    +
    +  import scala.reflect.runtime.universe._
    --- End diff --
    
    Shall we move this import outside class closure and then use only `TypeTag` in line 25.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2700#discussion_r18559542
  
    --- Diff: examples/src/main/scala/org/apache/spark/examples/mllib/TestParams.scala ---
    @@ -0,0 +1,49 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.examples.mllib
    +
    +/**
    + * Abstract class for parameter case classes.
    + * This overrides the [[toString]] method to print all case class fields by name and value.
    + * @tparam T  Concrete parameter class.
    + */
    +abstract class TestParams[T: scala.reflect.runtime.universe.TypeTag] {
    --- End diff --
    
    The name `TestParams` may be confusing because it is not used in test. We could call it `AbstractParams`.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by jkbradley <gi...@git.apache.org>.
Github user jkbradley commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58311097
  
    @mengxr  Actually, do we want all of the parameters added to the app name?  We could just print them to logs.
    
    ![screen shot 2014-10-07 at 10 15 30 pm](https://cloud.githubusercontent.com/assets/5084283/4554239/31c3f284-4eaa-11e4-8367-d517ece38d43.png)



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/2700


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58425058
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/21482/Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58288781
  
    @jkbradley LGTM except inline comments. Could you also merge the current master and update `examples/mllib/CosineSimilarity`? Thanks!


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58288678
  
      [QA tests have finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/21424/consoleFull) for   PR 2700 at commit [`d8228a7`](https://github.com/apache/spark/commit/d8228a732044d1707c587e561aa1593db6789c54).
     * This patch **passes all tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `abstract class TestParams[T: scala.reflect.runtime.universe.TypeTag] `



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2700#discussion_r18559550
  
    --- Diff: examples/src/main/scala/org/apache/spark/examples/mllib/TestParams.scala ---
    @@ -0,0 +1,49 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.examples.mllib
    +
    +/**
    + * Abstract class for parameter case classes.
    + * This overrides the [[toString]] method to print all case class fields by name and value.
    + * @tparam T  Concrete parameter class.
    + */
    +abstract class TestParams[T: scala.reflect.runtime.universe.TypeTag] {
    +
    +  import scala.reflect.runtime.universe._
    +
    +  private def tag: TypeTag[T] = typeTag[T]
    +
    +  /**
    +   * Finds all case class fields in concrete class instance, and outputs them one per line:
    +   * "[field name]:\t[field value]\n"
    +   */
    +  override def toString: String = {
    +    val tpe = tag.tpe
    +    val allAccessors = tpe.declarations.collect {
    +      case m: MethodSymbol if m.isCaseAccessor => m
    +    }
    +    val mirror = runtimeMirror(getClass.getClassLoader)
    +    val instanceMirror = mirror.reflect(this)
    +    allAccessors.map { f =>
    +      val paramName = f.name.toString
    +      val fieldMirror = instanceMirror.reflectField(f)
    +      val paramValue = fieldMirror.get
    +      s"$paramName:\t$paramValue\n"
    +    }.foldLeft("")(_ + _)
    --- End diff --
    
    use `mkString("{", ",", "}")`


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58405550
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/21478/Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58281898
  
      [QA tests have started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/21424/consoleFull) for   PR 2700 at commit [`d8228a7`](https://github.com/apache/spark/commit/d8228a732044d1707c587e561aa1593db6789c54).
     * This patch merges cleanly.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58415086
  
    test this please


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2700#discussion_r18559544
  
    --- Diff: examples/src/main/scala/org/apache/spark/examples/mllib/TestParams.scala ---
    @@ -0,0 +1,49 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.examples.mllib
    +
    +/**
    + * Abstract class for parameter case classes.
    + * This overrides the [[toString]] method to print all case class fields by name and value.
    + * @tparam T  Concrete parameter class.
    + */
    +abstract class TestParams[T: scala.reflect.runtime.universe.TypeTag] {
    +
    +  import scala.reflect.runtime.universe._
    +
    +  private def tag: TypeTag[T] = typeTag[T]
    +
    +  /**
    +   * Finds all case class fields in concrete class instance, and outputs them one per line:
    +   * "[field name]:\t[field value]\n"
    --- End diff --
    
    This may not look pretty in the WebUI:
    
    ![screen shot 2014-10-07 at 5 36 36 pm](https://cloud.githubusercontent.com/assets/829644/4552499/5d241b2c-4e85-11e4-8934-0c162038429b.png)
    
    We can output in a JSON-like format:
    
    ~~~
    {
      maxIter: 10,
      regParm: 1.0
    }
    ~~~



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by jkbradley <gi...@git.apache.org>.
Github user jkbradley commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58403682
  
    @mengxr  Thanks for the feedback and that UI fix!  I think I've addressed everything (and ended up reverting the app names to the previous, shorter version).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58288684
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/21424/Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58323685
  
    That doesn't look good. I think it is still nice to put the full set of parameters in the WebUI, which is easier to check than the logs.
    
    https://github.com/apache/spark/pull/2707 fixes the UI issue.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58425050
  
      [QA tests have finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/21482/consoleFull) for   PR 2700 at commit [`cff873f`](https://github.com/apache/spark/commit/cff873fb9be9d30312c17e4d322e4dc36e0e58de).
     * This patch **passes all tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `abstract class AbstractParams[T: TypeTag] `



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [SPARK-3841] [mllib] Pretty-print params for M...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/2700#issuecomment-58430211
  
    Merged into master. Thanks!


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org