Difference between revisions of "Koller AAAI 2002"

From Cohen Courses
Jump to navigationJump to search
(Created page with '== Citation == D Vickrey and D Koller. Multi-agent algorithms for solving Graphical Games 18th Ntl conference on Artificial Intelligence, AAAI Press, 2002 == Online version == […')
 
Line 7: Line 7:
  
 
== Summary ==
 
== Summary ==
This [[Category::paper]] presents a multi-agent algorithm approach to solve  [[AddressesProblem::Graphical Games]]. Here they try to answer the question of network evolution of over time. While static graph models have been studied, less is known about time-evolving graphs. They use the following [[UsesDataset::US_Patent_citation_dataset|Patent Citation Network]]. They study a number of real world graphs and observe some interesting phenomena.
+
This [[Category::paper]] presents a multi-agent algorithm approach to solve  [[AddressesProblem::Graphical Games]]. Graphical games is a special type of problem in game theory where there is structure between the players in the game i.e. the interaction between the players is sparse. Solving for an equilibrium strategy profile for these players can be computationally expensive. Also there is a requirement that a central agent be aware of the relevant payoff information which then calculates the equilibrium strategy profile.  
  
* Most graphs densify over time with number of edges growing superlinearly with respect to the number of nodes
+
In this paper they try to solve a version of the problem where it is ok to have approximate equilibriums. They present two algorithms for this task.
* The average distance between nodes shrinks over time
+
* Hill Climbing approach
 +
* Constraint Satisfaction approach - Cost minimization
 +
 
 +
They describe these two methods and then experimentally validate their claims. They use the Road game [[UsesModel::Road_Game|Road Game]] to run experiments on their algorothms. They find that :
 +
* Both algorithms scale linearly with the number of nodes
 +
* The algorithms find good approximate equilibria in a reasonable amount of time,
 +
* Cost minimization has a lower variance in running time but can get expensive when grid size is large.
  
Since existing graph generation models do not model for such behaviors they propose a new graph generation model based on a '''forestfire''' approach.
 
  
 
== Method ==
 
== Method ==
They use the [[UsesMethod::Forest Fire graph generation|Forest Fire]] method for graph generation. The goal of this method to construct a graph that has the properties of following densification power laws, long-tailed in and out degrees and shrinking diameter.
+
They use the [[UsesMethod::Hill Climbing|Hill climbing]] method and the [[UsesMethod::Constraint Satisfaction|Constraint Satisfaction]] method to find an equililbrium profile for the graphical game.

Revision as of 23:57, 31 March 2011

Citation

D Vickrey and D Koller. Multi-agent algorithms for solving Graphical Games 18th Ntl conference on Artificial Intelligence, AAAI Press, 2002

Online version

AAAI 2002

Summary

This paper presents a multi-agent algorithm approach to solve Graphical Games. Graphical games is a special type of problem in game theory where there is structure between the players in the game i.e. the interaction between the players is sparse. Solving for an equilibrium strategy profile for these players can be computationally expensive. Also there is a requirement that a central agent be aware of the relevant payoff information which then calculates the equilibrium strategy profile.

In this paper they try to solve a version of the problem where it is ok to have approximate equilibriums. They present two algorithms for this task.

  • Hill Climbing approach
  • Constraint Satisfaction approach - Cost minimization

They describe these two methods and then experimentally validate their claims. They use the Road game Road Game to run experiments on their algorothms. They find that :

  • Both algorithms scale linearly with the number of nodes
  • The algorithms find good approximate equilibria in a reasonable amount of time,
  • Cost minimization has a lower variance in running time but can get expensive when grid size is large.


Method

They use the Hill climbing method and the Constraint Satisfaction method to find an equililbrium profile for the graphical game.