├── .gitattributes ├── .github └── workflows │ ├── gh-pages.yml │ └── unit_tests.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin ├── block_randomize.py └── block_randomize_and_batch.py ├── docs ├── config.mako └── presentations │ └── Infinibatch Introduction, Seide and Gmyr, Aug 2020.pptx ├── infinibatch ├── __init__.py ├── datasets.py └── iterators.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── test ├── test_datasets.py ├── test_doctests.py └── test_iterators.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/block_randomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/bin/block_randomize.py -------------------------------------------------------------------------------- /bin/block_randomize_and_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/bin/block_randomize_and_batch.py -------------------------------------------------------------------------------- /docs/config.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/docs/config.mako -------------------------------------------------------------------------------- /docs/presentations/Infinibatch Introduction, Seide and Gmyr, Aug 2020.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/docs/presentations/Infinibatch Introduction, Seide and Gmyr, Aug 2020.pptx -------------------------------------------------------------------------------- /infinibatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/infinibatch/__init__.py -------------------------------------------------------------------------------- /infinibatch/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/infinibatch/datasets.py -------------------------------------------------------------------------------- /infinibatch/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/infinibatch/iterators.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/test/test_datasets.py -------------------------------------------------------------------------------- /test/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/test/test_doctests.py -------------------------------------------------------------------------------- /test/test_iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/infinibatch/HEAD/test/test_iterators.py --------------------------------------------------------------------------------