Table of Contents

Class ResNetSearchSpace<T>

Namespace
AiDotNet.AutoML.SearchSpace
Assembly
AiDotNet.dll

Defines the ResNet-based search space for neural architecture search. Includes residual blocks, bottleneck blocks, and various skip connections.

public class ResNetSearchSpace<T> : SearchSpaceBase<T>

Type Parameters

T

The numeric type for calculations

Inheritance
ResNetSearchSpace<T>
Inherited Members

Constructors

ResNetSearchSpace()

public ResNetSearchSpace()

Properties

BlockDepths

Possible depths for residual blocks

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

Property Value

List<int>

BottleneckRatio

Bottleneck ratio for channel reduction

public int BottleneckRatio { get; set; }

Property Value

int

GroupCount

Number of groups for grouped convolutions (ResNeXt)

public int GroupCount { get; set; }

Property Value

int