Skip to content

Commit a94a8ec

Browse files
authored
v0.8.5
- Implement the BST model . - Update Transformer Layer, support new attention_type and output_type .
2 parents 4762e85 + e9863cb commit a94a8ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+315
-101
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ script:
5959

6060
notifications:
6161
recipients:
62-
- wcshen1994@163.com
62+
- weichenswc@163.com
6363

6464
on_success: change
6565
on_failure: change

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[![Documentation Status](https://readthedocs.org/projects/deepctr-doc/badge/?version=latest)](https://deepctr-doc.readthedocs.io/)
1313
![CI status](https://github.com/shenweichen/deepctr/workflows/CI/badge.svg)
1414
[![Coverage Status](https://coveralls.io/repos/github/shenweichen/DeepCTR/badge.svg?branch=master)](https://coveralls.io/github/shenweichen/DeepCTR?branch=master)
15-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/d4099734dc0e4bab91d332ead8c0bdd0)](https://www.codacy.com/app/wcshen1994/DeepCTR?utm_source=github.com&utm_medium=referral&utm_content=shenweichen/DeepCTR&utm_campaign=Badge_Grade)
15+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/d4099734dc0e4bab91d332ead8c0bdd0)](https://www.codacy.com/gh/shenweichen/DeepCTR?utm_source=github.com&utm_medium=referral&utm_content=shenweichen/DeepCTR&utm_campaign=Badge_Grade)
1616
[![Disscussion](https://img.shields.io/badge/chat-wechat-brightgreen?style=flat)](./README.md#DisscussionGroup)
1717
[![License](https://img.shields.io/github/license/shenweichen/deepctr.svg)](https://github.com/shenweichen/deepctr/blob/master/LICENSE)
1818
<!-- [![Gitter](https://badges.gitter.im/DeepCTR/community.svg)](https://gitter.im/DeepCTR/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -->
@@ -54,6 +54,7 @@ Let's [**Get Started!**](https://deepctr-doc.readthedocs.io/en/latest/Quick-Star
5454
| Deep Session Interest Network | [IJCAI 2019][Deep Session Interest Network for Click-Through Rate Prediction ](https://arxiv.org/abs/1905.06482) |
5555
| FiBiNET | [RecSys 2019][FiBiNET: Combining Feature Importance and Bilinear feature Interaction for Click-Through Rate Prediction](https://arxiv.org/pdf/1905.09433.pdf) |
5656
| FLEN | [arxiv 2019][FLEN: Leveraging Field for Scalable CTR Prediction](https://arxiv.org/pdf/1911.04690.pdf) |
57+
| BST | [DLP-KDD 2019][Behavior sequence transformer for e-commerce recommendation in Alibaba](https://arxiv.org/pdf/1905.06874.pdf) |
5758
| DCN V2 | [arxiv 2020][DCN V2: Improved Deep & Cross Network and Practical Lessons for Web-scale Learning to Rank Systems](https://arxiv.org/abs/2008.13535) |
5859

5960
## Citation
@@ -82,3 +83,38 @@ If you find this code useful in your research, please cite it using the followin
8283

8384
![wechat](./docs/pics/code.png)
8485

86+
87+
## Main contributors([welcome to join us!](./CONTRIBUTING.md))
88+
89+
<table border="0">
90+
<tbody>
91+
<tr align="center" >
92+
<td>
93+
​ <a href="https://github.com/shenweichen"><img width="70" height="70" src="https://github.com/shenweichen.png?s=40" alt="pic"></a><br>
94+
​ <a href="https://github.com/shenweichen">Shen Weichen</a> ​
95+
<p>
96+
Alibaba Group </p>​
97+
</td>
98+
<td>
99+
<a href="https://github.com/zanshuxun"><img width="70" height="70" src="https://github.com/zanshuxun.png?s=40" alt="pic"></a><br>
100+
<a href="https://github.com/zanshuxun">Zan Shuxun</a> ​
101+
<p>Beijing University <br> of Posts and <br> Telecommunications </p>​
102+
</td>
103+
<td>
104+
​ <a href="https://github.com/pandeconscious"><img width="70" height="70" src="https://github.com/pandeconscious.png?s=40" alt="pic"></a><br>
105+
​ <a href="https://github.com/pandeconscious">Harshit Pande</a>
106+
<p> Amazon </p>​
107+
</td>
108+
<td>
109+
​ <a href="https://github.com/codewithzichao"><img width="70" height="70" src="https://github.com/codewithzichao.png?s=40" alt="pic"></a><br>
110+
​ <a href="https://github.com/codewithzichao">Li Zichao</a>
111+
<p> Peking University </p>​
112+
</td>
113+
<td>
114+
​ <a href="https://github.com/TanTingyi"><img width="70" height="70" src="https://github.com/TanTingyi.png?s=40" alt="pic"></a><br>
115+
<a href="https://github.com/TanTingyi">LeoCai</a>
116+
<p> Chongqing University <br> of Posts and <br> Telecommunications </p>​
117+
</td>
118+
</tr>
119+
</tbody>
120+
</table>

deepctr/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .utils import check_version
2-
3-
__version__ = '0.8.3'
4-
check_version(__version__)
1+
from .utils import check_version
2+
3+
__version__ = '0.8.5'
4+
check_version(__version__)

deepctr/estimator/models/afm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
44
Author:
5-
Weichen Shen, wcshen1994@163.com
5+
Weichen Shen, weichenswc@163.com
66
77
Reference:
88
[1] Xiao J, Ye H, He X, et al. Attentional factorization machines: Learning the weight of feature interactions via attention networks[J]. arXiv preprint arXiv:1708.04617, 2017.

deepctr/estimator/models/autoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
44
Author:
5-
Weichen Shen, wcshen1994@163.com
5+
Weichen Shen, weichenswc@163.com
66
77
Reference:
88
[1] Song W, Shi C, Xiao Z, et al. AutoInt: Automatic Feature Interaction Learning via Self-Attentive Neural Networks[J]. arXiv preprint arXiv:1810.11921, 2018.(https://arxiv.org/abs/1810.11921)

deepctr/estimator/models/ccpm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
44
Author:
5-
Weichen Shen, wcshen1994@163.com
5+
Weichen Shen, weichenswc@163.com
66
77
Reference:
88
[1] Liu Q, Yu F, Wu S, et al. A convolutional click prediction model[C]//Proceedings of the 24th ACM International on Conference on Information and Knowledge Management. ACM, 2015: 1743-1746.

deepctr/estimator/models/dcn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding:utf-8 -*-
22
"""
33
Author:
4-
Weichen Shen, wcshen1994@163.com
4+
Weichen Shen, weichenswc@163.com
55
66
Reference:
77
[1] Wang R, Fu B, Fu G, et al. Deep & cross network for ad click predictions[C]//Proceedings of the ADKDD'17. ACM, 2017: 12. (https://arxiv.org/abs/1708.05123)

deepctr/estimator/models/deepfm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding:utf-8 -*-
22
"""
33
Author:
4-
Weichen Shen, wcshen1994@163.com
4+
Weichen Shen, weichenswc@163.com
55
66
Reference:
77
[1] Guo H, Tang R, Ye Y, et al. Deepfm: a factorization-machine based neural network for ctr prediction[J]. arXiv preprint arXiv:1703.04247, 2017.(https://arxiv.org/abs/1703.04247)

deepctr/estimator/models/fibinet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding:utf-8 -*-
22
"""
33
Author:
4-
Weichen Shen, wcshen1994@163.com
4+
Weichen Shen, weichenswc@163.com
55
66
Reference:
77
[1] Huang T, Zhang Z, Zhang J. FiBiNET: Combining Feature Importance and Bilinear feature Interaction for Click-Through Rate Prediction[J]. arXiv preprint arXiv:1905.09433, 2019.

deepctr/estimator/models/fnn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding:utf-8 -*-
22
"""
33
Author:
4-
Weichen Shen, wcshen1994@163.com
4+
Weichen Shen, weichenswc@163.com
55
66
Reference:
77
[1] Zhang W, Du T, Wang J. Deep learning over multi-field categorical data[C]//European conference on information retrieval. Springer, Cham, 2016: 45-57.(https://arxiv.org/pdf/1601.02376.pdf)

0 commit comments

Comments
 (0)