TensorFlow 构建了一种存储数据的好方法。例如,这用于存储示例中的 MNIST 数据:
>>> mnist
<tensorflow.examples.tutorials.mnist.input_data.read_data_sets.<locals>.DataSets object at 0x10f930630>
假设有一个输入和输出 numpy 数组。
>>> x = np.random.normal(0,1, (100, 10))
>>> y = np.random.randint(0, 2, 100)
如何在tf
数据集中转换它们?
我想使用类似的功能next_batch