GitXplorerGitXplorer
d

maskrcnn-nnapi

public
1 stars
0 forks
0 issues

Commits

List of commits on branch nnapi.
Unverified
1b2ecb1d7f0e8b011fc202c534473c0dfe2564a0

Update detection models to use soft NMS

ddreiss committed 6 years ago
Unverified
4ee3649b823199774b9a4be23c89697e45347dca

keypoint data and scripts

ddreiss committed 6 years ago
Unverified
aacc9de887e8aabd6cd5964c4a80cd67f232852c

Add evaluation datasets

ddreiss committed 6 years ago
Unverified
e1c79c0b13a1cd417a9a5351c77ec39b82dabca4

Add NNAPI models

ddreiss committed 6 years ago
Unverified
57e0cac0580ee28f85396761daf97bfe82f4613b

Update runner to run models on an Android device

ddreiss committed 6 years ago
Unverified
41a4f4bb22e1b38308a8afbde6ddf58d46893eb6

Update input/output processing for fully-quantized models

ddreiss committed 6 years ago

README

The README file for this repository.

Caffe2 Model Repository

This is a repository for storing pre-trained Caffe2 models. You can use Caffe2 to help you download or install the models on your machine.

Prerequisites

Install Caffe2 with Python bindings.

Download

To download a model locally, run

python -m caffe2.python.models.download squeezenet

which will create a folder squeezenet/ containing both an init_net.pb and predict_net.pb.

Install

To install a model, run

python -m caffe2.python.models.download -i squeezenet

which will allow later imports of the model directly in Python:

from caffe2.python.models import squeezenet
print(squeezenet.init_net.name)
print(squeezenet.predict_net.name)

Subdirectories

To download a model in a subdirectory (for example, style transfer), run

python -m caffe2.python.models.download style_transfer/crayon

and this will create a folder style_transfer/crayon/ containing both an init_net.pb and predict_net.pb.

Same applies to the -i install option.