Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wesleey/python-artificial-intelligence

Search, Knowledge, Uncertainty, Optimization, Learning, Neural Networks and Language.
https://github.com/wesleey/python-artificial-intelligence

a-star-search adversarial-search alpha-beta-pruning artificial-intelligence breadth-first-search depth-first-search depth-limited-search informed-search minimax python search-algorithm uninformed-search

Last synced: about 1 month ago
JSON representation

Search, Knowledge, Uncertainty, Optimization, Learning, Neural Networks and Language.

Awesome Lists containing this project

README

        

# Python Artificial Intelligence
## Search
- **Uninformed**
- [Depth-First Search (DFS)](./search/uninformed/depth-first/)
- [Breadth-First Search (DFS)](./search/uninformed/breadth-first/)
- **Informed**
- [Greedy Best-First Search (GBFS)](./search/informed/greedy-best-first/)
- [A*](./search/informed/a-star/)
- **Adversarial**
- [Minimax](./search/adversarial/minimax/)
- [Alpha-Beta Pruning](./search/adversarial/alpha-beta-pruning/)
- [Depth-Limited Minimax](./search/adversarial/depth-limited-minimax/)
## Knowledge
- **Propositional Logic**
- [Inference](./knowledge/propositional-logic/inference/)
## Uncertainty
- **Markov Chain**
- [PageRank](./uncertainty/markov-chain/pagerank/)
- **Bayesian Network**
- [Heredity](./uncertainty/bayesian-network/heredity/)
## Optimization
- **Constraint Satisfaction**
- [Crossword](./optimization/constraint-satisfaction/crossword/)
## Learning
- **Machine Learning**
- [K-Nearest Neighbors (KNN)](./learning/machine-learning/k-nearest-neighbors/)
- [Q-learning](./learning/machine-learning/q-learning/)