如何将 EMNIST 数据加载到 Tensorflow
在我看过的所有关于 tensorflow 的教程中,他们都使用了 MNIST 数据集,我已经理解了建模,但是我如何将这个数据集加载到 tensorflow 中?https://www.nist.gov/itl/iad/image-组/emnist-数据集
In all the tutorials i've seen for tensorflow, they've used the MNIST dataset, i've understood the modelling but how do i load this dataset into tensorflow? https://www.nist.gov/itl/iad/image-group/emnist-dataset
EMNIST 数据集 使用与原始 MNIST 数据集相同的二进制格式.因此,您可以从任何使用原始 MNIST 数据集的教程中获取输入管道代码,并将其指向您从下载 EMNIST 数据集获得的文件集,以在该数据集上进行训练.
The EMNIST dataset uses the same binary format as the original MNIST dataset. Therefore you can take the input pipeline code from any tutorial that uses the original MNIST dataset, and point it at the set of files you get from downloading the EMNIST dataset to train on that dataset.