Class MobileNetSearchSpace<T>
- Namespace
- AiDotNet.AutoML.SearchSpace
- Assembly
- AiDotNet.dll
Defines the MobileNet-based search space for neural architecture search. Includes inverted residual blocks, depthwise separable convolutions, and squeeze-excitation.
public class MobileNetSearchSpace<T> : SearchSpaceBase<T>
Type Parameters
TThe numeric type for calculations
- Inheritance
-
MobileNetSearchSpace<T>
- Inherited Members
Constructors
MobileNetSearchSpace()
public MobileNetSearchSpace()
Properties
DepthMultiplier
Depth multiplier for scaling network depth
public double DepthMultiplier { get; set; }
Property Value
ExpansionRatios
Expansion ratios for inverted residual blocks
public List<int> ExpansionRatios { get; set; }
Property Value
KernelSizes
Kernel sizes to search over
public List<int> KernelSizes { get; set; }
Property Value
WidthMultiplier
Width multiplier for scaling channel counts
public double WidthMultiplier { get; set; }