.dockerignore
.flake8
.gitignore
CITATION.cff
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
TODO
pyproject.toml
pyrightconfig.json
.github/workflows/docs.yml
.github/workflows/release.yml
.github/workflows/tests.yml
.vscode/extensions.json
.vscode/launch.json
.vscode/settings.json
conda/Makefile
conda/README.md
conda/environment.conda-lock.yml
conda/environment.devenv.yml
conda/environment.linux-64.lock
conda/environment.linux-64.yml
conda/environment.osx-64.lock
conda/environment.osx-64.yml
conda/environment.win-64.lock
conda/environment.win-64.yml
docker/Dockerfile
docker/build
docker/run
docs/_citations.bib
docs/_config.yml
docs/_toc.yml
docs/index.md
docs/_images/logo.png
docs/basics/example-page.md
docs/basics/installation.md
docs/reference/core/domain.md
docs/reference/core/flow.md
docs/reference/core/image.md
docs/reference/core/index.md
docs/reference/core/kernels.md
docs/reference/data/dataset.md
docs/reference/data/index.md
docs/reference/data/sampler.md
docs/reference/data/tensor.md
docs/reference/data/transforms.md
docs/reference/losses/index.md
docs/reference/modules/index.md
docs/reference/networks/index.md
docs/reference/spatial/common.md
docs/reference/spatial/composite.md
docs/reference/spatial/index.md
docs/reference/spatial/transformer.md
docs/reference/utils/index.md
docs/tutorials/.gitignore
docs/tutorials/example-myst-notebook.md
docs/tutorials/example-notebook.ipynb
docs/tutorials/pairwise-registration-intro.ipynb
examples/__init__.py
examples/ffd/README.md
examples/ffd/__init__.py
examples/ffd/__main__.py
examples/ffd/engine.py
examples/ffd/hooks.py
examples/ffd/losses.py
examples/ffd/optim.py
examples/ffd/pairwise.py
examples/ffd/params.yaml
examples/ffd/register.py
examples/istn/.gitignore
examples/istn/README.md
examples/istn/params.yaml
examples/istn/requirements.txt
examples/istn/train.py
examples/istn/models/__init__.py
examples/istn/models/itn.py
examples/istn/models/stn.py
src/deepali/core/__init__.py
src/deepali/core/_kornia.py
src/deepali/core/affine.py
src/deepali/core/argparse.py
src/deepali/core/bspline.py
src/deepali/core/collections.py
src/deepali/core/config.py
src/deepali/core/cube.py
src/deepali/core/enum.py
src/deepali/core/environ.py
src/deepali/core/flow.py
src/deepali/core/functional.py
src/deepali/core/grid.py
src/deepali/core/image.py
src/deepali/core/itertools.py
src/deepali/core/kernels.py
src/deepali/core/linalg.py
src/deepali/core/logging.py
src/deepali/core/math.py
src/deepali/core/nnutils.py
src/deepali/core/pathlib.py
src/deepali/core/pointset.py
src/deepali/core/psutil.py
src/deepali/core/random.py
src/deepali/core/storage.py
src/deepali/core/tempfile.py
src/deepali/core/tensor.py
src/deepali/core/typing.py
src/deepali/data/__init__.py
src/deepali/data/collate.py
src/deepali/data/dataset.py
src/deepali/data/flow.py
src/deepali/data/image.py
src/deepali/data/partition.py
src/deepali/data/prepare.py
src/deepali/data/sample.py
src/deepali/data/sampler.py
src/deepali/data/tensor.py
src/deepali/data/transforms/__init__.py
src/deepali/data/transforms/image.py
src/deepali/data/transforms/item.py
src/deepali/losses/__init__.py
src/deepali/losses/base.py
src/deepali/losses/bspline.py
src/deepali/losses/flow.py
src/deepali/losses/functional.py
src/deepali/losses/image.py
src/deepali/losses/params.py
src/deepali/losses/pointset.py
src/deepali/modules/__init__.py
src/deepali/modules/basic.py
src/deepali/modules/flow.py
src/deepali/modules/image.py
src/deepali/modules/lambd.py
src/deepali/modules/mixins.py
src/deepali/modules/output.py
src/deepali/modules/sample.py
src/deepali/modules/utilities.py
src/deepali/networks/__init__.py
src/deepali/networks/resnet.py
src/deepali/networks/unet.py
src/deepali/networks/utils.py
src/deepali/networks/blocks/__init__.py
src/deepali/networks/blocks/residual.py
src/deepali/networks/blocks/skip.py
src/deepali/networks/layers/__init__.py
src/deepali/networks/layers/acti.py
src/deepali/networks/layers/conv.py
src/deepali/networks/layers/join.py
src/deepali/networks/layers/lambd.py
src/deepali/networks/layers/linear.py
src/deepali/networks/layers/norm.py
src/deepali/networks/layers/pool.py
src/deepali/networks/layers/upsample.py
src/deepali/spatial/__init__.py
src/deepali/spatial/base.py
src/deepali/spatial/bspline.py
src/deepali/spatial/composite.py
src/deepali/spatial/generic.py
src/deepali/spatial/image.py
src/deepali/spatial/linear.py
src/deepali/spatial/nonrigid.py
src/deepali/spatial/parametric.py
src/deepali/spatial/transformer.py
src/deepali/utils/__init__.py
src/deepali/utils/ipython.py
src/deepali/utils/tensorboard.py
src/deepali/utils/aws/__init__.py
src/deepali/utils/aws/s3/__init__.py
src/deepali/utils/aws/s3/client.py
src/deepali/utils/aws/s3/config.py
src/deepali/utils/aws/s3/object.py
src/deepali/utils/ignite/__init__.py
src/deepali/utils/ignite/handlers.py
src/deepali/utils/ignite/output_transforms.py
src/deepali/utils/ignite/score_functions.py
src/deepali/utils/ignite/metrics/__init__.py
src/deepali/utils/ignite/metrics/average_loss.py
src/deepali/utils/ignite/metrics/binary_classification.py
src/deepali/utils/ignite/metrics/multilabel_classification.py
src/deepali/utils/imageio/__init__.py
src/deepali/utils/imageio/meta.py
src/deepali/utils/imageio/nifti.py
src/deepali/utils/imageio/sitk.py
src/deepali/utils/simpleitk/__init__.py
src/deepali/utils/simpleitk/grid.py
src/deepali/utils/simpleitk/imageio.py
src/deepali/utils/simpleitk/numpy.py
src/deepali/utils/simpleitk/sample.py
src/deepali/utils/simpleitk/torch.py
src/deepali/utils/vtk/__init__.py
src/deepali/utils/vtk/idlist.py
src/deepali/utils/vtk/image.py
src/deepali/utils/vtk/numpy.py
src/deepali/utils/vtk/polydataio.py
src/deepali/utils/vtk/simpleitk.py
src/hf_deepali.egg-info/PKG-INFO
src/hf_deepali.egg-info/SOURCES.txt
src/hf_deepali.egg-info/dependency_links.txt
src/hf_deepali.egg-info/requires.txt
src/hf_deepali.egg-info/top_level.txt
tests/__init__.py
tests/_test_core_bspline.py
tests/test_core_bspline.py
tests/test_core_cube.py
tests/test_core_grid.py
tests/test_core_image_create.py
tests/test_core_image_utils.py
tests/test_core_random.py
tests/test_core_tensor_utils.py
tests/test_data_flow.py
tests/test_data_image.py
tests/test_network_blocks.py
tests/test_network_layers.py
tests/test_network_resnet.py
tests/test_network_unet.py
tests/test_spatial_transformer.py
tests/test_utils_imageio_meta.py