├── .gitignore ├── models ├── __pycache__ │ └── dat_jittor.cpython-37.pyc └── dat_jittor.py ├── readme.md └── test_dat.py /.gitignore: -------------------------------------------------------------------------------- 1 | jimm 2 | -------------------------------------------------------------------------------- /models/__pycache__/dat_jittor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/DAT-Jittor/HEAD/models/__pycache__/dat_jittor.cpython-37.pyc -------------------------------------------------------------------------------- /models/dat_jittor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/DAT-Jittor/HEAD/models/dat_jittor.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/DAT-Jittor/HEAD/readme.md -------------------------------------------------------------------------------- /test_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/DAT-Jittor/HEAD/test_dat.py --------------------------------------------------------------------------------