Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
(sorry)
  • Loading branch information
exaexa committed Apr 1, 2021
1 parent 44b7289 commit ab4aa70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/analysis/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,16 @@ function trainGigaSOM(

eachEpoch(0, rStart, codes)

for j = 1:epochs
@debug "Epoch $j..."
for epoch = 1:epochs
@debug "Epoch $epoch..."

numerator, denominator = distributedEpoch(
dInfo,
codes,
knnTreeFun(Array{Float64,2}(transpose(codes)), metric),
)

r = radiusFun(rStart, rFinal, j, epochs)
r = radiusFun(rStart, rFinal, epoch, epochs)
@debug "radius: $r"
if r <= 0
@error "Sanity check failed: radius must be positive"
Expand Down

0 comments on commit ab4aa70

Please sign in to comment.