-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-16445][MLlib][SparkR] Fix @return description for sparkR mlp summary() method #15015
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Test build #65110 has finished for PR 15015 at commit
|
|
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we add a test for this output?
|
cool thanks, just one comment |
|
There is already a test is it enough or we should add more tests? |
|
since the format of the output is changing it would be great to check more than just the length in test |
|
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. |
|
@keypointt let's have a check for the first few values perhaps? |
|
@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) |
|
I think we need to file an INFRA ticket like https://issues.apache.org/jira/browse/INFRA-11294 -- I'll file one now |
|
I will check this out as far as I can and be back. |
|
@dongjoon-hyun Meanwhile, do you mind if I ask whether you have any idea on this maybe? |
|
Up to my knowledge, INFRA ticket made by @shivaram is enough for now. For Apache REEF, we filed the following INFRA issue like that. |
|
Test build #65135 has finished for PR 15015 at commit
|
|
LGTM |
|
Test build #65173 has finished for PR 15015 at commit
|
|
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> Closes apache#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.