Skip to content

Commit

Permalink
Update process_multiSample.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yiwang12 authored Nov 12, 2024
1 parent f34bea8 commit a91f483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mNSF/process_multiSample.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ def get_listDtrain(list_D_,nbatch=1,list_nchunk=None):
for kchunk in range(0,nchunk):
print("kchunk")
print(kchunk)
st = (kchunk-1)*nspot_perChunk
end_ = kchunk*nspot_perChunk
st = (kchunk-)*nspot_perChunk
end_ = (1+kchunk)*nspot_perChunk
if (kchunk==nchunk-1):end_=nspot
X_chunk=X[st:end_,]
Y_chunk=Y[st:end_,]
Expand Down

0 comments on commit a91f483

Please sign in to comment.