Questions tagged [fann]

Fast Artificial Neural Network 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.
  • Includes a framework for easy handling of training data sets.
  • Bindings to more than 20 programming languages are available.
  • Introduction article and a reference manual accompanies the library with examples and recommendations.
  • Several graphical user interfaces are also available for the library.
97 questions
-1
votes
1 answer

FANN: save/load trained ann change MSE?

Such a problem: I've trained some ann using MSE stop function up to "desired error" 10^-5 (5MB of training data, 15000 input items,long training period -- about a day). I've got 0 bit fail during training. I've saved the ann to a file. Then I loaded…
-1
votes
1 answer

how to add FANN library in QT Creator in linux

i'm trying to use fann library in qt environment.i make a project to test a simple example of fann and add "LIBS += -L/usr/local/lib -lfann" to ".pro file" but whenever try to run example i countered with this error : undefined reference to 'sin' …
-1
votes
1 answer

It seems setlocale() doesn't work in a linked library

#include #include #include "mainwindow.hpp" #include "../RegisterOfErrors.hpp" #include extern std::string* Error::DescriptionOfErrors; int main (int argc, char *argv[]) { …
godlark
  • 157
  • 7
-2
votes
1 answer

Why are Neural Networks with same properties different?

Introduction I'm very new to Artificial Intelligence, Machine Learning, and Neural Network. I tried to code some stuff with the help of the FANN (Fast Artificial Neural Network) library (C++) for testing the capability of this kind of…
-2
votes
1 answer

FANN binding for Python 2.7 at Windows x64

I'm trying to use FANN library with Python 2.7 at my windows 10 (x64). After many tries I didn't find any clear way to do that. Can you tell me how can I achieve my goal?
Piwniczne
  • 11
  • 4
-2
votes
1 answer

What is the range of error [FANN]?

I use library FANN http://leenissen.dk/fann/html/files/fann_cpp-h.html. The values of ANN: i)activation_function_hidden: SIGMOID_SYMMETRIC_STEPWISE ii)activation_function_output: LINEAR My ANN(Artificial neural network), range of input: [0 -…
-2
votes
1 answer

Am I doing double precision wrong in FANN?

I am trying to work with FANN, I want function approximation. I do not know if there is a correlation between my data and my outputs so I cannot tell if this output means there is no correlation or if I am doing this wrong. Here is my training…
Bodger
  • 1,342
  • 4
  • 16
  • 23
1 2 3 4 5 6
7