Difference between revisions of "GsocAIProjectProgress"

From The Battle for Wesnoth Wiki
(Questions)
(Basic Idea)
Line 9: Line 9:
 
Eval functions in FormulaAI will be provided which will associate a 'score' to each unit the AI can recruit.  Based on these scores, the AI will recruit particular units.  Along with each of these 'scores' is an associated weight, originally set to 1.  Now suppose due fog of war or some other event the AI had no knowledge of certain players tactics or units and a certain unit which the Formula AI ranked very high begins to be massacred.  Now the weight associated with that particular unit can be adjusted to some value < 1.  This will decrease the chance of the AI choosing these units, even though the FormulaAI scores them fairly high.
 
Eval functions in FormulaAI will be provided which will associate a 'score' to each unit the AI can recruit.  Based on these scores, the AI will recruit particular units.  Along with each of these 'scores' is an associated weight, originally set to 1.  Now suppose due fog of war or some other event the AI had no knowledge of certain players tactics or units and a certain unit which the Formula AI ranked very high begins to be massacred.  Now the weight associated with that particular unit can be adjusted to some value < 1.  This will decrease the chance of the AI choosing these units, even though the FormulaAI scores them fairly high.
  
The point of this learning system is that deterministic rules maybe good for many situations, but they cannot predict everything.  In fact, experienced players may infer some of the deterministic rules and use them to their advantage.  Recruitment is a little less complex then a full fledged AI and the learning system may not be as necessary as it will be in a full AI, but serves as a useful illustration.
+
The point of this learning system is that deterministic rules maybe good for many situations, but they cannot predict everything.  In fact, experienced players may infer some of the deterministic rules and use them to their advantage.  The learning system will give the AI the ability to tweak it's strategy on the fly to cope with player strategies that the deterministic rules cannot deal with.  Recruitment is a little less complex then a full fledged AI and the learning system may not be as necessary as it will be in a full AI, but serves as a useful illustration.
  
 
=== Questions ===
 
=== Questions ===

Revision as of 18:19, 28 April 2008

GSOC AI Project Progress

Basic Idea

The basic idea is to develop libraries of FormulaAI moves based on eval functions. The C++ part will then be able to adjust weights on these moves to 'tweak' them in each scenario.

For example, consider a recruitment example:

Eval functions in FormulaAI will be provided which will associate a 'score' to each unit the AI can recruit. Based on these scores, the AI will recruit particular units. Along with each of these 'scores' is an associated weight, originally set to 1. Now suppose due fog of war or some other event the AI had no knowledge of certain players tactics or units and a certain unit which the Formula AI ranked very high begins to be massacred. Now the weight associated with that particular unit can be adjusted to some value < 1. This will decrease the chance of the AI choosing these units, even though the FormulaAI scores them fairly high.

The point of this learning system is that deterministic rules maybe good for many situations, but they cannot predict everything. In fact, experienced players may infer some of the deterministic rules and use them to their advantage. The learning system will give the AI the ability to tweak it's strategy on the fly to cope with player strategies that the deterministic rules cannot deal with. Recruitment is a little less complex then a full fledged AI and the learning system may not be as necessary as it will be in a full AI, but serves as a useful illustration.

Questions

Some of the main questions which are to be answered:

  1. ) How does the FormulaAI provide the move and evals to the C++ learning system?
  2. ) How will the C++ learning system evaluate game state and know if it is in a similar situation to one it has been in before (i.e. how does it know which weights to associate to which moves)?

1.) For this I think the formulaAI can provide a list of <move,score> pairs. This provides a simple way for the AI to choose a move, simply pick the move with the highest associated score. This also makes it easy to apply weights, before choosing a particular move, it will apply the weight associated to each move to it's associated score. This leads to the second question, how will the AI know if a certain move is the same as one it has seen previously?

2.) The search space is too complex to keep any kind of state table. I think the best way to associate weights to moves is to 'categorize' the moves. For instance, in the recruitment example the categorization is easy, we simply categorize each recruitment move by the unit that move recruits. The C++ learning system can then keep a list of the categories and the associated weights.

For the more complex examples of non-recruitment moves, I think we can extend this idea of categorization. A very simple high level move categorization is: attack, move, defend. We might be able to further categorize attack moves by tuples (attacking unit, defending unit, terrain). Move moves might be categorized by the tuple (moving unit, terrain), etc.

I think this idea will allow us to associate weights with moves via these categories. There will always be a finite number of these tuples and we need not track the entire state of the space for the purposes of these moves. The deterministic eval functions which associate the initial scores to moves are what evaluate the state space in terms of the team goals, etc. Even if a < 1 weight is associated with a move, if the eval functions determine the move to be the best move by a large margin, it still has a chance of being selected. If the move is found to be successful, the associated weight will be increased. The next section will give move technical details on how this is to be implemented.

AI: C++ <-> Formula AI Interface

Here we define the API for the AI (i.e. C++ <-> FormulaAI interface)