All Projects → datamllab → Awesome Game Ai

datamllab / Awesome Game Ai

Licence: mit
Awesome Game AI materials of Multi-Agent Reinforcement Learning

Projects that are alternatives of or similar to Awesome Game Ai

Atari
AI research environment for the Atari 2600 games 🤖.
Stars: ✭ 174 (-5.95%)
Mutual labels:  ai, reinforcement-learning
Holodeck Engine
High Fidelity Simulator for Reinforcement Learning and Robotics Research.
Stars: ✭ 48 (-74.05%)
Mutual labels:  ai, reinforcement-learning
Awesome Ai Books
Some awesome AI related books and pdfs for learning and downloading, also apply some playground models for learning
Stars: ✭ 855 (+362.16%)
Mutual labels:  ai, reinforcement-learning
Super Mario Bros A3c Pytorch
Asynchronous Advantage Actor-Critic (A3C) algorithm for Super Mario Bros
Stars: ✭ 775 (+318.92%)
Mutual labels:  ai, reinforcement-learning
Snake Ai Reinforcement
AI for Snake game trained from pixels using Deep Reinforcement Learning (DQN).
Stars: ✭ 123 (-33.51%)
Mutual labels:  ai, reinforcement-learning
Basic reinforcement learning
An introductory series to Reinforcement Learning (RL) with comprehensive step-by-step tutorials.
Stars: ✭ 826 (+346.49%)
Mutual labels:  ai, reinforcement-learning
Gbrain
GPU Javascript Library for Machine Learning
Stars: ✭ 48 (-74.05%)
Mutual labels:  ai, reinforcement-learning
Habitat Lab
A modular high-level library to train embodied AI agents across a variety of tasks, environments, and simulators.
Stars: ✭ 587 (+217.3%)
Mutual labels:  ai, reinforcement-learning
Deep Neuroevolution
Deep Neuroevolution
Stars: ✭ 1,526 (+724.86%)
Mutual labels:  ai, reinforcement-learning
Cartpole
OpenAI's cartpole env solver.
Stars: ✭ 107 (-42.16%)
Mutual labels:  ai, reinforcement-learning
Awesome Artificial Intelligence
A curated list of Artificial Intelligence (AI) courses, books, video lectures and papers.
Stars: ✭ 6,516 (+3422.16%)
Mutual labels:  ai, reinforcement-learning
Allenact
An open source framework for research in Embodied-AI from AI2.
Stars: ✭ 144 (-22.16%)
Mutual labels:  ai, reinforcement-learning
Pysc2 Examples
StarCraft II - pysc2 Deep Reinforcement Learning Examples
Stars: ✭ 722 (+290.27%)
Mutual labels:  ai, reinforcement-learning
Pygame Learning Environment
PyGame Learning Environment (PLE) -- Reinforcement Learning Environment in Python.
Stars: ✭ 828 (+347.57%)
Mutual labels:  ai, reinforcement-learning
Super Mario Bros Ppo Pytorch
Proximal Policy Optimization (PPO) algorithm for Super Mario Bros
Stars: ✭ 649 (+250.81%)
Mutual labels:  ai, reinforcement-learning
Rlcard
Reinforcement Learning / AI Bots in Card (Poker) Games - Blackjack, Leduc, Texas, DouDizhu, Mahjong, UNO.
Stars: ✭ 980 (+429.73%)
Mutual labels:  ai, reinforcement-learning
Holodeck
High Fidelity Simulator for Reinforcement Learning and Robotics Research.
Stars: ✭ 513 (+177.3%)
Mutual labels:  ai, reinforcement-learning
Animalai Olympics
Code repository for the Animal AI Olympics competition
Stars: ✭ 544 (+194.05%)
Mutual labels:  ai, reinforcement-learning
Reinforcement Learning Wechat Jump
Reinforcement Learning for WeChat Jump
Stars: ✭ 85 (-54.05%)
Mutual labels:  ai, reinforcement-learning
Ai plays snake
AI trained using Genetic Algorithm and Deep Learning to play the game of snake
Stars: ✭ 137 (-25.95%)
Mutual labels:  ai, reinforcement-learning

Awesome-Game-AI

Awesome

A curated, but incomplete, list of game AI resources on multi-agent learning.

If you want to contribute to this list, please feel free to send a pull request. Also you can contact [email protected], or [email protected].

What is Game AI?

Game AI is focusing on predicting which actions should be taken, based on the current conditions. Generally, most games incorporate some sort of AI, which are usually characters or players in the game. For some popular games such as Starcraft and Dota 2, developers have spent years to design and refine the AI to enhance the experience.

Single-Agent vs. Multi-Agent

Numerous studies and achievements have been made to game AI in single-agent environments, where there is a single player in the games. For instance, Deep Q-learning is successfully applied to Atari Games. Other examples include Super Mario, Minecraft, and Flappy Bird.

Multi-agent environments are more challenging since each player has to reason about the other players' moves. Modern reinforcement learning techniques have boosted multi-agent game AI. In 2015, AlphaGo, for the first time beat a human professional Go player on a full-sized 19×19 board. In 2017, AlphaZero taught itself from scratch and learned to master the games of chess, shogi, and Go. In more recent years, researchers have made efforts to poker games, such as Libratus and DeepStack, achieving expert-level performance in Texas Hold'em. Now researchers keep progressing and achieve human-level AI on Dota 2 and Starcraft 2 with deep reinforcement learning.

Perfect Information vs. Imperfect Information

Perfect information means that each player has access to the same information of the game, e.g., Go, Chess, and Gomoku. Imperfect information refers to the situation where players can not observe the full state of the game. For example, in card games, a player can not observe the hands of the other players. Imperfect information games are usually considered more challenging with more possibilities.

