-
Notifications
You must be signed in to change notification settings - Fork 393
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
Proper UID for Raw Feature Filter #276
Conversation
LGTM! |
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!
Codecov Report
@@ Coverage Diff @@
## master #276 +/- ##
========================================
Coverage 86.39% 86.39%
========================================
Files 319 319
Lines 10440 10440
Branches 349 544 +195
========================================
Hits 9020 9020
Misses 1420 1420
Continue to review full report at Codecov.
|
@@ -592,6 +592,9 @@ object RawFeatureFilter { | |||
// scoring sets since they will not be reliable. Currently, this is set to the same as the minimum training size. | |||
val minScoringRowsDefault = 500 | |||
|
|||
val stageName = classOf[RawFeatureFilter[_]].getSimpleName | |||
|
|||
val uid = s"${stageName}_100000000000" |
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.
why not use the UID method?
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.
I guess it's better to have it be the same (!?) not important really, since there is only one.
Related issues
RFF has an invalid UID
Describe the proposed solution
Proper UID for Raw Feature Filter