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
TThe 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
BottleneckRatio
Bottleneck ratio for channel reduction
public int BottleneckRatio { get; set; }
Property Value
GroupCount
Number of groups for grouped convolutions (ResNeXt)
public int GroupCount { get; set; }