├── .gitignore ├── README.md ├── main.py ├── model.py ├── tensor_net.py └── utils ├── imgnet_util.py └── ops.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/model.py -------------------------------------------------------------------------------- /tensor_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/tensor_net.py -------------------------------------------------------------------------------- /utils/imgnet_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/utils/imgnet_util.py -------------------------------------------------------------------------------- /utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HongyangGao/ChannelNets/HEAD/utils/ops.py --------------------------------------------------------------------------------