Table of Contents

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

T

The 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

double

ExpansionRatios

Expansion ratios for inverted residual blocks

public List<int> ExpansionRatios { get; set; }

Property Value

List<int>

KernelSizes

Kernel sizes to search over

public List<int> KernelSizes { get; set; }

Property Value

List<int>

WidthMultiplier

Width multiplier for scaling channel counts

public double WidthMultiplier { get; set; }

Property Value

double