Module Name | resnet_v2_101_imagenet |
---|---|
Category | image classification |
Network | ResNet V2 101 |
Dataset | ImageNet-2012 |
Fine-tuning supported or not | No |
Module Size | 173MB |
Latest update date | - |
Data indicators | - |
-
- ResNet proposed a residual unit to solve the problem of training an extremely deep network, and improved the prediction accuracy of models. This module is based on ResNet101, trained on ImageNet-2012 dataset, and can predict an image of size 2242243.
-
-
paddlepaddle >= 1.4.0
-
paddlehub >= 1.0.0 | How to install PaddleHub
-
-
-
$ hub install resnet_v2_101_imagenet
- In case of any problems during installation, please refer to: Windows_Quickstart | Linux_Quickstart | Mac_Quickstart
-
-
-
$ hub run resnet_v2_101_imagenet --input_path "/PATH/TO/IMAGE"
- If you want to call the Hub module through the command line, please refer to: PaddleHub Command Line Instruction
-
-
-
import paddlehub as hub import cv2 classifier = hub.Module(name="resnet_v2_101_imagenet") test_img_path = "/PATH/TO/IMAGE" input_dict = {"image": [test_img_path]} result = classifier.classification(data=input_dict)
-
-
-
def classification(data)
-
classification API.
-
Parameters
- data (dict): key is "image", value is a list of image paths
-
Return
- result(list[dict]): classication results, each element in the list is dict, key is the label name, and value is the corresponding probability
-
-
-
1.0.0
First release
-
1.0.1 Fix the problem of encoding in python2
-
$ hub install resnet_v2_101_imagenet==1.0.1
-