├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── config ├── __init__.py └── cfgs.py ├── core ├── __init__.py ├── metric.py ├── optimizer.py ├── scheduler.py └── solver.py ├── data ├── __init__.py └── imagenet.py ├── docs ├── flops.png ├── params.png └── sss.png ├── symbol ├── __init__.py ├── resnet.py └── resnext.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | from cfgs import * 2 | -------------------------------------------------------------------------------- /config/cfgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/config/cfgs.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/core/metric.py -------------------------------------------------------------------------------- /core/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/core/optimizer.py -------------------------------------------------------------------------------- /core/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/core/scheduler.py -------------------------------------------------------------------------------- /core/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/core/solver.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/data/imagenet.py -------------------------------------------------------------------------------- /docs/flops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/docs/flops.png -------------------------------------------------------------------------------- /docs/params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/docs/params.png -------------------------------------------------------------------------------- /docs/sss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/docs/sss.png -------------------------------------------------------------------------------- /symbol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/symbol/__init__.py -------------------------------------------------------------------------------- /symbol/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/symbol/resnet.py -------------------------------------------------------------------------------- /symbol/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/symbol/resnext.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuSimple/sparse-structure-selection/HEAD/train.py --------------------------------------------------------------------------------