Open-Assistant icon indicating copy to clipboard operation
Open-Assistant copied to clipboard

Intransparent Leaderboard points

Open HUisHU-Christian opened this issue 2 years ago • 3 comments

So far it is quite unclear, why some persons get more points for less suggestions, answers or labels. This seems unfair. It would be nice to see a legend or a link to the legend to see how the points are calculated.

HUisHU-Christian avatar Feb 05 '23 18:02 HUisHU-Christian

The magic formula can be found here:

    def compute_leader_score(self) -> int:
        return (
            self.prompts
            + self.replies_assistant * 4
            + self.replies_prompter
            + self.labels_simple
            + self.labels_full * 2
            + self.rankings_total
            + self.rankings_good
            + self.accepted_prompts
            + self.accepted_replies_assistant * 4
            + self.accepted_replies_prompter
            + self.reply_ranked_1 * 9
            + self.reply_ranked_2 * 3
            + self.reply_ranked_3
        )

The web team decided for simplicity not to show all columns/values. Future version might also include values which are currently only calculated for the troll-boards (i.e. scoring will be based on even more values). Maybe link to the score-function can be added to the FAQ or documentation.

andreaskoepf avatar Feb 05 '23 19:02 andreaskoepf

This is a good invitation for someone to figure out how to display all those de-aggregated statistics in a way that resolves this issue

fozziethebeat avatar Feb 06 '23 23:02 fozziethebeat

Refs #996 https://github.com/LAION-AI/Open-Assistant/issues/1957

AbdBarho avatar Mar 05 '23 08:03 AbdBarho