| familiarModel-class | R Documentation |
A familiarModel object is a self-contained model that can be applied to generate predictions for a dataset. familiarModel objects form the parent class of learner-specific child classes.
nameName of the familiarModel object.
modelThe actual model trained using a specific algorithm, e.g. a
random forest from the ranger package, or a LASSO model from glmnet.
outcome_typeOutcome type of the data used to create the object.
outcome_infoOutcome information object, which contains additional information concerning the outcome, such as class levels.
feature_infoList of objects containing feature information, e.g., name, class levels, transformation, normalisation and clustering parameters.
data_column_infoData information object containing information regarding identifier column names and outcome column names.
hyperparametersSet of hyperparameters used to train the model.
hyperparameter_dataInformation generated during hyperparameter optimisation.
calibration_modelOne or more models used to recalibrate the model output. Currently only used by some models.
novelty_detectorA familiarNoveltyDetector object that can be used to detect out-of-distribution samples.
learnerLearning algorithm used to create the model.
fs_methodFeature selection method used to determine variable importance for the model.
required_featuresThe set of features required for complete reproduction, i.e. with imputation.
model_featuresThe set of features that is used to train the model,
novelty_featuresThe set of features that is used to train all novelty detectors in the ensemble.
calibration_infoCalibration information, e.g. baseline survival in the development cohort.
km_infoData concerning stratification into risk groups.
run_tableRun table for the data used to train the model. Used internally.
settingsA copy of the evaluation configuration parameters used at model creation. These are used as default parameters when evaluating the model (technically, familiarEnsemble) to create a familiarData object.
is_trimmedFlag that indicates whether the model, stored in the model
slot, has been trimmed.
trimmed_functionList of functions whose output has been captured prior to trimming the model.
messagesList of warning and error messages generated during training.
project_idIdentifier of the project that generated the familiarModel object.
familiar_versionVersion of the familiar package.
packageName of package(s) required to executed the model itself, e.g.
ranger or glmnet.
package_versionVersion of the packages mentioned in the package
attribute.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.