You might remember this post where I asked about how sorting by "Hot" gives you a lot of new posts that were posted in quick succession, making it look like "New".
I was recommend by a few to use "Scaled", so recently I did. Except this felt even worse: I saw new posts that were posted in succession with 0 upvotes, one having 1 upvote.
Isn't this weird? Or am I doing it wrong?

13 Comments
asudox@lemmy.asudox.dev · 23 pts · 1y
No, it is not weird. Scaled, according to the docs, is like Hot, but less active communities' posts get a boost.
Edit: here's a bit more detail
The exact function to calculate the scaled rank is this one:
The hot rank is calculated like this:
dfyx@lemmy.helios42.de · 12 pts · 1y
Exactly. In a small community that usually doesn't see much activity, if a post gets even one upvote, scaled might consider it relevant.
donuts@lemmy.world · 7 pts · 1y
But these are 3 posts with 0 upvotes that recently have been posted, how is that "Hot", let alone at the top of "Hot"?
MHLoppy@fedia.io · 12 pts · 1y
"Hot" is a mix of recency and votes. The posts in your example score low on votes but very high on recency (<1 hour ago) and extremely high on the size scaling because that community ( !hp_fanfiction@literature.cafe ) is tiny with only two subscribers.
You may consider Scaled to be a more appropriate sorting option for when you're viewing the communities that you've subscribed to, rather than the firehose of /all
donuts@lemmy.world · 7 pts · 1y
It's starting to make sense, thanks. I'll try to keep scaled to my subscriptions, although I like "All" for the variety.
Bezier@suppo.fi · 6 pts · 1y
Ranking:
Hot = Upvotes / Age
Scaled = Hot / Community size
Hpfanfiction must be a fresh community with no one joined yet and the creator posting a lot immediately. Alternatively, it just federated to LW.
On hot, I guess you managed to open it with the exact same second?
donuts@lemmy.world · 4 pts · 1y
But 0 upvotes divided by any age is still 0. So Hot = 0, and Scaled would then be 0 divided by community size, and therefore also still 0.
It was in response to "Scaled is like Hot", so I wasn't looking at the Hot page at that moment, but I tried to convey how it doesn't make sense that a post with 0 upvotes get to the top of Scaled
asudox@lemmy.asudox.dev · 5 pts · 1y
If you want a bit more detail, look at my edit. The functions to calculate the hot and scaled for content is now there.
MHLoppy@fedia.io · 5 pts · 1y
You're making assumptions about how they work based on your intuition - luckily we don't need to do much guesswork about how the sorts are actually implemented because we can just look at the code to check:
And since it relies on the hot_rank function:
So if there's no further changes made elsewhere in the code (which may not be true!), it appears that
hothas no negative weighting for votes <2 because it uses the max value out of2andscore + 2in its calculation. If correct, those posts you're pointing out are essentially being ranked as if their voting score was 2, which I hope helps to explain things.edit: while looking for the function someone else beat me to it and it looks like possibly the
hot_rankfunction I posted may or may not be the current version but hopefully you get the idea regardless!donuts@lemmy.world · 4 pts · 1y
Thanks! That clears up a lot. Appreciate the paraphrasing too.
Small difference: I made the assumption that the simplified version was exactly how it works, as in, taking the comment at face value.
MHLoppy@fedia.io · 4 pts · 1y
Fair enough - glad you've found it helpful (Y)
Bezier@suppo.fi · 4 pts · 1y
It's a simplified version they had explained somewhere in the documentation. Details like that may be left out.
AwesomeLowlander@sh.itjust.works · 1 pts · 1y
Scaled is unfortunately useless for /all, it gets flooded with posts from communities with like 5 subscribers. I don't understand why they didn't implement a simple minimum upvote filter on it, would have made it so much more useful.