Commit 87542a4f authored by 赵威's avatar 赵威

fix online ids

parent be168588
...@@ -157,6 +157,6 @@ def get_diary_info_from_es(fields=["id"]): ...@@ -157,6 +157,6 @@ def get_diary_info_from_es(fields=["id"]):
def get_online_ids(content_type): def get_online_ids(content_type):
q = {"query": {"bool": {"must": [{"term": {"is_online": False}}]}}} q = {"query": {"bool": {"must": [{"term": {"is_online": True}}]}}}
results = es_scan(content_type, q) results = es_scan(content_type, q)
return results return results
...@@ -195,10 +195,9 @@ if __name__ == "__main__": ...@@ -195,10 +195,9 @@ if __name__ == "__main__":
save_clicked_answer_ids_item2vec() save_clicked_answer_ids_item2vec()
for id in ["982563", "868599", "868619", "987609", "969024"]: for id in ["507016"]:
try: try:
ANSWER_CLICK_IDS_MODEL = word2vec.Word2Vec.load(answer_click_ids_model_path) ANSWER_CLICK_IDS_MODEL = word2vec.Word2Vec.load(answer_click_ids_model_path)
ANSWER_CLICK_IDS = set(ANSWER_CLICK_IDS_MODEL.wv.vocab.keys())
print(ANSWER_CLICK_IDS_MODEL.wv.most_similar(id, topn=10)) print(ANSWER_CLICK_IDS_MODEL.wv.most_similar(id, topn=10))
except Exception as e: except Exception as e:
print(e) print(e)
......
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