Open kli-casia opened 6 years ago
https://github.com/xiaolai-sqlai/gluon-reid/blob/master/branch/data_read/sampler.py#L35 这里的len是不是应该返回self.num_samples?也就是_iter_函数中ret的长度
我看https://mxnet.incubator.apache.org/_modules/mxnet/gluon/data/sampler.html#BatchSampler batchsampler的源码返回的是batch的数目
这是为了保持数目一致,因为我们最后一个batch只采751个id,每个id共计4张图片,故而要len和这个统一,不然在训练中,就会出现iter才跑了一半,整个epoch直接结束跳入下一个epoch的情况,主要是为了保证统一。
https://github.com/xiaolai-sqlai/gluon-reid/blob/master/branch/data_read/sampler.py#L35 这里的len是不是应该返回self.num_samples?也就是_iter_函数中ret的长度
我看https://mxnet.incubator.apache.org/_modules/mxnet/gluon/data/sampler.html#BatchSampler batchsampler的源码返回的是batch的数目