Releases: apphp/ai-with-php-examples
Releases · apphp/ai-with-php-examples
0.5.0
Artificial Intelligence
- Expanded Problem Solving in AI with:
- Uninformed Search: Random Walk Search (RWS)
- Informed Search: Hill Climbing Search
- Practical Applications, including the Traveling Salesman Problem
- Enhanced Knowledge & Uncertainty in AI with:
- Knowledge-Based Agents: Site Status Checker Agent and Sales Analyst Agent
- Added AI Agents section with a focus on LLM Agents, including the Site Status Checker Agent
Machine Learning
- Expanded Mathematics for ML with:
- Scalars and their implementation using MathPHP
- Vector Operations with Rubix and MathPHP
- Matrix Operations with Rubix and MathPHP
- Introduction to Eigenvalues and Eigenvectors
This update adds practical AI problem-solving techniques, applications, and PHP-based ML implementations.
v0.3.0
- Internal code refactoring
- Search Algorithms Section
- Uninformed Search
- Breadth-First Search (BFS)
- Depth-First Search (DFS)
- Depth-Limited Search (DLS)
- Iterative Deepening Depth-First Search (IDDFS)
- Uniform Cost Search (UCS)
- Bidirectional Search (BDS)
- Informed (Heuristic) Search
- Greedy Search
- A* Tree Search
- A* Graph Search
- Iterative Deepening A*
- Beam Search
- Uninformed Search