Giter VIP home page Giter VIP logo

ann's Introduction

Artificial Neural Network

This library is to create an artificial neural network in C++ easily by structuring it. There are various functionalities in order to play with the general structure of the neural network as well as working with the datasets.

This is an example to show how it works with the iris flower dataset.

Note: There are lots of functions that do not work properly if the structure of neural network gets complicated. So, for now this is just for simple stuff. I'm working on it currently to make it better.

#include <iostream>

#include "ann.hpp"

using namespace std;

int main(){

    DataSet iris("IRIS.csv");
    iris.shuffle();
    vector<DataSet> dataSets=iris.split({70, 30});

    NNet nnet(4,3);
    nnet.set_labels(InputLayer, {"SLength", "SWidth", "PLength", "PWidth"});
    nnet.set_labels(OutputLayer, {"Setosa", "Versicolor", "Virginica"});
    nnet.set_dataSet(dataSets[0]);

    nnet.initialize(-1, 1);
    nnet.train(250);
    cout<<"Accuracy: "<<nnet.accuracy(dataSets[1])<<'\n';

    return 0;
}

To run the program on terminal: g++ --std=c++17 main.cpp matrix.cpp dataset.cpp ann.cpp layer.cpp perceptron.cpp -o main && ./main

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.