-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Welcome to the Efficient_Person_ReID wiki!
-
We are using ResNet and DenseNet for ReID (inherited from the algorithm provided by Dr. Wang), so you probably want to be familiar with those architectures.
-
In ResNet and DenseNet, channel pruning may result in inconsistency in feature map addition/concatenation. This is a problem so I was doing "pseudo pruning", meaning that the channels to be pruned were merely set to all-zero (as opposed to actually removed from the model). This should make a big difference if the pruning were actually executed.
-
Investigate parameter quantization implementations. (Our framework is currently in PyTorch, but, last time I checked, PyTorch did not have good support to quantization while Tensorflow did. If that's still true, we may consider move the thing to TF.)
-
Other interesting random stuff: https://github.com/pytorch/QNNPACK https://www.tensorflow.org/lite/performance/post_training_quantization https://hanlab.mit.edu/projects/amc/papers/amc_eccv.pdf