浅梦
浅梦
这里历史序列中的dense_feature一般做离散化作为sparse_feature输入~
`self.sparse_varlen_feature_columns` includes faetures that are not belong history behavior sequence but are varlen. for example the tags that user liked are sparse_varlen_feature
thanks, have you test your code in tensorflow 1.x like 1.4.0 and 1.15.0?
在实践中对连续变量离散化后进行embedding更常用,所以从`v0.5.0`及后续版本中移除了对连续特征进行embedding进行交互的功能。 如果希望使用这样的功能,可以使用`v0.4.1`版本。
在特征处理阶段进行的,你在跟下代码看看
在v0.5.0以前的版本,你看下完整的源码
官网有每个版本的更新日志,你可以自己看下
请提供一份最短可复现的代码,方便我们排查问题