Skip to contents

Returns the path to the models directory in bouncerdata. Uses find_bouncerdata_dir() for robust path resolution.

Usage

get_models_dir(create = TRUE)

Arguments

create

Logical. Whether to create directory if not found. Default TRUE.

Value

Character string with models directory path.

Examples

if (FALSE) { # \dontrun{
models_dir <- get_models_dir()
# Returns: "/path/to/bouncerverse/bouncerdata/models"

model_path <- file.path(get_models_dir(), "agnostic_model.ubj")
} # }