1 instantiation of MBConv
Microsoft.ML.TorchSharp (1)
AutoFormerV2\ConvLayer.cs (1)
36
this.blocks.Add(new
MBConv
(inChannels, inChannels, convExpandRatio));
5 references to MBConv
Microsoft.ML.TorchSharp (5)
AutoFormerV2\ConvLayer.cs (3)
18
private readonly ModuleList<
MBConv
> blocks;
33
this.blocks = new ModuleList<
MBConv
>();
48
foreach (
var
block in this.blocks)
AutoFormerV2\MBConv.cs (2)
28
/// Initializes a new instance of the <see cref="
MBConv
"/> class.
34
: base(nameof(
MBConv
))