- 非官方
- 基于注意力机制的Drop正则化方法
| python版本 | pytorch版本 | 系统 |
|---|---|---|
| 3.6 | 1.6.0 | Ubuntu |
import TargetDrop class MyNet(): def __init__(self): ... self.target_drop=TargetDrop(in_channels) def forward(self, x): ... x=self.target_drop(x)
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Latest commit | ||||
| python版本 | pytorch版本 | 系统 |
|---|---|---|
| 3.6 | 1.6.0 | Ubuntu |
import TargetDrop class MyNet(): def __init__(self): ... self.target_drop=TargetDrop(in_channels) def forward(self, x): ... x=self.target_drop(x)
TargetDrop: A Targeted Regularization Method for Convolutional Neural Networks