Main > Free Download Search >

Free neural networks software for linux

neural networks

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2657
Neural Net Framework 1.1

Neural Net Framework 1.1


Neural Net Framework is a library that implements multilayer feed-forward neural networks. more>> <<less
Download (0.065MB)
Added: 2005-07-23 License: LGPL (GNU Lesser General Public License) Price:
1558 downloads
Neural Network Framework 0.9.1

Neural Network Framework 0.9.1


Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks. more>>
Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks.
The programmer can use the classes provided to create neural networks with arbitrary topology and mixed type of neurons. Its very easy to add customized neurons and layers.
Enhancements:
- A ScaleFunction that scales the input vector of a Cluster and a normalize method for RealVec were added.
- Two methods were added to the Random class to randomize RealVec and RealMat.
<<less
Download (0.12MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
880 downloads
Java Neural Network Trainer 0.1c

Java Neural Network Trainer 0.1c


Java Neural Network Trainer is a neural network trainer with the ability to easily add new training algorithms. more>>
Java Neural Network Trainer is a neural network trainer with the ability to easily add new training algorithms and training patterns.

Java Neural Network Trainer project includes a parallel training graphical interface where you can view each trainer working in real-time in parallel.

<<less
Download (0.020MB)
Added: 2007-02-04 License: GPL (GNU General Public License) Price:
1000 downloads
Noname Network 0.1.7

Noname Network 0.1.7


Noname Network provides a powerful file-sharing network. more>>
Noname Network provides a powerful file-sharing network.

The Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.

<<less
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
neurALC 1.0.0

neurALC 1.0.0


neurALC project is an open-source cross-platform software for the analysis of multi-electrode recordings. more>>
neurALC project is an open-source cross-platform software for the analysis of multi-electrode recordings.

In the current version it supports experimental data files in the Neural Event Format (NEV 1.x, 2.0, 2.1), and offers functionality to reveal and analyze some of the information contained in such recordings.

It is further intended as a kind of "catalyst" for the development of a free available cross-platform program for the analysis of electrophysiological recordings.

<<less
Download (1.0MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1153 downloads
AI::NeuralNet::Simple 0.10

AI::NeuralNet::Simple 0.10


AI::NeuralNet::Simple is a simple learning module for building neural nets. more>>
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]);
$net->train([0,0],[1,0]);
}
printf "Answer: %dn", $net->winner([1,1]);
printf "Answer: %dn", $net->winner([1,0]);
printf "Answer: %dn", $net->winner([0,1]);
printf "Answer: %dnn", $net->winner([0,0]);

ABSTRACT

This module is a simple neural net learning tool designed for those who have an interest in artificial intelligence but need a "gentle" introduction. This is not intended to replace any of the neural net modules currently available on the CPAN. Instead, the documentation is designed to be easy enough for a beginner to understand.

<<less
Download (0.017MB)
Added: 2006-09-01 License: Perl Artistic License Price:
1152 downloads
Ruby Iptables Network Displayer 0.6

Ruby Iptables Network Displayer 0.6


Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by iptables-save. more>>
Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by "iptables-save".

