Title.

  • TheSaneWriterA
    link
    English
    1331 year ago

    To summarize it for people that don’t feel like clicking the link, it essentially takes the log of the post score and then divides it by an exponential function of the time since the post was published.

    • coys25
      link
      fedilink
      English
      1051 year ago

      And this picture helps too: shows the decay in ranking scores for posts of different popularity (score) over time.

      After a day or so, the curve flattens out. This probably explains why we keep seeing posts that are months old in “hot” - if not enough new material is being posted, after the first few pages of “hot”, posts that are 5 days old and 5 months old are essentially the same due to the exponential decay function that was chosen.

      That page gives this equation:

      Rank = ScaleFactor * log(Max(1, 3 + Score)) / (Time + 2)^Gravity
      
      Score = Upvotes - Downvotes
      Time = time since submission (in hours)
      Gravity = Decay gravity, 1.8 is default
      

      My guess is that the “gravity” parameter is the issue at the moment. Something is needed to make the decay less steep, so that really old posts aren’t making it up to the top of the feed.

      There might be some way of tuning the gravity parameter dynamically based on how much content is being submitted, perhaps aiming for something like “the average age of the first 200 posts should be 10 days” (I made those numbers up, but the basic idea would be that the time decay should be steeper when lots of content is submitted and less steep when content is infrequent?)

      • @[email protected]
        link
        fedilink
        English
        141 year ago

        don’t worry, its already fixed. should be in the next release.

        On my personal instance I’m running a build with that and its properly giving nice recent posts ( including the OP)

      • coys25
        link
        fedilink
        English
        101 year ago

        After all of this, I will amend my response to say that I think that there must be something going wrong with the algorithm. Consider these two consecutive posts on my “hot” feed:

        The anti-vax nonsense from two years ago was appropriately downvoted to hell. The post right underneath it is one year old and has a post score of +13. Based on the equation above, the lower post must have a higher rank than the anti-vax post, as it should have both a higher numerator and a lower denominator.

        Time for a review of the source code? Or am I missing something? Do other people see this phenomenon? No older, lower-scored post should be above a newer and higher-scored post in your feed, I think.

        • @[email protected]
          link
          fedilink
          English
          11 year ago

          After a year, both have basically the same rank = 0

          8765 hours in a year, growing exponentially, while the score is static and growns in log.

          • coys25
            link
            fedilink
            English
            3
            edit-2
            1 year ago

            Yeah - though I had thought that still the one should be higher than the other, even if the numbers are small. In the actual equation, this would be multiplied by a scaling factor of 10000, though. (See the code discussion in the other comments). Though, in this case, the rank would still be very close to zero.

            What I had missed is that, in the actual code, the equation is wrapped in floor() and returns an integer. So both are treated as rank = 0 and maybe randomly sorted.

            The question is why are rank 0 posts showing up at all? In my other comment, if you do the math, I think that it should take quite a bit of time for any post with an appreciable score to decay to a rank of zero. Yet we see that these sorts of old posts are appearing relatively high in the hot feed.

            One possible answer was suggested in another comment – it may have to do with how often the scores are recalculated for older posts, and if some have not decayed to zero by the time that the score recalculation stops, they might persist with a non zero score until the instance is restarted. I’m still not sure that that is the right answer, however, because I am guessing that instances like lemmy.world (which I am using) have been restarted recently with the various hacking attempts?

            • @[email protected]
              link
              fedilink
              English
              11 year ago

              Didn’t knew the value of the scaling factor, but supposed it didn’t mattered a lot when the denominator of the division is in the 10^(-8) range.

              Another problem in my opinion is in the log(max(1,3+score)), anything with a score of -2 or less send the max function to 1, the log(1) to 0 and the whole score to 0, so the distributions of post with score 0 should be gigantic without discrimination of a controversial - something score post against something with a score of - thousands. Also, some malicious agent can just use 3 bots to totally fuck all the post on new.

      • @[email protected]
        link
        fedilink
        English
        91 year ago

        I don’t think the max(1, 3 + score) work well neither, basically a post with a score of -2 and another of -100 have have the same log(1) = 0 rank.

      • @[email protected]
        link
        fedilink
        English
        51 year ago

        So who can change the algorithm? Is it up to the admins of each instance (lemmy.world in my case) to change the numbers? There’s not a centralized formula that each instance refers to is there?

        • curiosityLynx
          link
          fedilink
          51 year ago

          Technically every admin could change it by making the change to the code and recompiling it. Practically it’s just code contributors to lemmy development.

      • marsokod
        link
        fedilink
        English
        51 year ago

        Very nice analysis.

        Maybe you want a more neutral and stable metrics for a dynamic measure of the gravity? Otherwise you can flood Lemmy with new posts to bury something.

        Maybe something related to the average number of active users over the past 30 days over the topics you are looking at, which is harder to alter. But regardless, the steepness is definitely an issue as it should change with the number of posts.

        • coys25
          link
          fedilink
          English
          21 year ago

          Yeah - agreed. I don’t know the best solution. The other issue is whether the algorithm is being applied to all feeds and communities in the same way. The experience will be quite different if browsing all on a highly federated, high activity instance, compared to just looking at your subscriptions or browsing a lower-activity single community. Maybe the answer is just in general to decrease the steepness of the curve.

      • @[email protected]
        link
        fedilink
        English
        51 year ago

        Damn. So comments are not included. Anything that has a crapton of comments yet is controversial won’t be shown despite being hot.

      • @[email protected]
        link
        fedilink
        English
        41 year ago

        thanks for the explanation! I wonder whether it is possible, or rather scalable, if users can pick their own parameters, even define their own functions. Is this calculated and cached at the server side or user side?

      • ipodjockeyOP
        link
        fedilink
        English
        21 year ago

        I understand some of the words you said. Sounds like you are the person to fix it 😁.