Skip to content

nicolamaritan/c-grad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C-Grad

Neural network library written in C.

Dependencies

  • libblas-dev

Build

A Makefile is provided in the project root. To build the project, run:

make

This command compiles the source files in src/ and builds all examples in the examples/ directory.

For debug builds, run:

make debug

Example

An example MLP is provided to demonstrate the use of the library. To run the MLP example:

  1. Build the project using make (or make debug for debugging).
  2. Execute the MLP example executable:
./examples/mlp_example.out