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

fix sql bug

parent e460c3c6
No related merge requests found
......@@ -5,7 +5,7 @@ from config import *
def get_allCitiesDiaryTop2000():
# 获取全国点击量TOP2000日记
sql = "select city_id,cid where cid_type = 'diary' order by click_count_choice desc limit 2000"
sql = "select city_id,cid from data_feed_click where cid_type = 'diary' order by click_count_choice desc limit 2000"
allCitiesTop2000 = con_sql(sql)
allCitiesTop2000 = allCitiesTop2000.rename(columns={0:"city_id",1:"cid"})
allCitiesTop2000.to_csv(DIRECTORY_PATH+"diaryTestSet/allCitiesDiaryTop2000.csv")
......
# 接收device_id、city_id
# 将device_id、city_id拼接到对应的城市热门日记表
# 把ffm.pkl load进来,将上面的表转化为ffm格式
# 将模型加载,预测,把预测日记的概率值按照降序排序,存到一个表里
# 预测一些真实的device_id
\ No newline at end of file
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