Uh oh!
There was an error while loading. Please reload this page.
[SPARK-16445][MLlib][SparkR] Fix @return description for sparkR mlp summary() method - #15015
[SPARK-16445][MLlib][SparkR] Fix @return description for sparkR mlp summary() method#15015keypointt wants to merge 3 commits into
Conversation
SparkQA
commented
Sep 8, 2016
Test build #65110 has finished for PR 15015 at commit
|
keypointt
commented
Sep 8, 2016
hi @felixcheung this is just a minor patch to SPARK-16445, where the |
| labelCount <- callJMethod(jobj, "labelCount") | ||
| layers <- unlist(callJMethod(jobj, "layers")) | ||
| weights <- callJMethod(jobj, "weights") | ||
| weights <- matrix(weights, nrow = length(weights)) |
There was a problem hiding this comment.
could we add a test for this output?
felixcheung
commented
Sep 8, 2016
cool thanks, just one comment |
keypointt
commented
Sep 8, 2016
There is already a test is it enough or we should add more tests? |
felixcheung
commented
Sep 8, 2016
since the format of the output is changing it would be great to check more than just the length in test |
keypointt
commented
Sep 8, 2016
how about adding type check? |
@felixcheung I think this is a irrelevant comment but is there any issue for enabling Windows test for now? It seems it should have run a test for this PR. |
felixcheung
commented
Sep 9, 2016
@keypointt let's have a check for the first few values perhaps? |
shivaram
commented
Sep 9, 2016
@HyukjinKwon I thought it should have run the tests ? Any ideas why its not getting picked up ? Is there some other set of steps that we need to do ? (I'm now investigating how it works for Apache Thrift) |
shivaram
commented
Sep 9, 2016
I think we need to file an INFRA ticket like https://issues.apache.org/jira/browse/INFRA-11294 -- I'll file one now |
shivaram
commented
Sep 9, 2016
HyukjinKwon
commented
Sep 9, 2016
I will check this out as far as I can and be back. |
HyukjinKwon
commented
Sep 9, 2016
@dongjoon-hyun Meanwhile, do you mind if I ask whether you have any idea on this maybe? |
dongjoon-hyun
commented
Sep 9, 2016
Up to my knowledge, INFRA ticket made by @shivaram is enough for now. For Apache REEF, we filed the following INFRA issue like that. |
SparkQA
commented
Sep 9, 2016
Test build #65135 has finished for PR 15015 at commit
|
felixcheung
commented
Sep 9, 2016
LGTM |
SparkQA
commented
Sep 9, 2016
Test build #65173 has finished for PR 15015 at commit
|
shivaram
commented
Sep 10, 2016
Thanks @keypointt - Merging into master |
…ummary() method ## What changes were proposed in this pull request? Fix summary() method's `return` description for spark.mlp ## How was this patch tested? Ran tests locally on my laptop. Author: Xin Ren <iamshrek@126.com> Closesapache#15015 from keypointt/SPARK-16445-2.
What changes were proposed in this pull request?
Fix summary() method's
@returndescription for spark.mlpHow was this patch tested?
Ran tests locally on my laptop.