Skip to content

Commit e402cb7

Browse files
committed
updated README.md
1 parent fbb3c29 commit e402cb7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,35 @@
22
Unified JavaScript API for scoring via various DL framework
33

44
Bagua is an ancient Chinese technique that can predict the future via looking back of the past, combined with many environmental arguments. This project is a JS framework with handy API for client side scoring/reference built on top of several existing DL/ML framework
5+
6+
# Install devtools
7+
8+
```shell
9+
npm -g install node-gyp
10+
```
11+
12+
# bagua-caffe
13+
Caffe Backend
14+
15+
## How to build bagua-caffe
16+
Build the code. Please follow [Caffe instruction](http://caffe.berkeleyvision.org/installation.html) to install all necessary packages and build it.
17+
18+
```shell
19+
# Modify Makefile.config according to your Caffe installation.
20+
21+
make -j8
22+
23+
# Build Node.js Addons
24+
25+
node-gyp configure build
26+
```
27+
28+
## Demo
29+
Here we provided a SSD demo for object detection.
30+
31+
1. Download [SSD300*](http://www.cs.unc.edu/~wliu/projects/SSD/models_VGGNet_VOC0712_SSD_300x300.tar.gz), and only extract the **caffemodel** file into model-zoo/caffe/VOC0712/SSD_300x300.
32+
33+
2. cd demo/caffe-ssd && node demo.js
34+
35+
36+

0 commit comments

Comments
 (0)