mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 13:55:23 +02:00
feat: simplify verdict to winner/unsuccessful with >50% threshold
- winner if posterior probability > 50%, unsuccessful otherwise - Removes inconclusive — binary outcome based on Bayesian signal - Label "Loser" renamed to "Unsuccessful" - Updated all stored experiment verdicts in DB Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
127fa9c279
commit
2363982144
@@ -264,8 +264,8 @@ export const getVerdictColor = (verdict?: ExperimentVerdict): string => {
|
||||
export const getVerdictLabel = (verdict?: ExperimentVerdict): string => {
|
||||
switch (verdict) {
|
||||
case 'winner': return 'Winner';
|
||||
case 'loser': return 'Loser';
|
||||
case 'inconclusive': return 'Inconclusive';
|
||||
case 'loser': return 'Unsuccessful';
|
||||
case 'inconclusive': return 'Unsuccessful';
|
||||
default: return 'Pending';
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user