A treasure chest for visual classification and recognition powered by PaddlePaddle
 
 
 
 
 
Go to file
Tingquan Gao 27849b7a76
Update en doc of Hubserving (#900)
2021-06-22 11:08:55 +08:00
.travis
dataset/flowers102 rename datasets->dataset 2021-06-03 15:45:27 +08:00
deploy Update en doc of Hubserving (#900) 2021-06-22 11:08:55 +08:00
docs Add files via upload 2021-06-21 17:36:17 +08:00
ppcls Update en doc of Hubserving (#900) 2021-06-22 11:08:55 +08:00
tools merge develop (#859) 2021-06-16 18:43:08 +08:00
.clang_format.hook polish dygraph doc and deploy 2020-10-19 05:05:34 +00:00
.gitignore move files 2021-05-24 11:42:24 +08:00
.pre-commit-config.yaml
LICENSE
MANIFEST.in support bs>1 (#651) 2021-03-26 18:52:50 +08:00
README.md fix readme (#945) 2021-06-21 17:12:49 +08:00
README_ch.md Update README_ch.md 2021-06-21 22:20:22 +08:00
README_en.md Update README_en.md 2021-06-21 22:19:44 +08:00
__init__.py PaddleClas-whl (#536) 2021-01-07 17:36:29 +08:00
hubconf.py align with new arch 2021-06-21 11:42:29 +08:00
paddleclas.py merge develop (#859) 2021-06-16 18:43:08 +08:00
requirements.txt Add SwinTransformer (#721) 2021-05-17 14:55:38 +08:00
setup.py PaddleClas-whl (#536) 2021-01-07 17:36:29 +08:00

README_en.md

简体中文 | English

PaddleClas

Introduction

PaddleClas is an image recognition toolset for industry and academia, helping users train better computer vision models and apply them in real scenarios.

Recent updates

  • 🔥🔥🔥: 2021.06.16 PaddleClas release/2.2. Add metric learning and vector search modules. Add product recognition, animation character recognition, vehicle recognition and logo recognition. Added 30 pretrained models of LeViT, Twins, TNT, DLA, HarDNet, and RedNet, and the accuracy is roughly the same as that of the paper.
  • more

Features

  • A practical image recognition system consist of detection, feature learning and retrieval modules, widely applicable to all types of image recognition tasks. Four sample solutions are provided, including product recognition, vehicle recognition, logo recognition and animation character recognition.

  • Rich library of pre-trained models: Provide a total of 164 ImageNet pre-trained models in 34 series, among which 6 selected series of models support fast structural modification.

  • Comprehensive and easy-to-use feature learning components: 12 metric learning methods are integrated and can be combined and switched at will through configuration files.

  • SSLD knowledge distillation: The 14 classification pre-training models generally improved their accuracy by more than 3%; among them, the ResNet50_vd model achieved a Top-1 accuracy of 84.0% on the Image-Net-1k dataset and the Res2Net200_vd pre-training model achieved a Top-1 accuracy of 85.1%.

  • Data augmentation: Provide 8 data augmentation algorithms such as AutoAugment, Cutout, Cutmix, etc. with detailed introduction, code replication and evaluation of effectiveness in a unified experimental environment.

Image Recognition System Effect Demonstration

For more effect pictures, please see Demo images.

Welcome to Join the Technical Exchange Group

  • You can also scan the QR code below to join the PaddleClas WeChat group to get more efficient answers to your questions and to communicate with developers from all walks of life. We look forward to hearing from you.

Quick Start

Quick experience of image recognitionLink

Tutorials

Introduction to Image Recognition Systems

Image recognition can be divided into three steps:

  • 1Identify region proposal for target objects through a detection model
  • 2Extract features for each region proposal;
  • 3Search features in the retrieval database and output results;

For a new unknown category, there is no need to retrain the model, just prepare images of new category, extract features and update retrieval database and the category can be recognised.

Demo images more

  • Product recognition
  • Cartoon character recognition
  • Logo recognition
  • Car recognition

License

PaddleClas is released under the Apache 2.0 license Apache 2.0 license

Contribution

Contributions are highly welcomed and we would really appreciate your feedback!!

  • Thank nblib to fix bug of RandErasing.
  • Thank chenpy228 to fix some typos PaddleClas.
  • Thank jm12138 to add ViT, DeiT models and RepVGG models into PaddleClas.
  • Thank FutureSI to parse and summarize the PaddleClas code.