├── LICENSE ├── README.md ├── main.py ├── models ├── __init__.py ├── preresnet.py ├── resnet.py └── resnext.py └── utils └── flops.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/preresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/models/preresnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/models/resnext.py -------------------------------------------------------------------------------- /utils/flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xternalz/SDPoint/HEAD/utils/flops.py --------------------------------------------------------------------------------