Mish的两种实现方式 class Mish(nn.Module): @staticmethod def forward(x): return x * F.softplus(x).tanh() class M … Continue reading Mish的两种实现方式