Skip to content

Commit

Permalink
Merge pull request #5 from andrewcstewart/master
Browse files Browse the repository at this point in the history
Added upload_source_files option to create_experiment
  • Loading branch information
HubertJaworski authored Aug 19, 2020
2 parents c30eafc + c30872b commit 0ff68f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ vignettes/*.pdf

# R Environment Variables
.Renviron
.DS_Store
6 changes: 4 additions & 2 deletions neptune/R/neptune.R
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0ff68f6

Please sign in to comment.