dataset.md 8.4 KB
Newer Older
S
Superjom 已提交
1 2 3 4
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
S
Superjom 已提交
5 6
<li><a href="#orga96c5e8">1. 数据集介绍</a></li>
<li><a href="#orge73ddcc">2. 特征提取</a>
S
Superjom 已提交
7
<ul>
S
Superjom 已提交
8 9 10
<li><a href="#orgbe379b1">2.1. 类别类特征</a></li>
<li><a href="#org811ca7c">2.2. ID 类特征</a></li>
<li><a href="#orgc1d7d23">2.3. 数值型特征</a></li>
S
Superjom 已提交
11 12
</ul>
</li>
S
Superjom 已提交
13
<li><a href="#org609b660">3. 特征处理</a>
S
Superjom 已提交
14
<ul>
S
Superjom 已提交
15 16 17 18
<li><a href="#org5fdd532">3.1. 类别型特征</a></li>
<li><a href="#orgad85d3e">3.2. ID 类特征</a></li>
<li><a href="#org0cbe90e">3.3. 交叉类特征</a></li>
<li><a href="#org4bdb372">3.4. 特征维度</a>
S
Superjom 已提交
19
<ul>
S
Superjom 已提交
20 21
<li><a href="#org0530a25">3.4.1. Deep submodel(DNN)特征</a></li>
<li><a href="#orged20ff2">3.4.2. Wide submodel(LR)特征</a></li>
S
Superjom 已提交
22 23 24 25
</ul>
</li>
</ul>
</li>
S
Superjom 已提交
26
<li><a href="#org70ad7d8">4. 输入到 PaddlePaddle 中</a></li>
S
Superjom 已提交
27 28 29 30 31
</ul>
</div>
</div>


S
Superjom 已提交
32
<a id="orga96c5e8"></a>
S
Superjom 已提交
33 34 35

# 数据集介绍

S
Superjom 已提交
36
数据集使用 `csv` 格式存储,其中各个字段内容如下:
S
Superjom 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

-   id: ad identifier
-   click: 0/1 for non-click/click
-   hour: format is YYMMDDHH, so 14091123 means 23:00 on Sept. 11, 2014 UTC.
-   C1 &#x2013; anonymized categorical variable
-   banner<sub>pos</sub>
-   site<sub>id</sub>
-   site<sub>domain</sub>
-   site<sub>category</sub>
-   app<sub>id</sub>
-   app<sub>domain</sub>
-   app<sub>category</sub>
-   device<sub>id</sub>
-   device<sub>ip</sub>
-   device<sub>model</sub>
-   device<sub>type</sub>
-   device<sub>conn</sub><sub>type</sub>
-   C14-C21 &#x2013; anonymized categorical variables


S
Superjom 已提交
57
<a id="orge73ddcc"></a>
S
Superjom 已提交
58 59 60

# 特征提取

S
Superjom 已提交
61
下面我们会简单演示几种特征的提取方式。
S
Superjom 已提交
62 63 64 65

原始数据中的特征可以分为以下几类:

1.  ID 类特征(稀疏,数量多)
S
Superjom 已提交
66
```python
S
Superjom 已提交
67 68 69 70 71 72
    -   id
    -   site<sub>id</sub>
    -   app<sub>id</sub>
    -   device<sub>id</sub>

2.  类别类特征稀疏但数量有限
S
Superjom 已提交
73
```python
S
Superjom 已提交
74 75 76 77 78 79
    -   C1
    -   site<sub>category</sub>
    -   device<sub>type</sub>
    -   C14-C21

