tf_repos
tf_repos copied to clipboard
wide_n_deep.py 中设置隐层节点数
hidden_units = map(int, FLAGS.deep_layers.split(",")) 改为 hidden_units = list(map(int, FLAGS.deep_layers.split(",")))
因为你用的python3
请教下,wide_deep中怎么处理多值特征。