File: README.md

package info (click to toggle)
deepboof 0.5.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,856 kB
  • sloc: java: 14,433; python: 50; makefile: 12; sh: 3
file content (29 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
DeepBoof is a Java library for running deep neural networks trained using other projects (e.g. Torch and Caffe)
with a focus on processing image data.  Additional tools include visualization and network training.
Image processing is done using [BoofCV](http://boofcv.org).  While it has been designed to work with
[Torch](http://torch.ch/) and [Caffe](caffe.berkeleyvision.org) it does not depend either library for its core functionality.

## Installation

[Gradle](http://gradle.org) is used to build DeepBoof and will automatically download all dependencies.

## Running

To get started classifying images simply load the Gradle project into you favorite IDE (probably IntelliJ
or Eclipse) and run ExampleClassifyVggCifar10.  This example downloads the network and testing data, then
starts the classifier.

Alternatively, you can just build and run any example from the command-line using Gradle directly:

```bash
gradle exampleRun -Pwhich=ExampleClassifyCifar10TestSet
```

## Future Work

DeepBoof is in an early state of development.  The following are areas it needs the most improvement in:

* Support for Caffe models (already started)
* Native implementations of functions
* GPU implementations of functions