From 6596eab66ceb1b4f481d177766a40bcc0c4124f0 Mon Sep 17 00:00:00 2001 From: berak Date: Thu, 17 Jan 2019 11:41:25 +0100 Subject: [PATCH] dnn/samples: add googlenet to model zoo --- samples/dnn/models.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/samples/dnn/models.yml b/samples/dnn/models.yml index 0e7198a..d177a09 100644 --- a/samples/dnn/models.yml +++ b/samples/dnn/models.yml @@ -90,6 +90,18 @@ squeezenet: classes: "classification_classes_ILSVRC2012.txt" sample: "classification" +# Googlenet from https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet +googlenet: + model: "bvlc_googlenet.caffemodel" + config: "bvlc_googlenet.prototxt" + mean: [104, 117, 123] + scale: 1.0 + width: 224 + height: 224 + rgb: false + classes: "classification_classes_ILSVRC2012.txt" + sample: "classification" + ################################################################################ # Semantic segmentation models. ################################################################################ -- 2.7.4