TensorFlow载入数据的三种方式
Tensorflow数据读取有三种方式: 1)预加载数据; 2)产生数据,再把数据喂给后端; 3)从文件中直接读取1、预加载数据(仅适用于数据量比较小的情况):import tensorflow as tf # 设计Graph x1 = tf.constant([2, 3, 4]) x2 = tf.constant([4, 0, 1]) y = tf.add(x1, x2)...