View source: R/param_tracking.R
| track_params | R Documentation |
Record analysis parameters and configuration settings for reproducibility
track_params(params, analysis_name = NULL, description = NULL, registry_file)
params |
Named list of parameters to track |
analysis_name |
Character. Name/identifier for this analysis |
description |
Character. Description of what these parameters control |
registry_file |
Character. Path to parameter registry (required). |
List containing parameter information
## Not run:
# Track model parameters
params <- list(
learning_rate = 0.01,
epochs = 100,
batch_size = 32,
model_type = "neural_network"
)
track_params(params, "model_training", "Deep learning model parameters",
registry_file = tempfile(fileext = ".json"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.