Skip to content

Commit

Permalink
add vec
Browse files Browse the repository at this point in the history
  • Loading branch information
odunbar committed Jun 24, 2024
1 parent a4c97c6 commit 3b7240c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Observations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ function update_minibatch!(os::OS) where {OS <: ObservationSeries}
index["epoch"] += 1 # update by 1
minibatches = get_minibatches(os)
minibatcher = get_minibatcher(os)
new_epoch = create_new_epoch!(minibatcher, length(get_observations(os))) # create a new sweep of minibatches
new_epoch = create_new_epoch!(minibatcher, collect(1:length(get_observations(os)))) # create a new sweep of minibatches
push!(minibatches, new_epoch)
end

Expand Down

0 comments on commit 3b7240c

Please sign in to comment.