https://github.com/alexandrelamarre/appliednn
https://github.com/alexandrelamarre/appliednn
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexandrelamarre/appliednn
- Owner: alexandreLamarre
- License: bsd-3-clause
- Created: 2021-07-16T01:04:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-19T21:39:30.000Z (almost 4 years ago)
- Last Synced: 2025-01-11T01:09:12.607Z (5 months ago)
- Language: C++
- Size: 1.77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
aNN
------------------[](https://travis-ci.com/MattClarkson/aNN)
[](https://ci.appveyor.com/project/MattClarkson/cmakecatch2)Purpose
-------Experimenting with implementing neural network data structures and algorithms from scratch.
Credits
-------The template used for this project was developed as a teaching aid for UCL's ["Research Computing with C++"](http://rits.github-pages.ucl.ac.uk/research-computing-with-cpp/)
course developed by [Dr. James Hetherington](http://www.ucl.ac.uk/research-it-services/people/james)
and [Dr. Matt Clarkson](https://iris.ucl.ac.uk/iris/browse/profile?upi=MJCLA42).Build Instructions
------------------This project itself can be built if you just want to test it. In Linux terms that
would be:
``` cmake
git clone https://github.com/MattClarkson/aNN
mkdir aNN-Build
cd aNN-Build
cmake ../aNN
make
```