-
|
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. |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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