31 lines
623 B
Markdown
31 lines
623 B
Markdown
# Functional MRI for Neural Networks
|
|
|
|
An attempt to create real-time in depth visualisation for neural
|
|
networks.
|
|
|
|
## Requirements
|
|
|
|
The following programs/libraries need to be installed on your system:
|
|
|
|
- CMake (at least 3.1)
|
|
- Caffe
|
|
- Google log (glog)
|
|
- OpenCV
|
|
- Boost System
|
|
|
|
Note that most of these are dependencies of Caffe, and thus will
|
|
probably already be on your system.
|
|
|
|
## Building
|
|
|
|
The build process is based on CMake. This means you can easily create a
|
|
build as follows. Starting from the project root:
|
|
|
|
```
|
|
mkdir build && cd build
|
|
cmake ..
|
|
make
|
|
```
|
|
|
|
Compilation is a little slow due to the inclusion of Boost.
|