8000 GitHub - heinsaar/BolzmANN: Neural Network
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

heinsaar/BolzmANN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BolzmANN

Neural network in C++ by and for the participants of the MASIS Programming Class, named after the Boltzmann brain.

All network logic is in C++. Some tests are in Python.

Note to Contributors

BolzmANN is developed using the following environment, tools and technologies:

Before committing, make sure that:

  • Build succeeds with zero errors (obviously).
  • Build succeeds with zero warnings related to code with warning level /W3 (warnings about profiling are ok).
  • Cppcheck ends with zero warnings for every project.
  • Run produces expected results.
  • All functional tests PASS.
  • All code patterns rhyme as much as possible and within reason, meaning this:
axon_[n].deltaWeight = newDeltaWeight;
axon_[n].weight     += newDeltaWeight;

instead of this:

axon_[n].deltaWeight = newDeltaWeight;
axon_[n].weight += newDeltaWeight;

About

Neural Network

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 7

0