Interface ScoreEstimateResponse

interface ScoreEstimateResponse {
    autoscored_board_state?: JGOFNumericPlayerColor[][];
    autoscored_needs_sealing?: JGOFSealingIntersection[];
    autoscored_removed?: JGOFMove[];
    ownership: number[][];
    score?: number;
    win_rate?: number;
}

Properties

autoscored_board_state?: JGOFNumericPlayerColor[][]

Board state after autoscoring logic has been run. Only defined if autoscore was true in the request.

autoscored_needs_sealing?: JGOFSealingIntersection[]

Coordinates that still need sealing

autoscored_removed?: JGOFMove[]

Intersections that are dead or dame. Only defined if autoscore was true in the request.

ownership: number[][]

Matrix of ownership estimates ranged from -1 (white) to 1 (black)

score?: number

Estimated score

win_rate?: number

Estimated win rate