Search found 18 matches
- Fri Apr 22, 2022 8:20 pm
- Forum: Ataxx
- Topic: UCT / MCTS & transposition table
- Replies: 4
- Views: 2353
Re: UCT / MCTS & transposition table
Using a transposition table is a good idea, and is rather common. It should make the program stronger. You should not have to keep pointers to parents. If I understand what you do correctly, you may get very different "parent_visit_count" for every child of a node. This does not seem good...
- Tue Apr 19, 2022 8:15 pm
- Forum: Ataxx
- Topic: UCT / MCTS & transposition table
- Replies: 4
- Views: 2353
UCT / MCTS & transposition table
Hi, Has anyone ever tried adding a transposition table to an UCT/MCTS implementation? I tried without much success. It works, but it plays worse than the non-tt version. What I do is: for each position I have a node. This node stores pointers to children (of course as it is a tree) and to all the pa...
Re: playouts
Slight increase to 355 playouts per second (1 thread, 61 stones per playout on average) Which board size? You must be doing something very wrong. Boardsize 9. This version still recreates every chain (string) and so on. I transformed the current version into an incremental, but it played even worse...
Re: playouts
Slight increase to 355 playouts per second (1 thread, 61 stones per playout on average)
Re: playouts
I have just run a benchmark, and Crazy Stone does 4366.81 simulations per second on 19x19, from the empty starting position (Ryzen 7 5800X). This is with patterns and many advanced heuristics. So yes, your playouts are slow. Without heuristics, it may be around 10k per second. You must be doing som...
playouts
Hi,
My single threaded program performs 216 playouts per second (on average 62 'moves').
That's not a lot is it? Or is it?
My single threaded program performs 216 playouts per second (on average 62 'moves').
That's not a lot is it? Or is it?
- Thu Nov 25, 2021 2:27 pm
- Forum: Go AI
- Topic: opening book?
- Replies: 3
- Views: 2214
Re: opening book?
Would it make sense for my tournament software to start with a few randomly placed stones for both sides? In case neither of the players has a way of randomizing and would play the same game over and over again?
- Wed Nov 03, 2021 9:27 pm
- Forum: Go AI
- Topic: opening book?
- Replies: 3
- Views: 2214
opening book?
Does Go have something like an opening book?
In what format is it?
If not: is there a standard way of hashing a Go board? (independent of the dimensions?)
In what format is it?
If not: is there a standard way of hashing a Go board? (independent of the dimensions?)
- Wed Nov 03, 2021 8:16 pm
- Forum: Go AI
- Topic: automated testing
- Replies: 6
- Views: 2985
Re: automated testing
Would it make sense to include self-play in the statistics?
My manager now plays n * (n - 1) where -1 to prevent self versus self.
My manager now plays n * (n - 1) where -1 to prevent self versus self.
- Tue Nov 02, 2021 3:00 pm
- Forum: Go AI
- Topic: automated testing
- Replies: 6
- Views: 2985
Re: automated testing
Rank Name Elo + - games score oppo. draws 4 donaldbaduck-7be77f6 1348 12 12 10000 60% 1197 4% 6 Stop 867 5 5 179040 57% 865 0% Yet on cgos: — Stop-0.9-005 1061 247837 2021-11-02 12:51:22 1232142 donaldbaduck7be77f 542? 60 2021-11-02 12:39:19 oooooh hang on: different versions of 'stop' possibly [.....