<<less
Download (0.015MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
lisp-network-server 0.3

lisp-network-server 0.3


lisp-network-server is a simple framework for writing Common Lisp network applications. more>>
lisp-network-server is a simple framework for writing Common Lisp network applications.

lisp-network-server framework takes care of listening on the network, accepting the connection and starting a new thread with handler functions of your network aware application.

<<less
Download (0.010MB)
Added: 2006-05-09 License: LGPL (GNU Lesser General Public License) Price:
1267 downloads
AI::NeuralNet::BackProp 0.77

AI::NeuralNet::BackProp 0.77


AI::NeuralNet::BackProp is a simple back-prop neural net that uses Deltas and Hebbs rule. more>>
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
$net->random(0.001);

# Demonstrate a simple learn() call
my @inputs = ( 0,0,1,1,1 );
my @ouputs = ( 1,0,1,0,1 );

print $net->learn(@inputs, @outputs),"n";

# Create a data set to learn
my @set = (
[ 2,2,3,4,1 ], [ 1,1,1,1,1 ],
[ 1,1,1,1,1 ], [ 0,0,0,0,0 ],
[ 1,1,1,0,0 ], [ 0,0,0,1,1 ]
);

# Demo learn_set()
my $f = $net->learn_set(@set);
print "Forgetfulness: $f unitn";

# Crunch a bunch of strings and return array refs
my $phrase1 = $net->crunch("I love neural networks!");
my $phrase2 = $net->crunch("Jay Lenno is wierd.");
my $phrase3 = $net->crunch("The rain in spain...");
my $phrase4 = $net->crunch("Tired of word crunching yet?");

# Make a data set from the array refs
my @phrases = (
$phrase1, $phrase2,
$phrase3, $phrase4
);

# Learn the data set
$net->learn_set(@phrases);

# Run a test phrase through the network
my $test_phrase = $net->crunch("I love neural networking!");
my $result = $net->run($test_phrase);

# Get this, it prints "Jay Leno is networking!" ... LOL!
print $net->uncrunch($result),"n";

AI::NeuralNet::BackProp is the flagship package for this file. It implements a nerual network similar to a feed-foward, back-propagtion network; learning via a mix of a generalization of the Delta rule and a disection of Hebbs rule. The actual neruons of the network are implemented via the AI::NeuralNet::BackProp::neuron package

<<less
Download (0.094MB)
Added: 2006-06-16 License: Perl Artistic License Price:
1225 downloads
Social Networks Visualiser 0.43.1

Social Networks Visualiser 0.43.1


SocNetV is a Linux GUI program written in Qt3. more>>
SocNetV is a Linux GUI program written in Qt3.
Social Networks Visualiser project main purpose is to bring to our Linux box comprehensive Social Networks Analysis and Visualisation.
It can read and write various network file formats and enables the user to visually modify an existing network or draw a new network using the mouse. Network and actor properties, such as distances, centralities, diameter etc, can be easily computed. Also, it can create random networks (lattice, same degree, etc).
SocNetV is NOT antagonistic to any commercial/scientific SNA programs, like PAJEK, visone, UCINET, AISee, KrackPlot, which are developed by groups of professionals and scientists. It is rather a personal trip to learn SNA and C++ programming while keeping the code open for others to learn from my mistakes. If you find it useful Ill be glad. But be aware that there is no warranty of efficiency, correctness or usability.
Oh, and this site is under never-ending construction as well.
Installation:
To see SocNetV in action, you need a modern Linux distro with Qt 3.x. Download the latest release from the link "Download" on the left. Untar the archive, cd to the new directory, and use:
/usr/lib/qt3/bin/qmake (or wherever are your Qt libs)
make
./socnetv
Enhancements:
- tarball of v. 043.1 was corrupted. fixed.
- Fixed display of HTML help in Debian package.
- Fixed wrong numbering of new actors with double-click.
- Fixed creation of links through middle-click.
<<less
Download (1.1MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1037 downloads
Fast Artificial Neural Network Library 2.1.0 Beta

Fast Artificial Neural Network Library 2.1.0 Beta


Fast Artificial Neural Network Library is a multi-layer artificial neural network library. more>>
Fast Artificial Neural Network Library implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks.
Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. PHP, Python, Delphi and Mathematica bindings are available.
Main features:
- Multilayer Artificial Neural Network Library in C
- Backpropagation training (RPROP, Quickprop, Batch, Incremental)
- Evolving topology training which dynamically builds and trains the ANN (Cascade2)
- Easy to use (create, train and run an ANN with just three function calls)
- Fast (up to 150 times faster execution than other libraries)
- Versatile (possible to adjust many parameters and features on-the-fly)
- Well documented (An easy to use reference manual, a 50+ page university report describing the implementation considerations etc. and an introduction article)
- Cross-platform (configure script for linux and unix, dll files for windows, project files for MSVC++ and Borland compilers are also reported to work)
- Several different activation functions implemented (including stepwise linear functions for that extra bit of speed)
- Easy to save and load entire ANNs
- Several easy to use examples (simple train example and simple test example)
- Can use both floating point and fixed point numbers (actually both float, double and int are available)
- Cache optimized (for that extra bit of speed)
- Open source (licenced under LGPL)
- Framework for easy handling of training data sets
- Graphical Interface
- C++ Bindings
- PHP Extension
- Python Bindings
- Delphi Bindings
- .NET Bindings
- Mathematica Extension
- Octave Extension
- Ruby Bindings
- Pure Data Bindings
- Debian package
<<less
Download (0.10MB)
Added: 2006-09-14 License: LGPL (GNU Lesser General Public License) Price:
1138 downloads
My Network Catalog r1

My Network Catalog r1


My Network Catalog is an indexing engine that allows Windows shares to be bound together over a local network. more>>
My Network Catalog is an indexing engine that allows Windows shares (or Samba shares) to be bound together over a local network.

My Network Catalog allows an easy centralized search of all the files available over the network.

<<less
Download (0.021MB)
Added: 2006-06-16 License: LGPL (GNU Lesser General Public License) Price:
1230 downloads
Mandriva Multi Network Firewall

Mandriva Multi Network Firewall


Mandriva Multi Network Firewall 2 is the up-to-date Mandriva Linux security solution dedicated to the business world. more>>
Multi Network Firewall is the up-to-date Mandriva Linux security solution dedicated to the business world. Maximum innovation, performance and scalability is only a click away thanks to an easy-to-use web interface.
Combining firewall, Intrusion Detection System and VPN functionality, MNF 2 is the ultimate full-featured security solution meeting all your demands. Furthermore, to make your network even more secure, benefit from a year of free updates through Mandriva Online Pro!
Main features:
- a firewall, to protect your computer network from unauthorized access (filtering).
- Intrusion Detection System, to alert you to abnormal network activity.
- Virtual Private Network, to enable a secure private tunnel over public networks.
- Proxy server, to intercept all web traffic entering the network.
- DHCP server, to enable the automatic configuration of new machines connected to the LAN.
- Caching DNS, to provide a local DNS service for computers connected to the LAN.
New Featurs:
As well as the existing IPSec, MNF2 provides 2 other types of VPN:
PPTP: a desktop under Windows(R) can be automatically connected without installing any special software
OpenVPN: a lighter open source VPN; Compattible with Linux, Mac OS and Windows
Bonding: Channel combines several network interfaces into a single connection. Effectively, it means that data transfer speeds can be multiplied.
Bridging: this new function enables the administrator to build bridges between network interfaces.
Traffic shaping: You can regulate the flow of traffic on your network just by clicking on a wizard.
Network mapping: Makes it possible to connect networks which use the same private network addresses
Peer-to-Peer Filtering: MNF2 automatically blocks network traffic from "Fast Track" peer-to-peer clients.
Better software support
2.6 Linux Kernel
Better hardware support
Improved support for multiple network cards (up to 10)
Wi-Fi Support
Better ADSL support
Services included in the product
Mandriva Online Pro: benefit from updates for one year through Mandriva Online Pro
Support included/
<<less
Download (250.5MB)
Added: 2005-10-10 License: GPL (GNU General Public License) Price:
858 downloads
Network Simulator 2.31

Network Simulator 2.31


Network Simulator is a discrete event simulator targeted at networking research. more>>
Network Simulator (Ns) is a discrete event simulator targeted at networking research. Ns provides substantial support for simulation of TCP, routing, and multicast protocols over wired and wireless (local and satellite) networks.
Ns began as a variant of the REAL network simulator in 1989 and has evolved substantially over the past few years. In 1995 ns development was supported by DARPA through the VINT project at LBL, Xerox PARC, UCB, and USC/ISI.
Currently ns development is support through DARPA with SAMAN and through NSF with CONSER, both in collaboration with other researchers including ACIRI. Ns has always included substantal contributions from other researchers, including wireless code from the UCB Daedelus and CMU Monarch projects and Sun Microsystems.
Enhancements:
- Major updates were made to the PackMime-HTTP HTTP/1.1 and WPAN modules.
- Solaris/Sun C compilation bugs were fixed.
<<less
Download (67.2MB)
Added: 2007-03-23 License: BSD License Price:
647 downloads
network-config 0.1

network-config 0.1


network-config is a simple network configuration tool. more>>
network-config is a simple network configuration tool.

Network-config is a simple and easy to use program that helps configuring the network interfaces for linux-based operating systems. It allows to have multiple configurations for the same computer and to easy configure NAT for internet sharing.

It can also be used to scan for wireless networks. It is written in perl and uses gtk2+, but also works as a command line program.

<<less
Download (0.032MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1186 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5