fml_bootstrap: fml_bootstrap

View source: R/fml_bootstrap.R

fml_bootstrapR Documentation

fml_bootstrap

Description

Pipeline function that sets up and runs a resampling experiment.

Usage

fml_bootstrap(parser_inst)

Arguments

parser_inst

Instance of fml_parser class that comprises command line arguments.

Details

The experiment is run in parallel. All results are written to files.

Value

none

Author(s)

Sebastian Malkusch

Examples

## Not run: 
parser_inst <-  flowml::create_parser()

parser_inst$pipeline_segment <- "bootstrap"
parser_inst$config <- flowml::fml_example(file = "reg_config.json")
parser_inst$data <- flowml::fml_example(file = "reg_data.csv")
parser_inst$samples_train <- flowml::fml_example(file = "reg_samples_train.txt")
parser_inst$samples_test <- flowml::fml_example(file = "reg_samples_test.txt")
parser_inst$features <- flowml::fml_example(file = "reg_features.txt")
parser_inst$extended_features <- flowml::fml_example(file = "reg_features_extended.txt")
parser_inst$trained <- flowml::fml_example(file = "reg_fit.rds")
parser_inst$permutation <- "none"
parser_inst$result_dir <- tempdir()

flowml::fml_bootstrap(parser_inst = parser_inst)

## End(Not run)


flowml documentation built on May 29, 2024, 10:43 a.m.

Related to fml_bootstrap in flowml...