Sha256: ae10ad2c2cc6d5f6decd567bbbdef00b608623025d3166726bc256dc392228a4
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
= Introduction This project aims to produce ruby implementations of algorithms covering several Artificial intelligence fields, including: * Machine Learning (DecisionTree::ID3) Decision Trees using an implementation of ID3 algorithm. * Genetic algorithms (GeneticAlgorithm::GeneticSearch) Implementation of GeneticSearch and Chromosome classes. The GeneticSearch is a generic class, and can be used to solved any kind of problems. The GeneticSearch class performs a stochastic search of the solution of a given problem. * Neural network (NeuralNetwork::Backpropagation) Implementation of neural networks using the Backpropagation supervised learning technique. * Bayesian networks TODO = Where can I find the lastest code and info on this project? http://ai4r.rubyforge.org = How to install 1. Install the gem: gem install http://rubyforge.org/frs/download.php/32923/ai4r-1.0.gem 2. Include require statements in your code: require "rubygems" require "decision_tree/id3" require "neural_network/backpropagation" require "genetic_algorithm/genetic_algorithm" = Feedback If you have some constructive comments about this project, please do send those to me: Sergio Fierens (sergio(dot)fierens(at)gmail(dot)com) = Warranty 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.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ai4r-1.0 | README.rdoc |
ai4r-1.1 | README.rdoc |