I have coded some AI for connect-4. I would like to adjust the weights in certain evaluation functions. I have limited time and hardware so my question is this: Is it very bad with respect to quality of the evaluation to perform the "training" and adjustment of weights based on results obtained from using lower-depth searches than those that will be used when the AI has to perform its best later in a situation where it has more time and hence can search the game tree at deeper levels ?

link|improve this question
By "some AI", I assume you mean a minimax algorithm? – larsmans Mar 21 '11 at 11:32
Yes sorry, MiniMAx with Alpha-Beta pruning, iterative deepening and ordering moves after evaluation values on previous depth. – Mbentt Mar 21 '11 at 11:55
Can you please explain in more detail how your evaluation function(s) works and what the "weights" are. What do you mean with "training"? – Christian Ammer Mar 22 '11 at 20:35
Still interested although its too late to tune. I search the playing area for certain patterns. Each pattern is given a weight. By training I meant adjusting these weiths such that AI played as strongly as possible. – Mbentt Mar 25 '11 at 15:55
feedback

1 Answer

Well, if you have limited time, you have to adjust the weights using a lower depth search. This is very similar to the idea of temporal difference learning that is used to make games like backamon. That is, you might want to use the idea of reinforcement learnign. Temporal difference is a flavour of reinforcement learning. Please let me know if you find this useful :D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.