Skip to content

Neural networks in C++, using the Eigen 3 template library for linear algebra.

Notifications You must be signed in to change notification settings

g-eoj/cpp-neural-nets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Networks in C++

Neural networks in C++, using the Eigen 3 template library for linear algebra.

Implemented so far:

  • Dense layers with ReLU or Softmax activation.
  • Dropout layers.
  • Neural net that can be initialized with an arbitrary number of layers.
  • SGD optimizer with momentum.
  • Preprocessing and evaluation utilities.
  • main.cpp is currently hardcoded to train and validate a two layer net on wine.data from https://archive.ics.uci.edu/ml/datasets/wine.
  • tests.cpp checks the implementation of layers, neural networks, and utilities.

About

Neural networks in C++, using the Eigen 3 template library for linear algebra.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages