starspringcloud
starspringcloud
Please refer to the [FAQ](https://deepctr-doc.readthedocs.io/en/latest/FAQ.html) in doc and search for the [related issues](https://github.com/shenweichen/DeepCTR/issues) before you ask the question. **Describe the question(问题描述)** A clear and concise description of what the question...
实数特征支持问题
hi 拜读了你的代码,似乎不支持实值特征,要求特征值 为0/1, 但fm 理论上是支持实值特征的, 请问这么设计的原因是什么?
paddleRec/models/rank/bst/net.py 第435行 item_sequence = paddle.concat( [hist_item_emb, hist_item_emb, hist_position_emb], axis=2) 应该是 item_sequence = paddle.concat( [hist_item_emb, hist_cat_emb, hist_position_emb], axis=2)
我的理解应该是 dsigmoid(SUM( w[j][k]*ah[j])), 而不是dsigmoid(self.ao[k])