标签: python tensorflow
我跟随TensorFlow的人口普查分类示例:
https://www.tensorflow.org/tutorials/wide
通过以下方式获得训练有素的模型:
m.train( input_fn=input_fn(df_train,train_labels, num_epochs=None, shuffle=True), steps=2000)
我还想要两件事:
1)在评估中,通过对该行的预测来恢复人口普查的每一行 2)使用训练的模型来获得给定行的人口普查数据的预测。