标签:模型 迭代器 博客 ase key embed 处理 category 中间
通过tensorflow 预定义的feature column 达到特征处理的功能.
工作流程:
官方提供了常用的9种(上图下层)feature column, 用于特征处理. 通过这九种操作最终都会得到 category column / dense column 对象.
首先我们需要知道, 可以将tensor 处理, 并输入模型的只有dense column. categorical column 只是转化的中间结果.
其次:
embedding_column 可以通过share_embedding_column共享参数.(操作见另一篇博客)
tf.contrib.feature_column 中包含了关于sequence tensor 的处理方式. 与之对应需要通过sequence_input_layer进行解析
标签:模型 迭代器 博客 ase key embed 处理 category 中间
原文地址:https://www.cnblogs.com/wuchengze/p/10547685.html