imatiach-msft commented on issue #21632: [SPARK-19591][ML][MLlib] Add sample 
weights to decision trees
URL: https://github.com/apache/spark/pull/21632#issuecomment-457997552
 
 
   @srowen thank you for the merge and the thorough review.  I have some doubts 
about the tolerance we decided for zero values:
   val tolerance = Utils.EPSILON * unweightedNumSamples * unweightedNumSamples
   
   
https://github.com/apache/spark/pull/21632/files#diff-1fd1bc8d3fc9306c83cd65fbf3ca4bbeR1054
   
   For a large number of unweighted samples I am worried that it might be too 
high.  Note EPSILON=2.2E-16.  I am wondering if I should change the tolerance 
to be:
   val tolerance = Utils.EPSILON * unweightedNumSamples * (some constant)
   What are your thoughts?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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

Reply via email to