3.  数值型特征转化为类别型特征
S
Superjom 已提交
80
```python
S
Superjom 已提交
81 82 83
    -   hour (可以转化成数值也可以按小时为单位转化为类别


S
Superjom 已提交
84
<a id="orgbe379b1"></a>
S
Superjom 已提交
85 86 87 88 89 90 91 92 93

## 类别类特征

类别类特征的提取方法有以下两种

1.  One-hot 表示作为特征
2.  类似词向量用一个 Embedding Table 将每个类别映射到对应的向量


S
Superjom 已提交
94
<a id="org811ca7c"></a>
S
Superjom 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108

## ID 类特征

ID 类特征的特点是稀疏数据但量比较大直接使用 One-hot 表示时维度过大

一般会作如下处理

1.  确定表示的最大维度 N
2.  newid = id % N
3.   newid 作为类别类特征使用

上面的方法尽管存在一定的碰撞概率但能够处理任意数量的 ID 特征并保留一定的效果[2]


S
Superjom 已提交
109
<a id="orgc1d7d23"></a>
S
Superjom 已提交
110 111 112 113 114 115 116 117 118

## 数值型特征

一般会做如下处理

-   归一化直接作为特征输入模型
-   用区间分割处理成类别类特征稀疏化表示模糊细微上的差别


S
Superjom 已提交
119
<a id="org609b660"></a>
S
Superjom 已提交
120 121 122 123

# 特征处理


S
Superjom 已提交
124
<a id="org5fdd532"></a>
S
Superjom 已提交
125 126 127 128 129 130 131

## 类别型特征

类别型特征有有限多种值在模型中我们一般使用 embedding table 将每种值映射为连续值的向量

这种特征在输入到模型时一般使用 One-hot 表示相关处理方法如下

S
Superjom 已提交
132
```python
S
Superjom 已提交
133 134 135
    class CategoryFeatureGenerator(object):
        '''
        Generator category features.
S
Superjom 已提交
136 137

        Register all records by calling ~register~ first, then call ~gen~ to generate
S
Superjom 已提交
138 139
        one-hot representation for a record.
        '''
S
Superjom 已提交
140

S
Superjom 已提交
141 142 143
        def __init__(self):
            self.dic = {'unk': 0}
            self.counter = 1
S
Superjom 已提交
144

S
Superjom 已提交
145 146 147 148 149 150 151
        def register(self, key):
            '''
            Register record.
            '''
            if key not in self.dic:
                self.dic[key] = self.counter
                self.counter += 1
S
Superjom 已提交
152

S
Superjom 已提交
153 154
        def size(self):
            return len(self.dic)
S
Superjom 已提交
155

S
Superjom 已提交
156 157 158 159 160 161 162 163 164
        def gen(self, key):
            '''
            Generate one-hot representation for a record.
            '''
            if key not in self.dic:
                res = self.dic['unk']
            else:
                res = self.dic[key]
            return [res]
S
Superjom 已提交
165

S
Superjom 已提交
166 167 168 169 170 171
        def __repr__(self):
            return '<CategoryFeatureGenerator %d>' % len(self.dic)

本任务中,类别类特征会输入到 DNN 中使用。


S
Superjom 已提交
172
<a id="orgad85d3e"></a>
S
Superjom 已提交
173 174 175 176 177 178

## ID 类特征

ID 类特征代稀疏值,且值的空间很大的情况,一般用模操作规约到一个有限空间,
之后可以当成类别类特征使用,这里我们会将 ID 类特征输入到 LR 模型中使用。

S
Superjom 已提交
179
```python
S
Superjom 已提交
180 181 182 183 184 185 186
    class IDfeatureGenerator(object):
        def __init__(self, max_dim):
            '''
            @max_dim: int
                Size of the id elements' space
            '''
            self.max_dim = max_dim
S
Superjom 已提交
187

S
Superjom 已提交
188 189 190 191 192
        def gen(self, key):
            '''
            Generate one-hot representation for records
            '''
            return [hash(key) % self.max_dim]
S
Superjom 已提交
193

S
Superjom 已提交
194 195 196 197
        def size(self):
            return self.max_dim


S
Superjom 已提交
198
<a id="org0cbe90e"></a>
S
Superjom 已提交
199 200 201

## 交叉类特征

S
Superjom 已提交
202
LR 模型作为 Wide & Deep model  `wide` 部分可以输入很 wide 的数据特征空间的维度很大),
S
Superjom 已提交
203 204
为了充分利用这个优势我们将演示交叉组合特征构建成更大维度特征的情况之后塞入到模型中训练

S
Superjom 已提交
205
这里我们依旧使用模操作来约束最终组合出的特征空间的大小具体实现是直接在 `IDfeatureGenerator` 中添加一个~gen<sub>cross</sub><sub>feature</sub>~ 的方法
S
Superjom 已提交
206

S
Superjom 已提交
207
```python
S
Superjom 已提交
208 209 210 211
    def gen_cross_fea(self, fea1, fea2):
        key = str(fea1) + str(fea2)
        return self.gen(key)

