├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── setup.py ├── unet.png └── x_unet ├── __init__.py └── x_unet.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/setup.py -------------------------------------------------------------------------------- /unet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/unet.png -------------------------------------------------------------------------------- /x_unet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/x_unet/__init__.py -------------------------------------------------------------------------------- /x_unet/x_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/x-unet/HEAD/x_unet/x_unet.py --------------------------------------------------------------------------------