Skip to content

Prateek61/neural-network-from-scratch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Network From Scratch

(Compiled for the web with Emscripten)

Run Locally

The project is setup with cmake. To run the project locally, follow the steps below:

Clone the repository

  git https://github.com/Prateek61/neural-network-from-scratch.git
  cd neural-network-from-scratch

Run cmake

  cmake -S . -B build

Note: The build system can be changed by specifying the generator flag. For example, to use MinGW MakeFiles build system, append -G "MinGW Makefiles" to the above cmake command.

Note: If you also want to run the tests, append -D BUILD_TESTS=ON to the above cmake command. To run example, append -D BUILD_EXAMPLE=ON to the above cmake command.

Run Example

  cmake --build build --target run_example

Run Tests

  cmake --build build --target run_tests

Releases

No releases published

Packages

No packages published