-
I am very interested in this project and decided to try it out in some of my own hobbies. How is the aggregate score calculated? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The code is here: https://github.com/trane-project/trane/blob/master/src/scorer.rs#L41 The short answer is that the final score is a weighted average of the scores. The weight is based on how recent the score is. And each score is adjusted depending on how recent it is and the position within the input array. The score of a trial is lowered with each passing day to simulate the atrophy of skills/recall. |
Beta Was this translation helpful? Give feedback.
The code is here: https://github.com/trane-project/trane/blob/master/src/scorer.rs#L41
The short answer is that the final score is a weighted average of the scores. The weight is based on how recent the score is. And each score is adjusted depending on how recent it is and the position within the input array. The score of a trial is lowered with each passing day to simulate the atrophy of skills/recall.