diff --git a/.gitignore b/.gitignore index fae8299..d908e64 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ vignettes/*.pdf # R Environment Variables .Renviron +.DS_Store diff --git a/neptune/R/neptune.R b/neptune/R/neptune.R index c62f0a6..edd4b7a 100644 --- a/neptune/R/neptune.R +++ b/neptune/R/neptune.R @@ -63,10 +63,12 @@ stop_experiment <- function() { create_experiment <- function(name = 'default', params = reticulate::dict(), - tags = c()) { + tags = c(), + upload_source_files = c()) { get_neptune()$create_experiment(name = name, params = params, - tags = tags) + tags = tags, + upload_source_files = upload_source_files) } append_tag <- function(tag) {