Skip to content

Commit f9b07e4

Browse files
author
浅梦
authored
update doc
1 parent 7ab8bc6 commit f9b07e4

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ DeepCTR is a **Easy-to-use**,**Modular** and **Extendible** package of deep-lear
2424
- Provide `tensorflow estimator` interface for **large scale data** and **distributed training**. [example](https://deepctr-doc.readthedocs.io/en/latest/Quick-Start.html#getting-started-4-steps-to-deepctr-estimator-with-tfrecord)
2525
- It is compatible with both `tf 1.x` and `tf 2.x`.
2626

27-
27+
Some related project:
28+
- DeepMatch: https://github.com/shenweichen/DeepMatch
29+
- DeepCTR-Torch: https://github.com/shenweichen/DeepCTR-Torch
2830

2931

3032
Let's [**Get Started!**](https://deepctr-doc.readthedocs.io/en/latest/Quick-Start.html)([Chinese Introduction](https://zhuanlan.zhihu.com/p/53231955)) and [welcome to join us!](./CONTRIBUTING.md)
@@ -78,3 +80,13 @@ Please follow our wechat to join group:
7880
- wechat ID: **deepctrbot**
7981

8082
![wechat](./docs/pics/code.png)
83+
84+
## Cooperative promotion 合作推广
85+
For more information about the recommendation system, such as **feature engineering, user profile, matching, ranking and multi-objective optimization, online learning and real-time computing, and more cutting-edge technologies and practical projects**:
86+
87+
更多关于推荐系统的内容,如**特征工程,用户画像,召回,排序和多目标优化,在线学习与实时计算以及更多前沿技术和实战项目**等可参考:
88+
89+
90+
- [推荐系统实战](https://www.julyedu.com/course/getDetail/181?ccode=5ee751d37278c)
91+
- [推荐系统就业小班](https://www.julyedu.com/course/getDetail/321?ccode=5ee751d37278c)
92+

deepctr/layers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def compute_mask(self, inputs, mask):
126126
return None
127127

128128
def get_config(self, ):
129-
config = {'mode': self.mode, 'l2_reg': self.l2_reg, 'use_bias': self.use_bias}
129+
config = {'mode': self.mode, 'l2_reg': self.l2_reg, 'use_bias': self.use_bias, 'seed': self.seed}
130130
base_config = super(Linear, self).get_config()
131131
return dict(list(base_config.items()) + list(config.items()))
132132

docs/requirements.readthedocs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tensorflow==1.12.0
1+
tensorflow==1.15.2

docs/source/index.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,18 @@ DisscussionGroup 交流群
5656

5757
.. image:: ../pics/code.png
5858

59+
Cooperative promotion 合作推广
60+
------------------------------
61+
62+
For more information about the recommendation system, such as **feature engineering, user profile, matching, ranking and multi-objective optimization, online learning and real-time computing, and more cutting-edge technologies and practical projects** :
63+
64+
更多关于推荐系统的内容,如 **特征工程,用户画像,召回,排序和多目标优化,在线学习与实时计算以及更多前沿技术和实战项目** 等可参考:
65+
66+
- `推荐系统实战 <https://www.julyedu.com/course/getDetail/181?ccode=5ee751d37278c>`_
67+
- `推荐系统就业小班 <https://www.julyedu.com/course/getDetail/321?ccode=5ee751d37278c>`_
68+
69+
70+
5971
.. toctree::
6072
:maxdepth: 2
6173
:caption: Home:

0 commit comments

Comments
 (0)