Retrieves the exact dataset version that was used to train a model. This ensures reproducibility by downloading the specific version from pins.
Examples
if (FALSE) { # \dontrun{
# Get the dataset used to train a model
dataset_path <- get_training_dataset("my_model")
# Can then use this to retrain or analyze
train_model(data_dir = dataset_path, model_id = "my_model_v2", ...)
} # }