├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build_sm3.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SM3_example.ipynb ├── requirements.txt ├── setup.py ├── src └── SM3 │ ├── SM3.py │ ├── SM3.pyi │ └── __init__.py └── tests └── test_SM3.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_sm3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/.github/workflows/build_sm3.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/README.md -------------------------------------------------------------------------------- /SM3_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/SM3_example.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/setup.py -------------------------------------------------------------------------------- /src/SM3/SM3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/src/SM3/SM3.py -------------------------------------------------------------------------------- /src/SM3/SM3.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/src/SM3/SM3.pyi -------------------------------------------------------------------------------- /src/SM3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/src/SM3/__init__.py -------------------------------------------------------------------------------- /tests/test_SM3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enealor/PyTorch-SM3/HEAD/tests/test_SM3.py --------------------------------------------------------------------------------