Wide & Deep Learning for Recommender Systems
创新:Wide + Deep架构,Wide采用的是稀疏离散输入;
原文笔记: https://mp.weixin.qq.com/s/LRghf8mj1hjUYri_m3AzBg
采用Criteo数据集进行测试。数据集的处理见../data_process
文件,主要分为:
- 考虑到Criteo文件过大,因此可以通过
read_part
和sample_sum
读取部分数据进行测试; - 对缺失数据进行填充;
- 对密集数据
I1-I13
进行离散化分桶(bins=100),对稀疏数据C1-C26
进行重新编码LabelEncoder
; - 整理得到
feature_columns
; - 切分数据集,最后返回
feature_columns, (train_X, train_y), (test_X, test_y)
;
class WideDeep(Model):
def __init__(self, feature_columns, hidden_units, activation='relu',
dnn_dropout=0., embed_reg=1e-6, w_reg=1e-6):
"""
Wide&Deep
:param feature_columns: A list. sparse column feature information.
:param hidden_units: A list. Neural network hidden units.
:param activation: A string. Activation function of dnn.
:param dnn_dropout: A scalar. Dropout of dnn.
:param embed_reg: A scalar. The regularizer of embedding.
:param w_reg: A scalar. The regularizer of Linear.
"""
- file:Criteo文件;
- read_part:是否读取部分数据,
True
; - sample_num:读取部分时,样本数量,
5000000
; - test_size:测试集比例,
0.2
; - embed_dim:Embedding维度,
8
; - dnn_dropout:Dropout,
0.5
; - hidden_unit:DNN的隐藏单元,
[256, 128, 64]
; - learning_rate:学习率,
0.001
; - batch_size:
4096
; - epoch:
10
;
- 采用Criteo数据集中前
500w
条数据,最终测试集的结果为:AUC: 0.782213, loss: 0.4684
; - 采用Criteo数据集全部内容:
- 学习参数:264,623,128;
- 单个Epoch运行时间【GPU:Tesla V100S-PCI】:324s;
- 测试集结果:
AUC: 0.793095, loss: 0.4692
;