Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. the total outWeights are normalized as part of running markov chain (like User scores are normalized)
  2. might there be a way to reflect this in the UI when people adjust weights?
  3. the current UI Weight slider goes on a logarithmic scale, and doesn't really reflect that these weights are
  4. adjusted when you run markov chain? Or I didn't realize these weights are relative to each other?
  5. Weights are relative to each other at each node, but not across the whole graph...
  6.  
  7. when are weights added?
  8. is it pagerankGraph's job to correctly compute weights? Yes. Through the edge evaluator.
  9. log the actual edge weights and outweight in examplePagerankGraph()
  10.  
  11. if you removed the `froWeight` calc, the test would still pass?
  12.  
  13. with the intuition that posts authored by
  14. important contributors are likely more important than posts authored by someone
  15. who has no history in the project
  16.  
  17.  
  18. how do i go about, as an exercise, creating more plugins?
  19. stack overflow math
  20.  
  21. how could we improve tests..
  22.  
  23. how could this fail?
  24.  
  25. every single node has a synthetic loop weight
  26.  
  27. -> adding the synthetic self-loop to each node
  28. ->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement