├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md └── model ├── __init__.py ├── base.py ├── ema.py ├── randaugment.py ├── resnetrs.py └── util.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [nachiket273] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/README.md -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/base.py -------------------------------------------------------------------------------- /model/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/ema.py -------------------------------------------------------------------------------- /model/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/randaugment.py -------------------------------------------------------------------------------- /model/resnetrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/resnetrs.py -------------------------------------------------------------------------------- /model/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachiket273/pytorch_resnet_rs/HEAD/model/util.py --------------------------------------------------------------------------------