These Are the [Feed] Levers I Know I Know

Late last year, we introduced a means of more easily configuring the feed results; you can read more about the first experiment here.

I say easier in that it still requires staring at Ruby code and cutting a pull request. But the factors that go into…

Late last year, we introduced a means of more easily configuring the feed results; you can read more about the first experiment here.

I say easier in that it still requires staring at Ruby code and cutting a pull request. But the factors that go into placement in the feed are more transparent; I mean if you think about lots set theory and combinatorial mathematics as transparent.

A current constraint is that the implementation was developed to compete with the the incumbent. In that time, we replaced the incumbent.

In this post I want to share the different levers that exist.

50 12 Ways to Leave a Lever

Below is a list of the 50 12 levers that presently exist for tweaking the feed:

`daily_decay_factor`
Weight to give based on the relative age of the article.
`comment_count_by_those_followed_factor`
Weight to give for the number of comments on the article from other users that the given user follows.
`comments_count_factor`
Weight to give to the number of comments on the article.
`experience_factor`
Weight to give based on the difference between experience level of the article and given user.
`featured_article_factor`
Weight to give for feature or unfeatured articles.
`following_author_factor`
Weight to give when the given user follows the article’s author.
`following_org_factor`
Weight to give to the when the given user follows the article’s organization.
`latest_comment_factor`
Weight to give an article based on it’s most recent comment.
`matching_tags_factor`
Weight to give for the number of intersecting tags the given user follows and the article has.
`privileged_user_reaction_factor`
Weight privileged user’s reactions.
`reactions_factor`
Weight to give for the number of reactions on the article.
`spaminess_factor`
Weight to give based on spaminess of the article.

Note: I copied these factors and descriptions from the code comments. As I’ve lived with this, I like the idea of renaming “factor” to lever.

The names of these “levers” are presently defined in the Articles::Feeds::WeightedQueryStrategy::SCORING_METHOD_CONFIGURATIONS constant. The names are not sacred nor all that important, except as a quick means to understand their description. Likewise, the descriptions are the current code comments for the above Ruby constant.

Present Implementation

For each article that we query, each factor lever will assign that article a value between 0 and 1. We then multiply each of the lever values together to come up with a “relative rank”. Last we sort articles from greatest “relative rank” down to “lowest rank”.

The above levers were our best effort to look at the constellation of data associated with each article. There may be more levers we can develop. And we can certainly configure each of these levers to create a “catalog” of configurations.

A Mathematical Diversion

This requires more careful consideration; if one lever returns 0.9, then the greatest “relative rank” the article could have is 0.9. If two levers return 0.9, the greatest “relative rank” is 0.81 (e.g. 0.9 × 0.9). Consider if all levers return 0.9 we’d have a 0.28 “relative rank”. If all levers return 0.8 we’d have a 0.069 “relative rank”.

For a given query, we apply the factors consistently. So we could change our assumption of values between 0 and 1. We could also move from multiplying factors to adding.

The greater deviation is to move from multiplication to addition. Moving to addition (but keeping the 0 to 1 range) means if we move “relative rank” down to 0 for one lever, that would contribute 8.33% of the “relative rank” (e.g. there are 12 levers, 1 ÷ 12 is 0.0833.)

Another consideration is that each of these levers are independent of each other. I suppose we could start creating dependencies, but at the moment my brain hurts thinking about how we’d do that with the given implementation and given how we build the SQL.

In anycase, the levers are envisioned as having bounded ranges. That’s something we want to continue.

Conclusion

My hope in sharing this is to shine a bit of light onto the feed. It’s something that I, as as the lead for Content Experience, am interested in stewarding along to improve the overall experience of folks engaging on DEV and across other Forems.


Print Share Comment Cite Upload Translate
APA
Jeremy Friesen | Sciencx (2024-03-29T15:17:55+00:00) » These Are the [Feed] Levers I Know I Know. Retrieved from https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/.
MLA
" » These Are the [Feed] Levers I Know I Know." Jeremy Friesen | Sciencx - Friday April 8, 2022, https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/
HARVARD
Jeremy Friesen | Sciencx Friday April 8, 2022 » These Are the [Feed] Levers I Know I Know., viewed 2024-03-29T15:17:55+00:00,<https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/>
VANCOUVER
Jeremy Friesen | Sciencx - » These Are the [Feed] Levers I Know I Know. [Internet]. [Accessed 2024-03-29T15:17:55+00:00]. Available from: https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/
CHICAGO
" » These Are the [Feed] Levers I Know I Know." Jeremy Friesen | Sciencx - Accessed 2024-03-29T15:17:55+00:00. https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/
IEEE
" » These Are the [Feed] Levers I Know I Know." Jeremy Friesen | Sciencx [Online]. Available: https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/. [Accessed: 2024-03-29T15:17:55+00:00]
rf:citation
» These Are the [Feed] Levers I Know I Know | Jeremy Friesen | Sciencx | https://www.scien.cx/2022/04/08/these-are-the-feed-levers-i-know-i-know/ | 2024-03-29T15:17:55+00:00
https://github.com/addpipe/simple-recorderjs-demo