Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vit-prisma

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vit-prisma

A Vision Transformer library for mechanistic interpretability.

  • 0.1.4
  • PyPI
  • Socket score

Maintainers
1

Vision Transformer (ViT) Prisma Library

Logo Image 1 Logo Image 2 Logo Image 3

ViT Prisma is an open-source mechanistic interpretability library for Vision Transformers (ViTs). This library was created by Sonia Joseph.

Contributors: Praneet Suresh, Yash Vadi, Rob Graham [and more coming soon]

We welcome new contributors. Check out our contributing guidelines here.

Installing Repo

To install as an editable repo:

git clone https://github.com/soniajoseph/ViT-Prisma
cd ViT-Prisma
pip install -e .

How do I use this repo?

Check out our guide.

What's in the repo?

Part One: Mechanistic interpretability tooling, including activation caching, path-patching, and attention head visualization. In progress.

Part Two: Open source mini transformers (ViT "mice"). In progress.

Part Three: Code to train your own vision transformers.

Part One: Mechanistic Interpretability Tooling

Coming soon.

Attention head visualization code

Part Two: Open Source Mini-Transformers (ViT Mice 🐭)

ViT Mice are the mini-versions of the standard Vision Transformers. Just as mice are used in scientific experiments for their small size, ViT Mice serve a similar purpose to illuminate their larger counterparts. By training these mice on both toy datasets and in-the-wild data, we aim to observe their behaviors in various environments.

Categories of ViT Mice

  1. Toy Data Mice: Trained on controlled, synthetic datasets to understand specific behaviors or to isolate certain aspects of the learning process.
  2. In-the-Wild Mice: Trained on naturalistic, real-world data reminiscent of models in-production.

ImageNet-1k classification training checkpoints

The detailed training logs and metrics can be found here. These models were trained by Yash Vadi.

Table of Results

Accuracy [ <Acc> | <Top5 Acc> ]

SizeNumLayersAttention+MLPAttentionOnlyModel Link
tiny10.16 | 0.330.11 | 0.25AttentionOnly, Attention+MLP
base20.23 | 0.440.16 | 0.34AttentionOnly, Attention+MLP
small30.28 | 0.510.17 | 0.35AttentionOnly, Attention+MLP
medium40.33 | 0.560.17 | 0.36AttentionOnly, Attention+MLP

dSprites Shape Classification training checkpoints

Original dataset is here.

Full results and training setup are here. These models were trained by Yash Vadi.

Table of Results

SizeNumLayersAttention+MLPAttentionOnlyModel Link
tiny10.5350.459AttentionOnly, Attention+MLP
base20.9960.685AttentionOnly, Attention+MLP
small31.0000.774AttentionOnly, Attention+MLP
medium41.0000.991AttentionOnly, Attention+MLP

To do: to train

1-4 layer, attention-only, and full-attention versions of each.

  • ImageNet-1k Mice (reconstruction loss)
    • Attention-only
      • 1-layer, 2-layer, 3-layer, 4-layer, 5-layer
    • Full-attention
      • 1-layer, 2-layer, 3-layer, 4-layer, 5-layer
  • dSprites
    • Smallest possible model that can recognize size.
    • Smallest possible model that can recognize position.

Guidelines for training + uploading models

Upload your trained models to Huggingface. Follow the Huggingface guidelines and also create a model card. Document as much of the training process as possible including links to loss and accuracy curves on weights and biases, dataset (and order of training data), hyperparameters, optimizer, learning rate schedule, hardware, and other details that may be relevant.

Include frequent checkpoints throughout training, which will help other researchers understand training dynamics.

Part Three: ViT Training Code 🚀

This repo includes training code to easily train ViTs from scratch or finetune existing models. See our Usage Guide for more information.

Configurations

The Prisma config object houses certain hyperparameters of the models, along with attributes of the training procedure, which can come in handy to track, and design new experiments.

There are several config objects available in the framework.

Below are the configs available as part of the framework:

  • InductionConfig
  • CircleConfig
  • MNISTConfig
  • DSpritesConfig
from vit_prisma.configs import <CONFIG_OF_CHOICE>

By inspecting one of the configs available in the framework, you can create your own one.

Base ViT

The base ViT part of the Prisma Project allows instantiating models in a flexible way, where the architecture is defined by the Prisma config object discussed in the previous section.

Instantiating the Base ViT

from vit_prisma.models import base_vit
from vit_prisma.configs import InductionConfig

# The InductionConfig is available in the framework itself, which is setup for the induction dataset
config = InductionConfig.GlobalConfig()

model = base_vit.BaseViT(config)

Using pretrained models

from vit_prisma.models.pretrained_model import PretrainedModel
from vit_prisma.configs import InductionConfig

config = InductionConfig.GlobalConfig()

hf_model = PretrainedModel('google/vit-base-patch16-224-in21k', config)

timm_model = PretrainedModel('vit_base_patch32_224', config, is_timm=True)

Datasets

The framework also has a few datasets that can be synthetically generated, and cached.

Below are the datasets available as part of the framework:

You will be able to use any other dataset with the framework, for ease of use, you can instantiate it as a Pytorch dataset object.

from vit_prisma.dataloaders.induction import InductionDataset

train = InductionDataset('train')

# If you don't provide a test split to the trainer, the trainer will perform the train/test split for you.

Training and tracking experiments

The trainer has built in support for wandb experiment tracking. Make sure to set up wandb on your localhost, and configure the tracking attributes in the Prisma config object.

from vit_prisma.models.base_vit import BaseViT
from vit_prisma.configs import InductionConfig
from vit_prisma.training import trainer
from vit_prisma.dataloaders.induction import InductionDataset

train_dataset = InductionDataset('train')

config = InductionConfig.GlobalConfig()

model_function = BaseViT

trainer.train(model_function, config, train_dataset)

Errors 💰

If you point out a conceptual error in this code (e.g. incorrect implementation of a transformer, not a minor function import), I will send you $5-20 per bug depending on the bug's severity.

Citation

Please cite this repository when used in papers or research projects.

@misc{joseph2023vit,
  author = {Sonia Joseph},
  title = {ViT Prisma: A Mechanistic Interpretability Library for Vision Transformers},
  year = {2023},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/soniajoseph/vit-prisma}}
}

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc