├── .gitignore ├── Aphantasia.ipynb ├── CLIP_VQGAN.ipynb ├── IllusTrip3D.ipynb ├── Illustra.ipynb ├── LICENSE ├── README.md ├── _out ├── Aphantasia.jpg ├── Aphantasia2.jpg ├── Aphantasia3.jpg ├── Aphantasia4.jpg ├── some_cute_image-FFT.jpg ├── some_cute_image-SIREN.jpg └── some_cute_image-VQGAN.jpg ├── aphantasia ├── __init__.py ├── image.py ├── interpol.py ├── progress_bar.py ├── transforms.py └── utils.py ├── clip_fft.py ├── cppn.py ├── depth ├── __init__.py ├── any2 │ ├── dinov2.py │ ├── dinov2_layers │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── block.py │ │ ├── drop_path.py │ │ ├── layer_scale.py │ │ ├── mlp.py │ │ ├── patch_embed.py │ │ └── swiglu_ffn.py │ ├── dpt.py │ ├── run.py │ └── util │ │ ├── blocks.py │ │ └── transform.py └── depth.py ├── illustra.py ├── illustrip.py ├── requirements.txt ├── setup.py └── shader_expo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/.gitignore -------------------------------------------------------------------------------- /Aphantasia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/Aphantasia.ipynb -------------------------------------------------------------------------------- /CLIP_VQGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/CLIP_VQGAN.ipynb -------------------------------------------------------------------------------- /IllusTrip3D.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/IllusTrip3D.ipynb -------------------------------------------------------------------------------- /Illustra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/Illustra.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/README.md -------------------------------------------------------------------------------- /_out/Aphantasia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/Aphantasia.jpg -------------------------------------------------------------------------------- /_out/Aphantasia2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/Aphantasia2.jpg -------------------------------------------------------------------------------- /_out/Aphantasia3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/Aphantasia3.jpg -------------------------------------------------------------------------------- /_out/Aphantasia4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/Aphantasia4.jpg -------------------------------------------------------------------------------- /_out/some_cute_image-FFT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/some_cute_image-FFT.jpg -------------------------------------------------------------------------------- /_out/some_cute_image-SIREN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/some_cute_image-SIREN.jpg -------------------------------------------------------------------------------- /_out/some_cute_image-VQGAN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/_out/some_cute_image-VQGAN.jpg -------------------------------------------------------------------------------- /aphantasia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aphantasia/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/aphantasia/image.py -------------------------------------------------------------------------------- /aphantasia/interpol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/aphantasia/interpol.py -------------------------------------------------------------------------------- /aphantasia/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/aphantasia/progress_bar.py -------------------------------------------------------------------------------- /aphantasia/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/aphantasia/transforms.py -------------------------------------------------------------------------------- /aphantasia/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/aphantasia/utils.py -------------------------------------------------------------------------------- /clip_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/clip_fft.py -------------------------------------------------------------------------------- /cppn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/cppn.py -------------------------------------------------------------------------------- /depth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depth/any2/dinov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/__init__.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/attention.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/block.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/drop_path.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/layer_scale.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/mlp.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/patch_embed.py -------------------------------------------------------------------------------- /depth/any2/dinov2_layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dinov2_layers/swiglu_ffn.py -------------------------------------------------------------------------------- /depth/any2/dpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/dpt.py -------------------------------------------------------------------------------- /depth/any2/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/run.py -------------------------------------------------------------------------------- /depth/any2/util/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/util/blocks.py -------------------------------------------------------------------------------- /depth/any2/util/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/any2/util/transform.py -------------------------------------------------------------------------------- /depth/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/depth/depth.py -------------------------------------------------------------------------------- /illustra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/illustra.py -------------------------------------------------------------------------------- /illustrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/illustrip.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/setup.py -------------------------------------------------------------------------------- /shader_expo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eps696/aphantasia/HEAD/shader_expo.py --------------------------------------------------------------------------------