load_model {BKT}R Documentation

Load

Description

Load a BKT model from a file. This function loads a previously saved BKT model from an RDS file. The model attributes are restored into the provided model object, allowing it to be used for further analysis or predictions.

Usage

load_model(model, loc)

Arguments

model

A BKT model object into which the saved model's attributes will be loaded.

loc

Character. The file path from which the model will be loaded, typically an .rds file.

Value

The updated BKT model object with the restored attributes from the saved model.

Examples


model <- bkt(seed = 42)
loaded_model <- load_model(model, "bkt_model.rds")


[Package BKT version 0.1.0 Index]