Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
7cada188
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7cada188
编写于
10月 25, 2018
作者:
Q
Qiao Longfei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update comment and add requirements.txt
上级
2b37298d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
17 addition
and
3 deletion
+17
-3
fluid/recommendation/ctr/README.cn.md
fluid/recommendation/ctr/README.cn.md
+7
-1
fluid/recommendation/ctr/README.md
fluid/recommendation/ctr/README.md
+7
-0
fluid/recommendation/ctr/preprocess.py
fluid/recommendation/ctr/preprocess.py
+2
-2
fluid/recommendation/ctr/requirements.txt
fluid/recommendation/ctr/requirements.txt
+1
-0
未找到文件。
fluid/recommendation/ctr/README.cn.md
浏览文件 @
7cada188
...
...
@@ -14,6 +14,13 @@
}
```
## 运行环境
需要先安装PaddlePaddle Fluid,然后运行:
```
shell
pip
install
-r
requirements.txt
```
## 数据集
本文使用的是Kaggle公司举办的
[
展示广告竞赛
](
https://www.kaggle.com/c/criteo-display-ad-challenge/
)
中所使用的Criteo数据集。
...
...
@@ -27,7 +34,6 @@ cd data && ./download.sh && cd ..
## 模型
本例子只实现了DeepFM论文中介绍的模型的DNN部分,DeepFM会在其他例子中给出。
```
## 数据准备
处理原始数据集,整型特征使用min-max归一化方法规范到[0, 1],类别类特征使用了one-hot编码。原始数据集分割成两部分:90%用于训练,其他10%用于训练过程中的验证。
...
...
fluid/recommendation/ctr/README.md
浏览文件 @
7cada188
...
...
@@ -19,6 +19,13 @@ both low order and high order feature interactions. For details of the
factorization machines, please refer to the paper
[
factorization
machines
](
https://www.csie.ntu.edu.tw/~b97053/paper/Rendle2010FM.pdf
)
## Environment
You should install PaddlePaddle Fluid first, and run:
```
shell
pip
install
-r
requirements.txt
```
## Dataset
This example uses Criteo dataset which was used for the
[
Display Advertising
Challenge
](
https://www.kaggle.com/c/criteo-display-ad-challenge/
)
...
...
fluid/recommendation/ctr/preprocess.py
浏览文件 @
7cada188
...
...
@@ -89,8 +89,8 @@ class ContinuousFeatureGenerator:
@
click
.
option
(
"--outdir"
,
type
=
str
,
help
=
"Path to save the processed data"
)
def
preprocess
(
datadir
,
outdir
):
"""
All
the 13 integer features are normalzied to continous values and these
continous features are combined into one vecotr with dimension
13.
All
13 integer features are normalized to continuous values and these continuous
features are combined into one vector with dimension of
13.
Each of the 26 categorical features are one-hot encoded and all the one-hot
vectors are combined into one sparse binary vector.
...
...
fluid/recommendation/ctr/requirements.txt
0 → 100644
浏览文件 @
7cada188
click
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录