Commit b1515605 authored by 张彦钊's avatar 张彦钊

Merge branch 'master' of git.wanmeizhensuo.com:ML/ffm-baseline

fix get_active_users bug
parents 5b4b315d 5ddcefae
......@@ -28,7 +28,7 @@ class TopFeatures(object):
self.cid_type = self.cid_type.replace(' ','')
sql = "select cid,count(cid) from data_feed_click \
where from_unixtime(time,'%Y-%m-%d')=date_add(curdate(), interval -{0} day) \
and device_type{1}} and cid_type='{2}' \
and device_type{1} and cid_type='{2}' \
group by cid order by count(cid) desc".format(self.ndays, self.platform, self.cid_type)
clk_times = tuple2dict(con_sql(sql))
return clk_times
......@@ -40,7 +40,7 @@ class TopFeatures(object):
self.cid_type = self.cid_type[:-6] + ' ' + self.cid_type[:-6:]
sql = "select cid,count(cid) from data_feed_exposure \
where from_unixtime(time,'%Y-%m-%d')=date_add(curdate(), interval -{0} day) \
and device_type{1}} and cid_type='{2}' \
and device_type{1} and cid_type='{2}' \
group by cid order by count(cid) desc".format(self.ndays, self.platform, self.cid_type)
imp_times = tuple2dict(con_sql(sql))
return imp_times
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment