1、np.argmax()取行、列最大值的下标
2、np.vstack()和np.hstack()把list纵向、横向合并
3、np.random.permutation(len)把0-len-1数字打乱
def _shuffle_data(self):
p = np.random.permutation(self._num_examples) #把数字打乱排序
self._data = self._data[p]
self._labels = self._labels[p]