Giter Site home page Giter Site logo

neuralnetwork's Introduction

NeuralNetwork

Neural Network Implementation with C++

You can see how to implement neural networks.

On the following video, I used this library and Qt.

Watch the video

A Noron Example

// inputs length is 9 because of input dimension * number of sample
double inputs[9] = {-2,-2,-1,0,-2,-1,3,5,-1}; // -1 bias 
double outputs[3] = {-1,-1,1};

Neuron neuron;
neuron.Configure(3, items.size());
neuron.randomWeights();
neuron.setInputs(inputs);
neuron.setOutputs(outputs);
neuron.setLr(0.5);
neuron.setError(0.01);
neuron.deltaRule();  //train neuron
// neuron.perceptronRule()

double *w = noron.getWeights(); 

A Layer Example

double inputs[9] = {-2,-2,-1,0,-2,-1,3,5,-1}; // -1 bias 
double outputs[3] = {1,2,3};

Layer layer(3, 0.5, inputs, outputs, 0.01, 3, 3);
layer.convertOutputs();
layer.setNeurons();
layer.trainDelta();
// layer.trainPerceptron();

double *w = layer.getWeights();

Multi Layer Perceptron Example(Exor)

double inputs[12] = {-5,-5,-1,5,-5,-1,-5,5,-1,5,5,-1}; // -1 bias 
double outputs[4] = {-1,1,1,-1}; 

MultiLayerPerceptron p(3,4,1,inputs,outputs,0.5,0.1,4);
p.randomWeights();
p.learn();

neuralnetwork's People

Contributors

yvznvr avatar

Stargazers

Michael Corrado avatar Sevilay Erkan avatar Orkhan ALIYEV avatar Veysel Aydoğan avatar Onur ÇEVİK avatar İlker Yasin AKSOY avatar Hakan Aksüt avatar

Watchers

James Cloos avatar  avatar

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.