Skip to content

shuuchen/frelu.pytorch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

frelu.pytorch

An unofficial pytorch implementation of funnel activation https://arxiv.org/pdf/2007.11824.pdf. Official implementation can be found here.

Requirements

pip install -r requirements.txt

Usage

  • Simply replace nn.ReLU with FReLU(num_channels), details can be found here.
from frelu import FReLU

conv = nn.Conv2d(in_channels, out_channels, 3, padding=1)
bn = nn.BatchNorm2d(out_channels)
frelu = FReLU(out_channels) # ⬅️

TODO

  • ImageNet training & performance checking

References

Releases

No releases published

Packages

No packages published

Languages