All Projects → libfann → Fann

libfann / Fann

Licence: lgpl-2.1
Official github repository for Fast Artificial Neural Network Library (FANN)

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Fann

Byline
Go library for convert io.Reader to line-by-line Reader
Stars: ✭ 80 (-93.65%)
Mutual labels:  library
Litiv
C++ implementation pool for computer vision R&D projects.
Stars: ✭ 82 (-93.49%)
Mutual labels:  library
Abdk Libraries Solidity
Open-Source Libraries for Solidity by ABDK Consulting
Stars: ✭ 84 (-93.33%)
Mutual labels:  library
Before after slider
before after slider
Stars: ✭ 80 (-93.65%)
Mutual labels:  library
Neumorphic Ui
📚 A library of components based on the concept of neumorphism
Stars: ✭ 82 (-93.49%)
Mutual labels:  library
Internettools
XPath/XQuery 3.1 interpreter for Pascal with compatibility modes for XPath 2.0/XQuery 1.0/3.0, custom and JSONiq extensions, XML/HTML parsers and classes for HTTP/S requests
Stars: ✭ 82 (-93.49%)
Mutual labels:  library
Locationhelper
Android library project that helps you to track user location and manage the updates.
Stars: ✭ 79 (-93.73%)
Mutual labels:  library
Intentlogger
Dump intent content into logcat
Stars: ✭ 84 (-93.33%)
Mutual labels:  library
Panwid
A collection of widgets for urwid.
Stars: ✭ 82 (-93.49%)
Mutual labels:  library
Digitspeedview
Awesome digital speedometer library for android
Stars: ✭ 83 (-93.41%)
Mutual labels:  library
Bitcoin Cryptography Library
Nayuki's implementation of cryptographic primitives used in Bitcoin.
Stars: ✭ 81 (-93.57%)
Mutual labels:  library
Sonwan Ui
SonWan UI is a modular UI component library based on figma design to build your next React Web Application.
Stars: ✭ 75 (-94.04%)
Mutual labels:  library
Faustlibraries
The Faust libraries
Stars: ✭ 83 (-93.41%)
Mutual labels:  library
Wymaterialbutton
Interactive and fully animated Material Design button for iOS developers.
Stars: ✭ 80 (-93.65%)
Mutual labels:  library
D2dlib
A .NET library for hardware-accelerated, high performance, immediate mode rendering via Direct2D.
Stars: ✭ 84 (-93.33%)
Mutual labels:  library
Discrollview2
[DEPRECATED]Android Library for fancy layouts
Stars: ✭ 79 (-93.73%)
Mutual labels:  library
Shiftregister74hc595
Arduino library that simplifies the usage of shift registers
Stars: ✭ 82 (-93.49%)
Mutual labels:  library
Igropyr
a async http server base on libuv for Chez Scheme
Stars: ✭ 85 (-93.25%)
Mutual labels:  library
Forcetouch
Simple implementation of ForceTouch on Android
Stars: ✭ 84 (-93.33%)
Mutual labels:  library
Paris
TypeScript library for implementing Domain-Driven Design in web apps
Stars: ✭ 83 (-93.41%)
Mutual labels:  library

Fast Artificial Neural Network Library

FANN

Fast Artificial Neural Network (FANN) Library is a free open source neural network library, which 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.

Bindings to more than 15 programming languages are available.

An easy to read introduction article and a reference manual accompanies the library with examples and recommendations on how to use the library.

Several graphical user interfaces are also available for the library.

FANN 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 read introduction article, a thorough reference manual, and a 50+ page university report describing the implementation considerations etc.)
  • 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
  • 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, but can still be used in commercial applications (licenced under LGPL)
  • Framework for easy handling of training data sets
  • Graphical Interfaces
  • Language Bindings to a large number of different programming languages
  • Widely used (approximately 100 downloads a day)

To Install

On Linux

From Source

First you'll want to clone the repository:

git clone https://github.com/libfann/fann.git

Once that's finished, navigate to the Root directory. In this case it would be ./fann:

cd ./fann

Then run CMake

cmake .

After that, you'll need to use elevated privileges to install the library:

sudo make install

That's it! If everything went right, you should see a lot of text, and FANN should be installed!

Building fann - Using vcpkg

You can download and install fann using the vcpkg dependency manager:

git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
./vcpkg install fann

The fann port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please create an issue or pull request on the vcpkg repository.

To Learn More

To get started with FANN, go to the FANN help site, which will include links to all the available resources.

For more information about FANN, please refer to the FANN website

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].