|
|
|
|
|
by ctrw
860 days ago
|
|
I tried building a reddit style baord using that. The main issue became that calculating weights was more expensive than everything else combined. At one extreme you have the trust matrix which you just multiply with itself to get the nth hop scores, at the other you had the linked list graph traversal. Neither were good solutions. With how much matrix multiplication were doing for machine learning using the matrix approach now might be feasible. |
|