01 2020 档案
摘要:参考:https://github.com/vandit15/Class-balanced-loss-pytorch 其中的class_balanced_loss.py: import numpy as np import torch import torch.nn.functional as F
阅读全文
摘要:https://arxiv.org/pdf/1901.05555.pdf skewed 倾斜的,歪斜的 heuristic 启发式的 interpolated插值 focal 焦点的 complementary 互补的 coverage 覆盖 tamable 可驯服的 intrinsic 内在的,本
阅读全文
摘要:Abstract 过滤器(filter)剪枝是卷积神经网络加速和压缩的最有效方法之一。在这项工作中,我们提出了一种叫做Gate Decorator的全局过滤器剪枝算法,它通过将一个普通的CNN模块的输出乘以通道缩放因子(即gate,代码中为g)来对其进行转换。当比例因子设置为0时,相当于删除相应的过
阅读全文
摘要:VGG16 run/vgg16/vgg16_prune_demo.py运行: python ./run/vgg16/vgg16_prune_demo.py --config ./run/vgg16/prune.json 报错: Traceback (most recent call last): F
阅读全文
摘要:https://github.com/youzhonghui/gate-decorator-pruning 1.utils.py class dotdict(dict): """dot.notation access to dictionary attributes""" __getattr__ =
阅读全文