Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.478.045 Times

Ai Convertor Online software
Filter: All | Freeware | Demo
 

Ai Convertor Online

< 1 2 3 4 5 > 
Added: January 17, 2010 | Visits: 1.004

AI::NNFlex AI::NNFlex is a base Perl class for implementing neural networks. SYNOPSIS use AI::NNFlex; my $network = AI::NNFlex->new(config parameter=>value); $network->add_layer( nodes=>x, activationfunction=>function); $network->init(); $network->lesion( nodes=>PROBABILITY,... Platforms: *nix

License: Freeware Size: 33.79 KB Download (94): AI::NNFlex Download

Added: October 16, 2010 | Visits: 962

AI::NNFlex::Reinforce AI::NNFlex::Reinforce is a very simple experimental NN module. SYNOPSIS use AI::NNFlex::Reinforce; my $network = AI::NNFlex::Reinforce->new(config parameter=>value); $network->add_layer(nodes=>x,activationfunction=>function); $network->init(); use AI::NNFlex::Dataset; my $dataset... Platforms: *nix

License: Freeware Size: 33.79 KB Download (90): AI::NNFlex::Reinforce Download

Added: March 09, 2010 | Visits: 1.109

AI::NNFlex::Backprop AI::NNFlex::Backprop project is a fast, pure perl backprop Neural Net simulator. SYNOPSIS use AI::NNFlex::Backprop; my $network = AI::NNFlex::Backprop->new(config parameter=>value); $network->add_layer(nodes=>x,activationfunction=>function); $network->init(); use... Platforms: *nix

License: Freeware Size: 33.79 KB Download (91): AI::NNFlex::Backprop Download

Added: July 05, 2010 | Visits: 1.529

Games::Euchre::AI Games::Euchre::AI is a Player API for Euchre card game. This class implements a skeletal Euchre player programming interface. Subclasses can be created quite easily as interactive interfaces or AI computer players. If you wish to write your own computer player, I recommend you start with... Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Euchre::AI Download

Added: November 19, 2010 | Visits: 1.525

online.php online.php analyses /var/log/ppp-usage and displays connection statistics. It also prints some information about your current PPP connection. Well, I was inspired by the script Onlinecalc by Michael Schlenstedt (Michael@adsl4linux.de). His script is heavily based upon "calc" by Ulrich Schmitz.... Platforms: *nix

License: Freeware Size: 4.1 KB Download (123): online.php Download

Added: September 21, 2010 | Visits: 1.103

AI::Prolog::Builtins AI::Prolog::Builtins is a Perl module with builtin predicates that AI::Prolog supports. Comments Comments begin with a % and terminate at the end of the line or begin with /* and terminate with */. Variables As in Prolog, all variables begin with an upper-case letter and are not quoted.... Platforms: *nix

License: Freeware Size: 122.88 KB Download (102): AI::Prolog::Builtins Download

Added: November 14, 2010 | Visits: 932

AI::NeuralNet::Simple AI::NeuralNet::Simple is a simple learning module for building neural nets. SYNOPSIS use AI::NeuralNet::Simple; my $net = AI::NeuralNet::Simple->new(2,1,2); # teach it logical or for (1 .. 10000) { $net->train([1,1],[0,1]); $net->train([1,0],[0,1]); $net->train([0,1],[0,1]);... Platforms: *nix

License: Freeware Size: 17.41 KB Download (108): AI::NeuralNet::Simple Download

Added: August 12, 2010 | Visits: 1.184

Online Friends Online is a speed focused program to give a textual display of your friends/buddies currently logged onto a unix host. This program is distributed in the hope that it will be useful for everyone, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A... Platforms: *nix

License: Freeware Size: 7.17 KB Download (92): Online Friends Download

Added: January 13, 2010 | Visits: 1.370

Mind AI Mind AI project is an artificial mind based on some advanced concepts: - machine learning - representation - meta representation of concepts - concept reflection - reification - denotation Interaction with the AI is done via IRC. Whats New in This Release: - geo: start some... Platforms: *nix

License: Freeware Download (96): Mind AI Download

Added: August 05, 2010 | Visits: 1.464

AI::DecisionTree AI::DecisionTree is Perl module for automatically Learns Decision Trees. SYNOPSIS use AI::DecisionTree; my $dtree = new AI::DecisionTree; # A set of training data for deciding whether to play tennis $dtree->add_instance (attributes => {outlook => sunny, temperature => hot, humidity =>... Platforms: *nix

License: Freeware Size: 25.6 KB Download (170): AI::DecisionTree Download

Added: March 19, 2010 | Visits: 6.906

Online Contact Sheet Creator Online Contact Sheet Creator script that generate stylish contact sheets without any fussing around in Photoshop. You can use the script to generate contact sheets for clients (great for photographers or graphic designers), or you can use it personally for a small photo album. You can also... Platforms: *nix

License: Freeware Size: 8.19 KB Download (194): Online Contact Sheet Creator Download

Added: May 24, 2010 | Visits: 969

AI::Menu AI::Menu is a Perl object that generates Tree::Nary objects from directed graphs or a description of the function set. The algorithm is not very efficient (approximately O(F^6), F being the number of functions). It is also not quite as intelligent as it should be. You should cache the results... Platforms: *nix

License: Freeware Size: 6.14 KB Download (92): AI::Menu Download

Added: May 25, 2010 | Visits: 1.732

Html To Xhtml Convertor Html to Xhtml Convertor is a straight-forward Perl script to convert HTML pages into XHTML pages. It can process batches of files, convert Windows/Unix/Mac line breaks, and deal with attribute minimization, quoting of attribute values, and more. Installation: To install, simply run the... Platforms: *nix

License: Freeware Size: 10.24 KB Download (118): Html To Xhtml Convertor Download

Added: December 02, 2013 | Visits: 1.780

Browseable Online Backup System Browseable Online Backup System (BOBS) is a complete online backup system. It uses large disks for storing backups and lets users browse and restore the files using a webbrowser. Files are fetched from other computers and stored in directories on the computer where bobs is installed. Two types... Platforms: *nix

License: Freeware Size: 204.8 KB Download (95): Browseable Online Backup System Download

Added: August 04, 2010 | Visits: 896

AI::NeuralNet::BackProp AI::NeuralNet::BackProp is a simple back-prop neural net that uses Deltas and Hebbs rule. SYNOPSIS use AI::NeuralNet::BackProp; # Create a new network with 1 layer, 5 inputs, and 5 outputs. my $net = new AI::NeuralNet::BackProp(1,5,5); # Add a small amount of randomness to the network... Platforms: *nix

License: Freeware Size: 96.26 KB Download (99): AI::NeuralNet::BackProp Download

Added: August 20, 2010 | Visits: 887

AI::NeuralNet::Kohonen AI::NeuralNet::Kohonen is a Perl module with Kohonens Self-organising Maps. SYNOPSIS $_ = AI::NeuralNet::Kohonen->new( map_dim_x => 39, map_dim_y => 19, epochs => 100, table => "3 1 0 0 red 0 1 0 yellow 0 0 1 blue 0 1 1 cyan 1 1 0 yellow 1 .5 0 orange 1 .5 1 pink" ); $_->train;... Platforms: *nix

License: Freeware Size: 11.26 KB Download (111): AI::NeuralNet::Kohonen Download

Added: November 12, 2010 | Visits: 1.625

RTF to HTML convertor The RTF to HTML convertor converts RTF files (in Windows-1250 encoding) to HTML file (in ISO-8859-2 encoding).. Platforms: *nix

License: Freeware Size: 41.98 KB Download (151): RTF to HTML convertor Download

Added: July 05, 2010 | Visits: 2.660

Wurm Online Wurm Online is 3D FPP MMORPG game. Online multiplayer role-playing game, where players walk freely in a big 3D world chatting, gathering resources, building towns, making items, trading, fighting with other players and computer controlled creatures. Chose your path - crafting or PvP fighting.... Platforms: *nix

License: Freeware Size: 4.1 KB Download (315): Wurm Online Download

Added: September 07, 2010 | Visits: 2.484

Online Recruitment Agency Online Recruitment Agency project is Web-based recruitment agency software. You can manage all of your recruitment efforts on your Web site, and set up job locations, categories, departments, and job titles from the Web interface as an admin user. Regular users can then add/edit/delete jobs.... Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 112.64 KB Download (308): Online Recruitment Agency Download

Added: June 03, 2010 | Visits: 2.271

AI::ExpertSystem::Simple AI::ExpertSystem::Simple is a simple expert system shell. SYNOPSIS This class implements a simple expert system shell that reads the rules from an XML knowledge base and questions the user as it attempts to arrive at a conclusion. This class is where all the work is being done and the other... Platforms: *nix

License: Freeware Size: 20.48 KB Download (605): AI::ExpertSystem::Simple Download

< 1 2 3 4 5 >