├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── nvila_performance.png ├── nvila_teaser.jpg └── s2_wrapper_2.png ├── s2wrapper ├── __init__.py ├── core.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | dist/ 3 | s2wrapper.egg-info/ 4 | build/ 5 | *pycache* 6 | example.py 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/README.md -------------------------------------------------------------------------------- /assets/nvila_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/assets/nvila_performance.png -------------------------------------------------------------------------------- /assets/nvila_teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/assets/nvila_teaser.jpg -------------------------------------------------------------------------------- /assets/s2_wrapper_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/assets/s2_wrapper_2.png -------------------------------------------------------------------------------- /s2wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/s2wrapper/__init__.py -------------------------------------------------------------------------------- /s2wrapper/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/s2wrapper/core.py -------------------------------------------------------------------------------- /s2wrapper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/s2wrapper/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfshi/scaling_on_scales/HEAD/setup.py --------------------------------------------------------------------------------