Skip to content

Commit

Permalink
Fix verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
fouodo committed Nov 28, 2024
1 parent a114d59 commit b6a4700
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions R/trainingFunctions.R
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,6 @@ fusemlr = function (training,
if (!training$getVarSelDone() & use_var_sel) {
training$varSelection(ind_subset = ind_subset,
verbose = training$getVerbose())
} else {
if (training$getVarSelDone() & use_var_sel) {
warning("Variable selection has been already performed.")
}
}
training$train(ind_subset = ind_subset,
use_var_sel = use_var_sel,
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,6 @@ training <- fusemlr(training = training,
k = 10L))
```

## Warning in fusemlr(training = training, use_var_sel = TRUE, resampling_method =
## NULL, : Variable selection has been already performed.

## Creating fold predictions.

## | | | 0% | |======= | 10% | |============== | 20% | |===================== | 30% | |============================ | 40% | |=================================== | 50% | |========================================== | 60% | |================================================= | 70% | |======================================================== | 80% | |=============================================================== | 90% | |======================================================================| 100%
Expand Down Expand Up @@ -633,9 +630,6 @@ training <- fusemlr(training = training,
use_var_sel = TRUE)
```

## Warning in fusemlr(training = training, use_var_sel = TRUE): Variable selection
## has been already performed.

## Creating fold predictions.

## | | | 0% | |======= | 10% | |============== | 20% | |===================== | 30% | |============================ | 40% | |=================================== | 50% | |========================================== | 60% | |================================================= | 70% | |======================================================== | 80% | |=============================================================== | 90% | |======================================================================| 100%
Expand Down

0 comments on commit b6a4700

Please sign in to comment.