Creates an object of a resampling experiment.
create_resample_experiment(
seed,
data_df,
parser_inst,
model_inst,
config_inst,
n_features
)
An instance of type 'Resampler'.
sets the seed for the random number generator to guarantee reproducibility. (int)
data frame to be learned from. (tibble::tibble)
instance of parser object. (optparse::parse_args).
instance of caret_train object (caret::train).
list of config options (list).
number of features (int).
Sebastian Malkusch
Creates a resampling experiment. It uses user defined parameters to set up the experiment. It creates an instance of the Resampler object and runs the experiment according to the user-defined parameters.