Load a BERTopic Model Bundle
load_bertopic_model.RdLoad a BERTopic model saved with save_bertopic_model() along with its
companion RDS file containing R-side extras.
Value
A list with two elements: model (the BERTopic model) and extras
(the R-side data saved in the companion RDS file).
Examples
if (FALSE) { # \dontrun{
loaded <- load_bertopic_model("topic_model")
doc_info <- get_document_info_df(model = loaded$model, texts = docs)
} # }