-
Notifications
You must be signed in to change notification settings - Fork 326
Implement ML Features #381. SQLTransformer class and testcase #781
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
src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/SQLTransformerTests.cs
Outdated
Show resolved
Hide resolved
Hi @GoEddie . I have implemented your review comments and have added TransformSchema() and GetStatement() in SQLTransformer class. |
Closed by mistake! |
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.
Looks good, a couple of small things
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.
Added a few comments @ramanathanv . Thanks!
src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/SQLTransformerTests.cs
Outdated
Show resolved
Hide resolved
src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/SQLTransformerTests.cs
Outdated
Show resolved
Hide resolved
@GoEddie , @Niharikadutta . Thank you for the review comments! I have implemented them in the commit now. |
src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/SQLTransformerTests.cs
Show resolved
Hide resolved
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.
A few nits, but otherwise LGTM. Thanks @ramanathanv !
Co-authored-by: Niharika Dutta <[email protected]>
Co-authored-by: Niharika Dutta <[email protected]>
Co-authored-by: Niharika Dutta <[email protected]>
Co-authored-by: Niharika Dutta <[email protected]>
Co-authored-by: Niharika Dutta <[email protected]>
Hi @GoEddie , @Niharikadutta . I have implemented the code review fixes. But I notice that the build fails and I guess it is not due to the code change. Can you please help me verify? |
@ramanathanv Yes this is a known issue that occurs intermittently and is being tracked in #773 . I have re-triggered this pipeline to re-run all the tests. Thanks! |
Thanks @Niharikadutta and @GoEddie . The build has passed all checks now. Please let me know if there is something pending from my end for this pull request to be accepted. |
There is one comment left to complete (adding a short summary of the test) and then it looks good to me: https://github.com/dotnet/spark/pull/781/files/4fcda8904d374c52fbb97dbf7618145d0a15ca4e#r535114596 |
Hi @GoEddie . I had included the comment earlier. But missed to "resolve" the review comment. I have now resolved it. |
Hi @ramanathanv i'm not sure what happened to your changes but most of the comments have been resolved but without the code changes - maybe you have a local commit that you haven't pushed up to github? (or you made them on another branch or something?) For example: https://github.com/dotnet/spark/pull/781/files/4fcda8904d374c52fbb97dbf7618145d0a15ca4e#r535114596 The comment is: "nit: Can we add a small summary for this test?" but there is no summary, the /// or: https://github.com/dotnet/spark/pull/781/files/4fcda8904d374c52fbb97dbf7618145d0a15ca4e#r530571957 The code style says to use If you look through the other comments you will see a few things to implement - if you aren't sure what to do or need a hand with them let me know and I can help! |
Hi @GoEddie . |
@ramanathanv looks good! |
@Niharikadutta could you review? |
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.
LGTM, thanks @ramanathanv!
Hi,
I am creating this draft pull request that implements the basic methods in SQLTransformer class along with Test cases.
This is related to "Implement ML Features" #381