Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
General:  llms script Data Domain:  nlp Integration:  git
87dbf6ce63
Update 'README.md'
8 months ago
a404be956d
upload script
8 months ago
Storage Buckets

README.md

You have to be logged in to leave a comment. Sign In

Elo Rating Calculator

This is a very simple script to calculate Elo Rating. Useful for LLM and RLHF tasks.

Example Usage

matrix = [
    [0, 2, 0], # Player 0 won against Player 1 twice
    [1, 0, 0], # Player 1 won against Player 0 once
    [1, 1, 0]  # Player 2 won against Player 0 and Player 1 once each
]

ratings = compute_elo(matrix)
print(ratings)
Tip!

Press p or to see the previous file or, n or to see the next file

About

A simple script to compute Elo Ratings. Can be used for Large Language Models (LLM) and Reinforcement Learning from Human Feedback (RLHF) tasks.

Collaborators 1

Comments

Loading...