Giter Club home page Giter Club logo

cpp-nn's Introduction

C++ NN ๐Ÿง 

A simple Neural Network library written in C++

Installation ๐Ÿš€

Clone the repo

git clone https://github.com/Rohith04MVK/Cpp-NN

Run the examples

mkdir build
cd build
cmake -D CPP_NN_BUILD_EXAMPLE=ON ..
make

The Structure of Networks

int numHiddenNodes = 20;
bool useBias = true;

nn::Net<float> net;
net.add(new nn::Dense<>(batchSize, numFeatures, numHiddenNodes, useBias));
net.add(new nn::Relu<>());
net.add(new nn::Dense<>(batchSize, numHiddenNodes, numHiddenNodes, useBias));
net.add(new nn::Relu<>());
net.add(new nn::Dense<>(batchSize, numHiddenNodes, numClasses, useBias));
net.add(new nn::Softmax<>());

nn::CrossEntropyLoss<float, 2> lossFunc;
net.registerOptimizer(new nn::Adam<float>(0.01));

Training!

int numEpoch = 250;
float loss_t, accuracy_t;
for (unsigned int ii = 0; ii < numEpoch; ++ii)
{
    auto result = net.forward<2, 2>(input);

    float loss = lossFunc.loss(result, labels);
    float accuracy = lossFunc.accuracy(result, labels);
    std::cout << std::setprecision(5);
    std::cout << "Epoch: " << ii << " loss: " << loss << " accuracy: " << accuracy << std::endl;

    auto lossBack = lossFunc.backward(result, labels);
    net.backward(lossBack);
    net.step();
    loss_t = loss;
    accuracy_t = accuracy;
 }

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.