train_familiar | R Documentation |
Train models using familiar. Evaluation is not performed.
train_familiar(
formula = NULL,
data = NULL,
experiment_data = NULL,
cl = NULL,
experimental_design = "fs+mb",
learner = NULL,
hyperparameter = NULL,
verbose = TRUE,
...
)
formula |
An R formula. The formula can only contain feature names and
dot ( Use of the formula interface is optional. |
data |
A
All data is expected to be in wide format, and ideally has a sample
identifier (see In case paths are provided, the data should be stored as |
experiment_data |
Experimental data may provided in the form of |
cl |
Cluster created using the This parameter has no effect if the |
experimental_design |
(required) Defines what the experiment looks
like, e.g.
The different components are linked using Different subsampling methods can be used in conjunction with the basic workflow components:
As shown in the example above, sampling algorithms can be nested. The simplest valid experimental design is This argument is ignored if the |
learner |
(required) Name of the learner used to develop a model. A
sizeable number learners is supported in |
hyperparameter |
(optional) List, or nested list containing
hyperparameters for learners. If a nested list is provided, each sublist
should have the name of the learner method it corresponds to, with list
elements being named after the intended hyperparameter, e.g.
All learners have hyperparameters. Please refer to the vignette on learners for more details. If no parameters are provided, sequential model-based optimisation is used to determine optimal hyperparameters. Hyperparameters provided by the user are never optimised. However, if more than one value is provided for a single hyperparameter, optimisation will be conducted using these values. |
verbose |
Indicates verbosity of the results. Default is TRUE, and all messages and warnings are returned. |
... |
Arguments passed on to
|
This is a thin wrapper around summon_familiar
, and functions like
it, but automatically skips all evaluation steps. Only a single learner is
allowed.
One or more familiarModel objects.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.