I have a simple question regarding the Minimax algorithm: for example for the tic-tac-toe game, how do I determine the utility function’s for each player plays? It doesn’t do that automatically, does it? I must hard-code the values in the game, it can’t learn them by itself, does it?
I have a simple question regarding the Minimax algorithm: for example for the tic-tac-toe
Share
No, a MiniMax does not learn. It is a smarter version of a brute-force tree search.