在TensorFlow v1.15中,pandas_input_fn
中的tf.estimator.inputs.pandas_input_fn
是defined。
在TensorFlow 2.x中,必须使用别名pandas_input_fn
来引用tf.compat.v1.estimator.inputs.pandas_input_fn
。
pandas_input_fn
似乎是一种构造输入函数的便捷方法,尤其是那些没有标签(即没有y值)的输入函数,用于进行预测:
input_func = tf.estimator.inputs.pandas_input_fn(
x=X_train,
batch_size=len(X_train),
num_epochs=1,
shuffle=False)
有没有一种首选的方法来构造输入函数,尤其是那些用于预测的函数?