├── .gitignore ├── README.md ├── Singularity.digits ├── Singularity.tensorflow ├── Singularity.theano ├── keras ├── Singularity.keras-py2 ├── Singularity.keras-py3 ├── keras └── mnist_test.py ├── rnaseq └── Singularity.rnaseq ├── rstudio ├── README.md └── Singularity.rstudio └── torch ├── Readme.md ├── Singularity.torch └── Singularity.torch-extras /.gitignore: -------------------------------------------------------------------------------- 1 | *.simg 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/README.md -------------------------------------------------------------------------------- /Singularity.digits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/Singularity.digits -------------------------------------------------------------------------------- /Singularity.tensorflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/Singularity.tensorflow -------------------------------------------------------------------------------- /Singularity.theano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/Singularity.theano -------------------------------------------------------------------------------- /keras/Singularity.keras-py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/keras/Singularity.keras-py2 -------------------------------------------------------------------------------- /keras/Singularity.keras-py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/keras/Singularity.keras-py3 -------------------------------------------------------------------------------- /keras/keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/keras/keras -------------------------------------------------------------------------------- /keras/mnist_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/keras/mnist_test.py -------------------------------------------------------------------------------- /rnaseq/Singularity.rnaseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/rnaseq/Singularity.rnaseq -------------------------------------------------------------------------------- /rstudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/rstudio/README.md -------------------------------------------------------------------------------- /rstudio/Singularity.rstudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/rstudio/Singularity.rstudio -------------------------------------------------------------------------------- /torch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/torch/Readme.md -------------------------------------------------------------------------------- /torch/Singularity.torch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/torch/Singularity.torch -------------------------------------------------------------------------------- /torch/Singularity.torch-extras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/singularity-examples/HEAD/torch/Singularity.torch-extras --------------------------------------------------------------------------------