the-algorithm is such a pretentious name for a repo
It's a colloquial term for recommendation engines, how often do you hear people say "the algorithm" (vs. "the recommendation engine") on YouTube?
Twitter's Recommendation Algorithm
71–80 of 1001 posts
Re: Twitter's Recommendation Algorithm
#72Re: Twitter's Recommendation Algorithm
#73Does it show the part where is recommends Elon more than anyone else?
Re: Twitter's Recommendation Algorithm
#74From https://github.com/twitter/the-algorithm/blob/7f90d0ca342b92... ( "author_is_elon", candidate => candidate .getOrElse(AuthorIdFeature, None).contains(candidate.getOrElse(DDGStatsElonFeature, 0L))), ( "author_is_power_user", candidate => candidate .getOrElse(AuthorIdFeature, None) .exists(candidate.getOrElse(DDGStatsVitsFeature, Set.empty[Long]).contains)), ( "author_is_democrat", candidate => candidate .getOrEls…
Only used for metrics, apparently. [0] /** * These author ID lists are used purely for metrics collection. We track how often we are * serving Tweets from these authors and how often their tweets are being impressed by users. * This helps us validate in our A/B experimentation platform that we do not ship changes * that negatively impacts one group over others. */ [0]: https://github.com/twitter/the-algorithm/blob/7f…
I suspect the flag corresponds to weights not present in the repo.
Re: Twitter's Recommendation Algorithm
#75I'm not opposed to social media feeds having complex recommendation algorithms. I just wish they allowed you to opt in to a reverse chronological feed of only people you follow, like RSS.
Twitter has this now. The home page is split into two tabs: "For you", the algorithmic feed, and "Following", the reverse chronological feed of just who you follow.
Re: Twitter's Recommendation Algorithm
#76You gotta hand it to Elon - he actually did it.
Re: Twitter's Recommendation Algorithm
#77Does it show the part where is recommends Elon more than anyone else?
Search for Elon gives this: https://github.com/twitter/the-algorithm/search?q=Elon&type=
Re: Twitter's Recommendation Algorithm
#78Main repos: - https://github.com/twitter/the-algorithm - https://github.com/twitter/the-algorithm-ml Blogs: - Eng: https://blog.twitter.com/engineering/en_us/topics/open-sourc... - Biz: https://blog.twitter.com/en_us/topics/company/2023/a-new-era...
Re: Twitter's Recommendation Algorithm
#79Context: I teach at Princeton and study social media and recommendation systems. From a very quick skim of the repositories, this appears to be quite limited transparency. The documentation gives a decent high-level overview of how Tweet recommendation works—no surprises—and the code tracks that roadmap. Those are meaningful positive steps. But the underlying policies and models are almost entirely missing (there are…
Re: Twitter's Recommendation Algorithm
#80Great pull request here which improves the algorithm: https://github.com/twitter/the-algorithm/pull/17