Skip to content

Latest commit

 

History

History
82 lines (52 loc) · 2.26 KB

File metadata and controls

82 lines (52 loc) · 2.26 KB

inception_v4_imagenet

Module Name inception_v4_imagenet
Category image classification
Network Inception_V4
Dataset ImageNet-2012
Fine-tuning supported or not No
Module Size 167MB
Latest update date -
Data indicators -

I.Basic Information

  • Module Introduction

    • Inception structure is first introduced in GoogLeNet, so GoogLeNet is named Inception-v1. Inception-v4 is an improvement on it, which takas advantage of sereral useful strategies such as batch normalization, residual learning. This module is based on Inception-v4, trained on ImageNet-2012, and can predict an image of size 2242243.

II.Installation

III.Module API Prediction

  • 1、Command line Prediction

    • $ hub run inception_v4_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
  • 2、Prediction Code Example

    • import paddlehub as hub
      import cv2
      
      classifier = hub.Module(name="inception_v4_imagenet")
      test_img_path = "/PATH/TO/IMAGE"
      input_dict = {"image": [test_img_path]}
      result = classifier.classification(data=input_dict)
  • 3、API

    • 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

IV.Release Note

  • 1.0.0

    First release

    • $ hub install inception_v4_imagenet==1.0.0