├── .gitignore ├── LICENSE ├── __init__.py ├── absorb_bn.py ├── cross_entropy.py ├── dataset.py ├── functions.py ├── log.py ├── meters.py ├── misc.py ├── mixup.py ├── optim.py ├── param_filter.py ├── quantize.py ├── recorder.py ├── regime.py └── regularization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absorb_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/absorb_bn.py -------------------------------------------------------------------------------- /cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/cross_entropy.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/dataset.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/functions.py -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/log.py -------------------------------------------------------------------------------- /meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/meters.py -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/misc.py -------------------------------------------------------------------------------- /mixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/mixup.py -------------------------------------------------------------------------------- /optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/optim.py -------------------------------------------------------------------------------- /param_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/param_filter.py -------------------------------------------------------------------------------- /quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/quantize.py -------------------------------------------------------------------------------- /recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/recorder.py -------------------------------------------------------------------------------- /regime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/regime.py -------------------------------------------------------------------------------- /regularization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladhoffer/utils.pytorch/HEAD/regularization.py --------------------------------------------------------------------------------