View source: R/ExistingSklearn.R
createSklearnModel | R Documentation |
Plug an existing scikit learn python model into the PLP framework
createSklearnModel(
modelLocation = "/model",
covariateMap = data.frame(columnId = 1:2, covariateId = c(1, 2), ),
covariateSettings,
populationSettings,
isPickle = TRUE
)
modelLocation |
The location of the folder that contains the model as model.pkl |
covariateMap |
A data.frame with the columns: columnId and covariateId.
|
covariateSettings |
The settings for the standardized covariates |
populationSettings |
The settings for the population, this includes the time-at-risk settings and inclusion criteria. |
isPickle |
If the model should be saved as a pickle set this to TRUE if it should be saved as json set this to FALSE. |
This function lets users add an existing scikit learn model that is saved as model.pkl into PLP format. covariateMap is a mapping between standard covariateIds and the model columns. The user also needs to specify the covariate settings and population settings as these are used to determine the standard PLP model design.
An object of class plpModel, this is a list that contains: model (the location of the model.pkl), preprocessing (settings for mapping the covariateIds to the model column mames), modelDesign (specification of the model design), trainDetails (information about the model fitting) and covariateImportance.
You can use the output as an input in PatientLevelPrediction::predictPlp to apply the model and calculate the risk for patients.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.