Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Statistical accuracy PP and difficulty scaling for the osu!taiko ruleset #20963

Merged
merged 42 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
442e68a
Implement taiko deviation estimation
Natelytle Oct 25, 2022
d5b06ae
Fix difficultyvalue acc scaling
Natelytle Oct 25, 2022
607a006
oops
Natelytle Oct 25, 2022
87cba2d
Slight adjustments
Natelytle Oct 25, 2022
7d3338a
LTCA Balancing pass
Natelytle Oct 26, 2022
af919a6
harshen deviation scaling
Natelytle Oct 26, 2022
2940d18
Fix formatting
Natelytle Oct 27, 2022
883790c
Return null instead of infinity
Natelytle Oct 28, 2022
01c79d8
remove other infinity reference
Natelytle Oct 28, 2022
7403c1c
Return null for greatprobability >= 1
Natelytle Oct 29, 2022
16301f0
Fix low end accuracy, buff high end
Natelytle Oct 30, 2022
37c21cd
fix formatting
Natelytle Nov 1, 2022
2ba1634
account for low acc FC deviation
Natelytle Nov 25, 2022
0e4e92b
totalvalue
Natelytle Nov 25, 2022
b579af6
fix dt
Natelytle Nov 25, 2022
e3ef180
fixes
Natelytle Nov 25, 2022
7b5373a
add comments
Natelytle Nov 27, 2022
34533e5
Merge branch 'master' into taikostatacc
smoogipoo Nov 29, 2022
6a27206
bugfix + tests
Natelytle Dec 2, 2022
2b74c4e
tests return a greathitwindow of 0, add check
Natelytle Dec 3, 2022
45e8d18
fix extremely low OD breaking deviation calc
Natelytle Dec 6, 2022
334f60f
Reformat everything to be simpler
Natelytle Feb 22, 2023
d5ac73e
Merge remote-tracking branch 'osumaster/master' into taikostatacc
Natelytle Feb 23, 2023
adf1618
Change accuracy scaling
Natelytle Feb 23, 2023
858afcd
Pass OK hit window as a separate difficulty attribute, fix erfc appro…
Natelytle Mar 21, 2023
9aa11e0
update desmos
Natelytle Mar 21, 2023
7ee9101
Merge remote-tracking branch 'osumaster/master' into taikostatacc
Natelytle Jun 26, 2023
31c8cf0
Buff accuracy scaling
Natelytle Jul 28, 2023
4de0246
Make comments more professional
Natelytle Jul 28, 2023
faddc4f
Merge remote-tracking branch 'osumaster/master' into taikostatacc
Natelytle Jul 28, 2023
e569420
Serialize ok hit window attribute to db
Natelytle Jul 28, 2023
5f0020b
Reduce accuracy scaling
Natelytle Jul 31, 2023
3a609c9
Merge branch 'master' into taikostatacc
smoogipoo Aug 5, 2023
8a26cda
Merge master
Natelytle Mar 10, 2024
caba051
Compute the upper bound on deviation with a 99% confidence interval
Natelytle Mar 10, 2024
6ddb2b7
Include misses in the great window deviation calc
Natelytle Mar 10, 2024
5370595
Fix comment
Natelytle Mar 10, 2024
a9b3416
Remove MathNet.Numerics dependency
Natelytle Mar 10, 2024
1714567
Save deviation calculations to variables
Natelytle May 29, 2024
f8f18b6
Fix naming convention
Natelytle May 29, 2024
2fb22f1
Move the return value for deviation below the local functions
Natelytle Jun 23, 2024
84d6467
Merge branch 'master' into taikostatacc
bdach Oct 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix comment
  • Loading branch information
Natelytle committed Mar 10, 2024
commit 537059504aa12c4dbc4a790c8dc24603ccdd94f6
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private double computeAccuracyValue(ScoreInfo score, TaikoDifficultyAttributes a

double n = totalHits;

// Proportion of greats hit, ignoring misses.
// Proportion of greats hit.
double p = countGreat / n;

// We can be 99% confident that p is at least this value.
Expand Down
Loading