fml_validate {flowml}R Documentation

fml_validate

Description

Pipeline function that performs a validation experiment on a a caret train object based on test samples.

Usage

fml_validate(parser_inst)

Arguments

parser_inst

instance of fml_parser class that comprises command line arguments.

Value

none

Author(s)

Kolja Becker

Examples

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

parser_inst$pipeline_segment <- "validate"
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_validate(parser_inst = parser_inst)

## End(Not run)


[Package flowml version 0.1.3 Index]