self.current_batch_indices = self.indices[self.current_position:self.current_position + self.minibatch_size]
[ ]中 a : a +b 这种形式是什么意思呢
是不是 “当前批次的大小=从当前位置到当前位置(即0)+ 最小批次的的大小” 的意思呢?
切片,相当于截取,index1:index2 =>即截取从索引index1(包括index1)开始到索引index2(不包括index2)结束的部分