|
Hello, I want to calculate the CPS (Combined Performance Score) based on my own model, what is the equation to calculate the CPS? It seems that the F1 part of CPS is F1 value itself, but I cannot figure out how to calculate the RMSD and Ksrme parts. |
Answered by
janosh
Apr 15, 2025
Replies: 1 comment
|
CPS is a dynamic metric computed based on user-defined weights so it has to be computed on-device of visitors to the website. for that reason, it's currently only implemented in TypeScript: matbench-discovery/site/src/lib/combined_perf_score.ts Lines 73 to 122 in 32b227a but it's a simple formula and any LLM should be able to convert it to Python for you |
0 replies
Answer selected by
janosh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CPS is a dynamic metric computed based on user-defined weights so it has to be computed on-device of visitors to the website. for that reason, it's currently only implemented in TypeScript:
matbench-discovery/site/src/lib/combined_perf_score.ts
Lines 73 to 122 in 32b227a