Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. from typing import *
  2.  
  3. from zalos.helper import friend_client, mongo_profile_client, pool_client
  4. from zalos.graph import builder
  5.  
  6. class PersonalizePageRankProcessor:
  7.  
  8. def __init__(self):
  9. pass
  10.  
  11. def process(self, user: int) -> Dict[int, float]:
  12. """
  13. :param user:
  14. :return:
  15. """
  16.  
  17. mongo_profile_client.get()
  18.  
  19. builder.build_graph_second_depth_igraph()
  20. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement