brandonmayer-zz / ssapy

A public repo for course work at Brown University and miscellaneous projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SSAPY - Simultaneous Second-price Auction PYthon module

Originally written for CSCI2951 "Autonomous Agents and Computational Market Design", taught by Professor Amy Greenwald, and TA Eric Sodomka in the Computer Science Department at Brown University.

Algorithms and Data are separated as much as possible. To that end, ssapy.strategies implements heuristics as callable functions. Each strategy takes as input an arbitrary revenue function and price prediction and therefore can be used in any game type. "Agents" encapsulate the state of individuals bidding in specific games. Agents use strategies and their current state to place bids.

ssapy.agents is the home for agents. For all game types there should be a corresponding agent module. For example ssapy.agents.marketSchedule implements agents for the market scheduling game described in [Yoon11] and [Reeves05]. All agents should inherit from the ssapy.agents.agentBase class which assigns each agent a unique id (just an integer - maybe change to a uuid.uuid4()?) at the beginning of the simulation.

All agents implement a bid function which returns the bid placed by the agent either given arguments to the function or based according to the current state of the agent.

Every package should (ideally) have a tests subdirectory with a corresponding tests_"moduleName".py file for tests.

References:

  1. [Wellman11] Wellman, M.P. (2011). "Trading Agents". Morgan & Claypool Publishers

  2. [Yoon11] Yoon, D.Y., & Wellman, P.M.(2011). "Self-Confirming Price Prediction for Bidding in Simultaneous Second Price Sealed Bid Auctions". The 2011 Workshop on Trading Agent Design and Analysis. Barcelona, Catalonia, Spain.

  3. [Reeves05] Reeves, Wellman, MacKie-Mason, Osepayshvili (2005). "Exploring bidding strategies for market-based scheduling" Decision Support Systems.

About

A public repo for course work at Brown University and miscellaneous projects


Languages

Language:Python 99.5%Language:Shell 0.5%