Skip to content

Commit

Permalink
Use args for batch index
Browse files Browse the repository at this point in the history
  • Loading branch information
xiao-zang-git committed Feb 10, 2022
1 parent b24d60c commit ddb69d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calibrate.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ args <- add_argument(args, "--size", help = "batch size", default = 10000)
argv <- parse_args(args)
seed <- as.integer(argv$seed)
cores <- as.integer(argv$cores)
batch.ind <- 1
batch.ind <- as.integer(argv$index)
batch.size <- as.integer(argv$size)
# init_ppl <- readRDS(argv$ppl)
# note: outfile, params not used
Expand Down

0 comments on commit ddb69d1

Please sign in to comment.