https://zh.d2l.ai/chapter_linear-networks/linear-regression-scratch.html
如果数据大小不能被batch_size整除怎么办?
(indices[i: min(i + batch_size, num_examples)]):不被整除,余数小于bitchsize,就把剩下的数组组成一个新的数据集进行迭代
初始权重设为0的时候,为什么我也得到结果了