Artificial Intelligence for Ruby :: ai4r
Introduction
This project aims to produce ruby implementations of algorithms covering several Artificial intelligence fields and simple practical examples using them, including:
Practical examples
- Genetic algorithms: Optimization of the Travelling salesman problem (NP-hard problem)
- Neural networks: Simple OCR (recognition of visual patterns)
- Decision Trees: Automatic price classification of real estate
How to install
1. Install the gem:
gem install http://rubyforge.org/frs/download.php/32923/ai4r-1.0.gem
Include require statements in your code:
require "rubygems"
require "decision_tree/id3"
require "neural_network/backpropagation"
require "genetic_algorithm/genetic_algorithm"
Contact me
If you have some constructive comments about this project, please do send those to me:
Sergio Fierens, email address:
Disclaimer Note
This software is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose.





