Skip to content

Latest commit

 

History

History
117 lines (79 loc) · 3.99 KB

File metadata and controls

117 lines (79 loc) · 3.99 KB

shufflenet-v2-x0.5

Use Case and High-Level Description

Shufflenet V2 x0.5 is a light-weight classification model based on channel split and channel shuffle operations. This is Caffe* implementation based on architecture described in paper "ShuffleNet V2: Practical Guidelines for Efficient CNN Architecture Design". For details about implementation, check out the repository. The model was pre-trained on the ImageNet dataset.

The model input is a blob that consists of a single image of 1, 3, 224, 224 in RGB order.

The model output is typical object classifier for the 1000 different classifications matching with those in the ImageNet dataset.

Specification

Metric Value
Type Classification
GFLOPs 0.08465
MParams 1.363
Source framework Caffe*

Accuracy

Metric Value
Top 1 58.80%
Top 5 81.13%

Input

Original model

Image, name - data, shape - 1, 3, 224, 224, format is B, C, H, W, where:

  • B - batch size
  • C - channel
  • H - height
  • W - width

Channel order is RGB. Scale factor - 255.

Converted model

Image, name - data, shape - 1, 3, 224, 224, format is B, C, H, W, where:

  • B - batch size
  • C - channel
  • H - height
  • W - width

Channel order is BGR

Output

Original model

Object classifier according to ImageNet classes, name - fc, shape - 1, 1000, output data format is B, C, where:

  • B - batch size
  • C - predicted probabilities for each class in [0, 1] range

Converted model

The converted model has the same parameters as the original model.

Download a Model and Convert it into OpenVINO™ IR Format

You can download models and if necessary convert them into OpenVINO™ IR format using the Model Downloader and other automation tools as shown in the examples below.

An example of using the Model Downloader:

omz_downloader --name <model_name>

An example of using the Model Converter:

omz_converter --name <model_name>

Demo usage

The model can be used in the following demos provided by the Open Model Zoo to show its capabilities:

Legal Information

The original model is distributed under the following license:

BSD 2-Clause License

Copyright (c) 2018, miaow1988
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.