Skip to content

Hand classifiers & detectors for HaGRID

License

Notifications You must be signed in to change notification settings

hukenovs/hagrid-models

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HaGRID Classification and Detection Vision models

HaGRID main repo

Overview

This repository contains the source code of models used in HaGRID as pretrained classification and detection CNNs for hand detection and classification tasks. Most of the source code is borrowed from TorchVision repo.

List of models:

  • Classification:
    • MobileNetV3
    • ResNet
    • Vision Transformer
  • Detection:
    • SSDLite
    • SwinS_FasterRCNN
    • SwinT_FasterRCNN

List of all available pre-trained models can be found in model_zoo.py

Project

.
├── models/
│   ├── classifiers/ # source code for classification models
│   │   ├── mobilenet.py # MobileNetV3
│   │   ├── resnet.py # ResNet
│   │   ├── vision_transformer.py # Vision Transformer
│   ├── detectors/ # source code for SSD detection model
│   │   ├── ssd.py # Single Shot Detector
│   │   ├── ssdlite.py # SSDLite scoring and regression heads
│   ├── model_zoo.py # List of pre-trained availeble models
        ...
├── utils/ # useful utils
│   ├── onnx_utils.py # Utils for ONNX models
│   ├── torch_utils.py # Utils for pytorch models
│   ├── processing.py # Pre/post processing methods for images
├── wrappers/ # onnx and torch model wrappers
│   ├── get_model.py # Get model method
│   ├── onnx_model.py # ONNX model wrapper
│   ├── pytorch_model.py # Pytorch model wrapper

About

Hand classifiers & detectors for HaGRID

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages