Interface JGOFAIReviewMoveVariation

interface JGOFAIReviewMoveVariation {
    lcb?: number;
    moves: JGOFIntersection[];
    policy?: number;
    score?: number;
    score_mean?: number;
    score_stdev?: number;
    utility?: number;
    utility_lcb?: number;
    visits: number;
    win_rate: number;
}

Properties

lcb?: number

lower confidence bound, both KataGo and LeelaZero provide this

Followup predicted moves by the AI

policy?: number

From Leela Zero

score?: number

How many points black is predicted to win for this variation (or lose by if negative)

score_mean?: number

From KataGo

score_stdev?: number

From KataGo

utility?: number

From KataGo

utility_lcb?: number

From KataGo

visits: number

Number of times the AI considered the first move of this variation

win_rate: number

Probability of black wining to report for this variation