hyperpape wrote:2) The best computer programs incorporate Monte Carlo analysis based on doing a lot of partially random playouts, and seeing how often a particular move wins. This means that they do not select the best move based on go knowledge. So they won't necessarily teach you good style, but more importantly, they cannot explain why a move is good. Also, they can't properly analyze games where they are substantially behind (Monte Carlo engines produce absurd moves in losing positions).
Not quite true (anymore)
All MCTS programs use the results of a large number of random playouts to
select the next move (which the program thinks is best). But not all try from among all possible next moves (including strange ones). ManyFaces uses an AI engine (artifical intelligence) which based upon "go knowledge" creates a set of plausible next moves each with one or more "go reasons" behind them. It then uses MCTS as the evaluator to decide which of these is best. So if you ask it to do this, it will tell you what are the "go reasons" behind the move (feature added as of 12.021). What it can't do is give you a go reason why this move (with its go reasons) is better than other moves that also have go reasons behind them.
In other words, it can tell you it made the move "to increase the liberties of group A" but it can't tell you why that was better than a different move which if it had chosen instead would have said "to increase the liberties of group B" (can't say "in this position, saving A is bigger than saving B"). That's because the decision had the implied reason "I tried both a thousand times (Monte Carlo playouts) and won more often when I saved A".
On the second point, yes. Never disable the computer's right to resign or you'll see it make really stupid moves once the game is hopeless.
Should note here: ManyFaces is not free software and is somewhat pricey the first time you buy it. However with that price you get:
1) The right to install on multiple machines of your own. It's not a "per machine" cost but a "household" cost.
2) Interim updates are free. When a totally new version comes out owners of previous versions aren't charged full price for the new one (historically, about 1/2)