Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add channel-pruning MIT license #2065

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Docs/user_guide/channel_pruning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ AIMET Channel Pruning

Channel Pruning is a model compression technique that reduces less-important input channels from layers in a given model. Currently AIMET supports Channel Pruning of Conv2d layers.

For more background details about Channel Pruning, please refer to He, Yihui, Xiangyu Zhang, and Jian Sun. Channel pruning for accelerating very deep neural networks.


Overall Procedure
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
#
# @@-COPYRIGHT-END-@@
# =============================================================================
#
# This file contains code adapted from channel-pruning (https://github.com/yihui-he/channel-pruning)
# Copyright (c) 2018 Yihui He 何宜晖
# Licensed under the MIT License (see https://github.com/yihui-he/channel-pruning/blob/master/LICENSE for details)

""" Prunes layers using Channel Pruning scheme """

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
#
# @@-COPYRIGHT-END-@@
# =============================================================================
#
# This file contains code adapted from channel-pruning (https://github.com/yihui-he/channel-pruning)
# Copyright (c) 2018 Yihui He 何宜晖
# Licensed under the MIT License (see https://github.com/yihui-he/channel-pruning/blob/master/LICENSE for details)

""" Prunes layers using Channel Pruning scheme """
from typing import Iterator, List
Expand Down