TsaiChasel

Results 1 issues of TsaiChasel

there are some problem if using the code follow,because the function [random.shuffle](https://github.com/kmonachopoulos/ImageNet-to-TFrecord/blob/c722ad22f72bb8c7c674972b25c35d1734481537/build_imagenet_data.py#L475) does not work to `shuffled_index`, which affect the training results. ```python shuffled_index = range(len(filenames)) random.seed(12345) random.shuffle(list(range(len(shuffled_index)))) ``` I...