- 博客(12)
- 资源 (5)
- 收藏
- 关注
原创 如何理解 热穿透现象
举个简单的例子,假设是一个极端简单的场景,系统里只有两种人,一种人叫南方人,一种人叫北方人。然后只有两条广告,一个A一个B。南方人 对 广告A的ctr是10%,完全不点击B,并且有一百万条这样的样本;北方人 对 广告B的ctr是1%,A ctr是0.5%,有一万条这样的样本;那么不使用人群分类这个特征的时候,你的模型一定对所有人都推荐A,因为A用这个模型跑出来预估ctr应该接近10%,不论哪个人群。我理解,这种现象就可以理解为热穿透现象。使用人群分类以后,部分权重就会分配给人群,比如南方
2020-09-28 17:43:26 1168
转载 python 时间库 time
在开始之前,首先要说明这几点:1.在Python中,通常有这几种方式来表示时间:1)时间戳 2)格式化的时间字符串 3)元组(struct_time)共九个元素。由于Python的time模块实现主要调用C库,所以各个平台可能有所不同。2.UTC(Coordinated Universal Time,世界协调时)亦即格林威治天文时间,世界标准时间。在中国为UTC+8。DST(Dayligh
2017-06-06 15:41:10 882
转载 Python 时间库 datetime
dir(datetime)Out[23]: ['MAXYEAR', 'MINYEAR', '__doc__', '__name__', '__package__', 'date', 'datetime', 'datetime_CAPI', 'time', 'timedelta', 'tzinfo']包含的数据:MAXYEAR -- 能表示的最大年份MINYEAR
2017-06-05 14:54:32 756
转载 NumPy学习指南 学习笔记(二) 常用函数
1. 文件读写通常情况下,数据是以文件形式存储的。学会读写文件是深入学习Numpy的基础。1.1 创建单位矩阵,并存入txt文件i2 = np.eye(2)i2Out[84]: array([[ 1., 0.], [ 0., 1.]])使用savetxt 函数将数据存储到文件中,当然需要指定文件名以及要保持的数组。np.savetxt("eye.txt
2017-05-12 14:47:33 2594
转载 NumPy doc (七)
np.bincount(x, weights=w) array([ 0.3, 0.7, 1.1]) blackman(M) Return the Blackman window. The Blackman window is a taper formed by using the first three
2017-05-11 14:03:41 5039
转载 NumPy doc (六)
uintc = class uint32(unsignedinteger) | Method resolution order: | uint32 | unsignedinteger | integer | number | generic | __builtin__
2017-05-11 14:02:05 511
转载 NumPy doc (五)
class ndindex(__builtin__.object) | An N-dimensional iterator object to index arrays. | | Given the shape of an array, an `ndindex` instance iterates over | the N-dimensional
2017-05-11 13:59:47 1722
转载 NumPy doc(四)
float_ = class float64(floating, __builtin__.float) | 64-bit floating-point number. Character code 'd'. Python float compatible. | | Method resolution order: | float64
2017-05-11 13:58:09 1002
转载 NumPy doc (三)
class complex128(complexfloating, __builtin__.complex) | Composed of two 64 bit floats | | Method resolution order: | complex128 | complexfloating | in
2017-05-11 13:56:18 367
转载 NumPy doc (二)
class bool_(generic) | Numpy's Boolean type. Character code: ``?``. Alias: bool8 | | Method resolution order: | bool_ | generic | __builtin__.object
2017-05-11 13:52:56 413
转载 NumPy doc (一)
help(numpy)Help on package numpy:NAME numpyFILE c:\anaconda2\lib\site-packages\numpy\__init__.pyDESCRIPTION NumPy ===== Provides 1. An array object of arbitrary
2017-05-11 13:50:36 2407
转载 Numpy 学习指南 学习笔记(一)
1. 数值的组合Numpy 数组有水平组合、垂直组合和深度组合等多种组合方式,我们将使用vstack、dstack、hstack、column_stack、row_stack以及concatenate函数来完成数组的组合。实践如下: (1) 水平组合 将ndarray对象构成的元组作为参数,传给hstack函数。如下所示: 使用concatenate 函数可以实
2017-05-10 10:26:42 4571
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人