Giter Club home page Giter Club logo

mfann's People

Contributors

dgorissen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

mfann's Issues

Suspicious output from testFann

Hi.
Thanks for a great binding!
I have built FANN 2.2.0, and generated the four mex functions.
Now I am struggling to get a sensible output when using createFann, trainFann and testFann. Please see the matlab commands and outputs below. Should not actualValues equal suggestedValues? Do you have any idea what I am doing wrong?

samples = [...
-1 -1
-1 1
1 -1
1 1];
actualValues = [...
-1
1
1
-1];

numVariables = size(samples,2);
numResults = size(actualValues,2);
connectivity = 1;
max_epochs = 500000;
desired_error = .0000001;
layers = [numVariables 3 5 numResults];

% makeFann;
ann = createFann(layers,connectivity);

ann = trainFann(ann,samples,actualValues,desired_error,max_epochs)

ann =

      layers: [2 3 5 1]
     weights: [35x1 double]
        from: [35x1 double]
          to: [35x1 double]
connectivity: 1

suggestedValues = testFann(ann,samples);

[actualValues suggestedValues]

ans =

-1.0000 0.0000
1.0000 0.0000
1.0000 0.0000
-1.0000 0.0000

suggestedValues =

1.0e-314 *

0.5106
0.5106
0.5114
0.5114

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.