Provides an implementation of Swin Transformers, attempting to adhere to best practices for reproducibility
$ conda env create -f environment.yml
$ conda activate swin
$ python scripts/train.py
pip install -e .
from swin import build_swin_model
model = build_swin_model(out_classes=20)
pytest