S
Superjom 已提交
212
比如,我们觉得原始数据中, `device_id``site_id` 有一些关联(比如某个 device 倾向于浏览特定 site),
S
Superjom 已提交
213 214 215
我们通过组合出两者组合来捕捉这类信息。


S
Superjom 已提交
216
<a id="org4bdb372"></a>
S
Superjom 已提交
217 218 219 220

## 特征维度


S
Superjom 已提交
221
<a id="org0530a25"></a>
S
Superjom 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

### Deep submodel(DNN)特征

<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">


<colgroup>
<col  class="org-left" />

<col  class="org-right" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">feature</th>
<th scope="col" class="org-right">dimention</th>
</tr>
</thead>

<tbody>
<tr>
<td class="org-left">app<sub>category</sub></td>
<td class="org-right">21</td>
</tr>


<tr>
<td class="org-left">site<sub>category</sub></td>
<td class="org-right">22</td>
</tr>


<tr>
<td class="org-left">device<sub>conn</sub><sub>type</sub></td>
<td class="org-right">5</td>
</tr>


<tr>
<td class="org-left">hour</td>
<td class="org-right">24</td>
</tr>


<tr>
<td class="org-left">banner<sub>pos</sub></td>
<td class="org-right">7</td>
</tr>
</tbody>

<tbody>
<tr>
<td class="org-left">Total</td>
<td class="org-right">79</td>
</tr>
</tbody>
</table>


S
Superjom 已提交
280
<a id="orged20ff2"></a>
S
Superjom 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338

### Wide submodel(LR)特征

<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">


<colgroup>
<col  class="org-left" />

<col  class="org-right" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">Feature</th>
<th scope="col" class="org-right">Dimention</th>
</tr>
</thead>

<tbody>
<tr>
<td class="org-left">id</td>
<td class="org-right">10000</td>
</tr>


<tr>
<td class="org-left">site<sub>id</sub></td>
<td class="org-right">10000</td>
</tr>


<tr>
<td class="org-left">app<sub>id</sub></td>
<td class="org-right">10000</td>
</tr>


<tr>
<td class="org-left">device<sub>id</sub></td>
<td class="org-right">10000</td>
</tr>


<tr>
<td class="org-left">device<sub>id</sub> X site<sub>id</sub></td>
<td class="org-right">1000000</td>
</tr>
</tbody>

<tbody>
<tr>
<td class="org-left">Total</td>
<td class="org-right">1,040,000</td>
</tr>
</tbody>
</table>


S
Superjom 已提交
339
<a id="org70ad7d8"></a>
S
Superjom 已提交
340

S
Superjom 已提交
341
# 输入到 PaddlePaddle 中
S
Superjom 已提交
342

S
Superjom 已提交
343
Deep 和 Wide 两部分均以 `sparse_binary_vector` 的格式[1]输入,输入前需要将相关特征拼合,模型最终只接受 3 个 input,
S
Superjom 已提交
344 345
分别是

S
Superjom 已提交
346 347 348
1.  ~dnn input~,DNN 的输入
2.  `lr input`, LR 的输入
3.  ~click~, 标签
S
Superjom 已提交
349 350 351

拼合特征的方法:

S
Superjom 已提交
352
```python
S
Superjom 已提交
353 354 355
    def concat_sparse_vectors(inputs, dims):
        '''
        concaterate sparse vectors into one
S
Superjom 已提交
356

S
Superjom 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
        @inputs: list
            list of sparse vector
        @dims: list of int
            dimention of each sparse vector
        '''
        res = []
        assert len(inputs) == len(dims)
        start = 0
        for no, vec in enumerate(inputs):
            for v in vec:
                res.append(v + start)
            start += dims[no]
        return res

[1] <https://github.com/PaddlePaddle/Paddle/blob/develop/doc/api/v1/data_provider/pydataprovider2_en.rst>