understanding evaluation function

Posted by mish on Programmers See other posts from Programmers or by mish
Published on 2014-08-25T16:14:42Z Indexed on 2014/08/25 16:27 UTC
Read the original article Hit count: 1735

Filed under:
|
|
|

I am developing a chess program. And have made use of an alpha beta algorithm and a static evaluation function. I have successfully implemented both but I want to improve the evaluation function by automatically tuning the weights assigned to its features. At this point am totally confused about the policy suitable for updating the weights of the function. One policy I have in mind is to check whether a move is good or bad before updating weights but I really know how to implement it. Thus I need ideas and pseudo code please.

© Programmers or respective owner

Related posts about java

Related posts about algorithms