Skip to content

Commit

Permalink
Fix & for julia 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Oct 11, 2023
1 parent b00ad5d commit 777b109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datasets/graphs/temporalbrains.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function create_tbdataset(dir, thre)
activation = [zeros(Float32, 102) for _ in 1:27]
for t in 1:27
for n in 1:102
rows = (view(data_thre_int,:,1).==n .&& view(data_thre_int,:,3).==t)
rows = ((view(data_thre_int,:,1).==n) .& (view(data_thre_int,:,3).==t))
activation[t][n] = mean(view(data_thre,rows,4))
end
end
Expand Down

0 comments on commit 777b109

Please sign in to comment.