mszlazak
Results
2
comments of
mszlazak
yup, it's off. Thx.
``` local nBatches = torch.floor(data:size(1)/batchSize) local x = torch.zeros(nBatches, batchSize) for i = 1, batchSize do local start = (i-1) * nBatches + 1 local finish = i * nBatches...