Github user jkbradley commented on a diff in the pull request:

    https://github.com/apache/spark/pull/5431#discussion_r28283381
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/param/params.scala ---
    @@ -179,52 +179,96 @@ trait Params extends Identifiable with Serializable {
       /**
        * Sets a parameter (by name) in the embedded param map.
        */
    -  private[ml] def set(param: String, value: Any): this.type = {
    +  protected final def set(param: String, value: Any): this.type = {
         set(getParam(param), value)
       }
     
       /**
    -   * Gets the value of a parameter in the embedded param map.
    +   * Optionally returns the user-supplied value of a param.
    +   */
    +  final def get[T](param: Param[T]): Option[T] = {
    --- End diff --
    
    Why is get public and set private?  Shouldn't both be public (which might 
be handy for programmatic setting of parameters, such as from config files) or 
both be private (since implementing classes will provide getters/setters 
anyways)?


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

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

Reply via email to