|
|
|
|
|
by dragontamer
546 days ago
|
|
These are Go AIs. The MCTS search is itself a chain-of-thought. Or in the case of KataGo, a dedicated Ladder-solver that serves as the input to the neural network is more than sufficient. IIRC all ladders of liberties 4 or less are solved by the dedicated KataGo solver. It's not clear why these adversarial examples pop up yet IMO. It's not an issue of search depth or breadth either, it seems like an instinct thing. |
|
I'm not quite sure it's a fair characterization.
Either way...
MCTS evaluates current position using predictions of future positions.
To understand value of ladders the algorithm would need iteratively analyse just the current layout of the pieces on the board.
Apparently the value of ladders is hard to infer from probabilisticrvsample of predictions of the future.
Ladders were accidental human discovery just because our attention is drawn to patterns. It just happens to be that they are valuable and can be mechanistically analyzed and evaluated. AI so far struggles with 1 shot outputting solutions that would require running small iterative program to calculate.