MultiLayer Perceptron eXchange
This project implements a trivial JSON-based format for storing and comparing snapshots of Multilayer Perceptrons.
- Run
make build
- Copy
./build/bin/mlpx
into your$PATH
, OR proceed to the next step - Run
sudo make install
- If you would like the C library to be installed, you MUST use
make install
or a pre-build package.
- If you would like the C library to be installed, you MUST use
After appropriate installation of the C library, you should have a
mlpx-config
script available in $PATH
. You can use this to query the
appropriate CFLAGS
and LIBS
values for the MLPX library using mlpx-config --cflags
and mlpx-config --libs
commands respectively.
To run the linting checks:
go get -u github.com/gordonklaus/ineffassign
go get -u github.com/kisielk/errcheck
go get -u golang.org/x/lint/golint