├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── rezero ├── __init__.py └── transformer │ ├── __init__.py │ └── rztx.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | build/ 4 | *.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majumderb/rezero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majumderb/rezero/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.4.0 -------------------------------------------------------------------------------- /rezero/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rezero/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majumderb/rezero/HEAD/rezero/transformer/__init__.py -------------------------------------------------------------------------------- /rezero/transformer/rztx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majumderb/rezero/HEAD/rezero/transformer/rztx.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majumderb/rezero/HEAD/setup.py --------------------------------------------------------------------------------