Sha256: b7a03b09ef49281c9bf1a914fe73d4e8ad202eadf86716cf5b2a56f571ada5a8
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
= Introduction AI4R is a collection of ruby algorithms implementations, covering several Artificial intelligence fields, and simple practical examples using them. It implements: * Genetic algorithms (AI4R::GeneticAlgorithm::GeneticSearch) * Neural networks (AI4R::NeuralNetwork::Backpropagation) * ID3 Decision Trees (AI4R::Classifiers::ID3) * PRISM (J. Cendrowska, 1987) (AI4R::Classifiers::Prism) * OneR (AKA One Attribute Rule, 1R) (AI4R::Classifiers::OneR) * ZeroR (AI4R::Classifiers::ZeroR) = Where can I find the lastest code and info on this project? http://ai4r.rubyforge.org http://ai4r.jadeferret.com = How to install 1. Install the gem: gem install ai4r 2. Include require statements in your code: require "rubygems" require "ai4r/classifiers/id3"en require "ai4r/classifiers/prism" require "ai4r/classifiers/one_r" require "ai4r/classifiers/zero_r" require "ai4r/neural_network/backpropagation" require "ai4r/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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ai4r-1.2 | README.rdoc |