Skip to content

AIGYM

The goal of this libray is provide a set of tools to help you to learn the basics of Artificial Intelligence. In other words, the goal of this library is help you to learn how to build agents that solve problems by searching.

This library implements the following algorithms:

  1. Breadth-first search
  2. Depth-first search
  3. Iterative deepening search
  4. Uniform cost search
  5. Greddy search algorithm
  6. A* search algorithm
  7. Hill climbing search algorithm
  8. Stocastic hill climbing search algorithm

This library also has a common interface for agents, allowing you to easily create and deploy agents that solve problems by searching.

How to install the library

pip install aigyminsper