What is included?

This repository gathers some awesome resources for Game AI on multi-agent learning for both perfect and imperfect information games, including but not limited to, open-source projects, review papers, research papers, conferences, and competitions. The resources are categorized by games, and the papers are sorted by years.

Table of Contents

Open-Source Projects

Unified Toolkits

  • RLCard: A Toolkit for Reinforcement Learning in Card Games [paper] [code].
  • OpenSpiel: A Framework for Reinforcement Learning in Games [paper] [code].
  • Unity ML-Agents Toolkit [paper] [code].
  • Alpha Zero General [code].

Texas Hold'em Projects

  • DeepStack-Leduc [paper] [code].
  • DeepHoldem [code].
  • OpenAI Gym No Limit Texas Hold 'em Environment for Reinforcement Learning [code].
  • PyPokerEngine [code].
  • Deep mind pokerbot for pokerstars and partypoker [code].

Dou Dizhu Projects

  • Doudizhu AI using reinforcement learning [code].
  • Dou Di Zhu with Combinational Q-Learning [paper] [code].
  • DouDiZhu [code].
  • 斗地主AI设计与实现 [code].

Starcraft Projects

  • StarCraft II Learning Environment [paper] [code].
  • Gym StarCraft [code].
  • StartCraft II Reinforcement Learning Examples [code].
  • A Guide to DeepMind's StarCraft AI Environment [code].

Go Projects

  • ELF: a platform for game research with AlphaGoZero/AlphaZero reimplementation [code] [paper].

Gomoku Projects

  • AlphaZero-Gomoku [code].
  • gobang [code].

Chess Projects

  • Chess-Alpha-Zero [code].
  • Deep Pink [code].
  • Simple chess AI [code].

Chinese Chess Projects

  • CCZero (中国象棋Zero) [code].

Review and General Papers

  • Deep reinforcement learning from self-play in imperfect-information games, arXiv 2016 [paper].
  • Multi-agent Reinforcement Learning: An Overview, 2010 [paper].
  • An overview of cooperative and competitive multiagent learning, LAMAS 2005 [paper].
  • Multi-agent reinforcement learning: a critical survey, 2003 [paper].

Research Papers

Betting Games

Betting games are one of the most popular form of Poker games. The list includes Goofspiel, Kuhn Poker, Leduc Poker, and Texas Hold'em.

  • Neural Replicator Dynamics, arXiv 2019 [paper].
  • Computing Approximate Equilibria in Sequential Adversarial Games by Exploitability Descent, IJCAI 2019 [paper].
  • Solving Imperfect-Information Games via Discounted Regret Minimization, AAAI 2019 [paper].
  • Deep Counterfactual Regret Minimization, ICML, 2019 [paper].
  • Actor-Critic Policy Optimization in Partially Observable Multiagent Environments, NeurIPS 2018 [paper].
  • Safe and Nested Subgame Solving for Imperfect-Information Games, NeurIPS, 2018 [paper].
  • DeepStack: Expert-Level Artificial Intelligence in Heads-Up No-Limit Poker, Science 2017 [paper].
  • A Unified Game-Theoretic Approach to Multiagent Reinforcement Learning, NeurIPS 2017 [paper].
  • Poker-CNN: A pattern learning strategy for making draws and bets in poker games using convolutional networks [paper].
  • Deep Reinforcement Learning from Self-Play in Imperfect-Information Games, arXiv 2016 [paper].
  • Fictitious Self-Play in Extensive-Form Games, ICML 2015 [paper].
  • Solving Heads-up Limit Texas Hold’em, IJCAI 2015 [paper].
  • Regret Minimization in Games with Incomplete Information, NeurIPS 2007 [paper].

Dou Dizhu

  • DeltaDou: Expert-level Doudizhu AI through Self-play, IJCAI 2019 [paper].
  • Combinational Q-Learning for Dou Di Zhu, arXiv 2019 [paper] [code].
  • Determinization and information set Monte Carlo Tree Search for the card game Dou Di Zhu, CIG 2011 [paper].

Mahjong

  • Suphx: Mastering Mahjong with Deep Reinforcement Learning, arXiv 2020 [paper].
  • Method for Constructing Artificial Intelligence Player with Abstraction to Markov Decision Processes in Multiplayer Game of Mahjong, arXiv 2019 [paper].
  • Building a Computer Mahjong Player Based on Monte Carlo Simulation and Opponent Models, IEEE CIG 2017 [paper].

Bridge

  • Boosting a Bridge Artificial Intelligence, ICTAI 2017 [paper].

Go

  • Mastering the game of Go without human knowledge, Nature 2017 [paper].
  • Mastering the game of Go with deep neural networks and tree search, Nature 2016 [paper].
  • Temporal-difference search in computer Go, Machine Learning, 2012 [paper].
  • Monte-Carlo tree search and rapid action value estimation in computer Go, Artificial Intelligence, 2011 [paper].
  • Computing “elo ratings” of move patterns in the game of go, ICGA Journal, 2007 [paper].

Starcraft

  • Grandmaster level in StarCraft II using multi-agent reinforcement learning, Nature 2019 [paper].
  • On Reinforcement Learning for Full-length Game of StarCraft, AAAI 2019 [paper].
  • Stabilising experience replay for deep multi-agent reinforcement learning, ICML 2017 [paper].
  • Cooperative reinforcement learning for multiple units combat in starCraft, SSCI 2017 [paper].
  • Learning macromanagement in starcraft from replays using deep learning, CIG 2017 [paper].
  • Applying reinforcement learning to small scale combat in the real-time strategy game StarCraft: Broodwar, CIG 2012 [paper].

Conferences and Workshops

Competitions

Related Lists

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].