-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Permutation #70
Permutation #70
Conversation
R/FilterPermutation.R
Outdated
#' @description | ||
#' Estimate how important individual features are by contrasting prediction | ||
#' performances. Compute the change in performance from permuting the values of | ||
#' a feature and compare that to the predictions made on the unmodified data. |
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.
Not clearly documented on what data the learner is applied. Only on a single permuted col or on the complete task with one column permuted?
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.
The latter. Updated the description.
Codecov Report
@@ Coverage Diff @@
## master #70 +/- ##
===========================================
- Coverage 100.00% 99.66% -0.34%
===========================================
Files 20 21 +1
Lines 265 301 +36
===========================================
+ Hits 265 300 +35
- Misses 0 1 +1
Continue to review full report at Codecov.
|
R/FilterPermutation.R:94:50: style: Commas should always have a space after. task$cbind(column[sample(nrow(column)),])
^ |
On a second thought, please clone the task in each iteration. The current version (as requested by me) is even worse ;) |
@be-marc Is this stalled or do you plan to proceed here? |
This might be ready to merge. @mllg ? |
Adds simple permutation filter