Where to import LinBnDrop layer from in Fastai or pyTorch?

Viewed 95

I wonder where to find the LinBnDrop layer class in Fastai? The documentation only describes the class, but does not show where to import it from.

1 Answers

And found it:

from fastai.layers import LinBnDrop
Related