"Weighted" map?
What it sounds to me like that was doing was using these weights as inputs to the neural net, or in other words those were how the neural net perceived the world, and then were allowed to learn/use previous knowledge and respond appropriately.
Quote: Original post by ExtrariusThat's it--I think :D; just need to find a lot of good information and examples on it.
While not exactly the same thing as you describe, "Influence Maps" are closely related.
You may use A* for weighting and using weighted calculations. Say I have a unit at Point 1 trying to reach Point 2 over a map having float values for passibility. If the unit is killed on the way, reduce passibility value. This will make A* algorithm (slightly modified for this purpose, less passible tiles having longer time to pass as it is used in variable terrain calculations) to take another route. And I dont think neural networks should be involved in this system.
Dave Mark - President and Lead Designer of Intrinsic Algorithm LLC
Professional consultant on game AI, mathematical modeling, simulation modeling
Co-founder and 10 year advisor of the GDC AI Summit
Author of the book, Behavioral Mathematics for Game AI
Blogs I write:
IA News - What's happening at IA | IA on AI - AI news and notes | Post-Play'em - Observations on AI of games I play
"Reducing the world to mathematical equations!"
Quote: Original post by tonyg
AI Game Programming Wisdom 2 had an article about NN and Influence maps.
Wow... indeed it does. Complete with code, too. Buy the book!
Quote: Strategic Decision-Making with Neural Networks and Influence Maps
Penny Sweetser (School of ITEE, University of Queensland)
AI Game Programming Wisdom 2, 2003.
Topics: Strategy, Tactical; Genres: Strategy, RTS
Abstract: Influence maps provide a strategic perspective in games that allows strategic assessment and decisions to be made based on the current game state. Influence maps consist of several layers, each representing different variables in the game, layered over a geographical representation of the game map. When a decision needs to be made by the AI player, some or all of these layers are combined via a weighted sum to provide an overall idea of the suitability of each area on the map for the current decision. However, the use of a weighted sum has certain limitations.
This article explains how a neural network can be used in place of a weighted sum, to analyze the data from the influence map and make a strategic decision. First, this article will summarize influence maps, describe the current application of a weighted sum and outline the associated advantages and disadvantages. Following this, it will explain how a neural network can be used in place of a weighted sum and the benefits and drawbacks associated with this alternative. Additionally, it will go into detail about how a neural network can be implemented for this application, illustrated with diagrams.
Dave Mark - President and Lead Designer of Intrinsic Algorithm LLC
Professional consultant on game AI, mathematical modeling, simulation modeling
Co-founder and 10 year advisor of the GDC AI Summit
Author of the book, Behavioral Mathematics for Game AI
Blogs I write:
IA News - What's happening at IA | IA on AI - AI news and notes | Post-Play'em - Observations on AI of games I play
"Reducing the world to mathematical equations!"