Mininet

A lightweight C++ neural network library.

Download as .zip Download as .tar.gz View on GitHub

mininet

Build Status License

A lightweight C++ framework for deep learning. mininet is written by David Fridovich-Keil, a second-year PhD student in the Berkeley Artificial Intelligence Research (BAIR) Lab, and Sara Fridovich-Keil, a junior electrical engineering student at Princeton.

Status

mininet is still under active development. We hope to have a first release soon though, so stay tuned!

Structure

All source code is located in src/; headers are in include/; unit tests are in /test/; and executables are in exec/. Compiled binaries will be placed in bin/.

Dependencies

I may miss a few here, but here is a list of dependencies:

All of these may be installed very easily. If you run into any trouble, though, we are more than happy to help you figure out what’s going on. Just post an issue on this repository and we will reply as soon as possible.

Usage

You’ll need to begin by building the repository. From the top directory, type the following sequence of commands:

mkdir bin
mkdir build
cd build
cmake ..
make -j4

This should build all tests and executables. In order to run tests, you can run the following command:

./run_tests

from within the build/ directory you just made. All the tests should pass, and none should take more than a second or so to run.

Executables are automatically placed within the bin/ directory that you created. To run them, just type ./(name-of-executable).

To the extent that it makes sense, all parameters are accessible from the command line via Gflags. For help with command line options, simply run the following command:

./(name-of-executable) --help

API documentation

We use Doxygen to auto-generate web-based documentation. Although we do not follow the Doxygen guidelines for writing comments, auto-generation still seems to do a fairly reasonable job.