├── .gitignore ├── README.md ├── __pycache__ ├── dataset.cpython-36.pyc └── dataset.cpython-37.pyc ├── dataset.py ├── dataset.pyc ├── finetune.py ├── model_18 ├── model_check.py ├── prune.py ├── prune.pyc └── prunned_18 /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | train/ 4 | test1/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/dataset.py -------------------------------------------------------------------------------- /dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/dataset.pyc -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/finetune.py -------------------------------------------------------------------------------- /model_18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/model_18 -------------------------------------------------------------------------------- /model_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/model_check.py -------------------------------------------------------------------------------- /prune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/prune.py -------------------------------------------------------------------------------- /prune.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/prune.pyc -------------------------------------------------------------------------------- /prunned_18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeric/channel_prune/HEAD/prunned_18 --------------------------------------------------------------------------------