Skip to main content

Unofficial implementations of transfomers models for vision.

Project description

VisTrans

Implementations of transformers based models for different vision tasks

Install

  1. Install from PyPI
pip install vistrans
  1. Install from Anaconda
conda install -c nachiket273 vistrans

Version 0.003 (06/30/2021)


PyPI version

Minor fixes to fix issues with existing models.

Version 0.002 (04/17/2021)


PyPI version

Pretrained Pytorch Bottleneck Transformers for Visual Recognition including following

  • botnet50
  • botnet101
  • botnet152

Implementation based off Official Tensorflow Implementation

Usage


pip install vistrans

1) List Pretrained Models.
```Python
from vistrans import BotNet
BotNet.list_pretrained()
  1. Create Pretrained Models.
from vistrans import BotNet
model = BotNet.create_pretrained(name, img_size, in_ch, num_classes,
                                 n_heads, pos_enc_type)
  1. Create Custom Model
from vistrans import BotNet
model = BotNet.create_model(layers, img_size, in_ch, num_classes, groups,
                            norm_layer, n_heads, pos_enc_type)

Version 0.001 (03/04/2021)


PyPI version

Pretrained Pytorch Vision Transformer Models including following

  • vit_s16_224
  • vit_b16_224
  • vit_b16_384
  • vit_b32_384
  • vit_l16_224
  • vit_l16_384
  • vit_l32_384

Implementation based off official jax repository and timm's implementation

Usage


  1. List Pretrained Models.
from vistrans import VisionTransformer
VisionTransformer.list_pretrained()
  1. Create Pretrained Models.
from vistrans import VisionTransformer
model = VisionTransformer.create_pretrained(name, img_size, in_ch, num_classes)
  1. Create Custom Model
from vistrans import VisionTransformer
model = VisionTransformer.create_model(img_size, patch_size, in_ch, num_classes,
                                       embed_dim, depth, num_heads, mlp_ratio,
                                       drop_rate, attention_drop_rate, hybrid,
                                       norm_layer, bias)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vistrans-0.0.3.tar.gz (11.1 kB view hashes)

Uploaded Source

Built Distribution

vistrans-0.0.3-py3-none-any.whl (11.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page