Table of Contents

Class BackboneConfig

Namespace
AiDotNet.ComputerVision.Detection.Backbones
Assembly
AiDotNet.dll

Configuration for backbone networks.

public class BackboneConfig
Inheritance
BackboneConfig
Inherited Members

Properties

Freeze

Whether to freeze the backbone during training.

public bool Freeze { get; set; }

Property Value

bool

OutputLevels

Which feature levels to output (e.g., [2, 3, 4] for P3, P4, P5).

public int[] OutputLevels { get; set; }

Property Value

int[]

RandomSeed

Random seed for weight initialization.

public int? RandomSeed { get; set; }

Property Value

int?

UsePretrained

Whether to use pre-trained weights.

public bool UsePretrained { get; set; }

Property Value

bool

WeightsUrl

URL to download pre-trained weights from.

public string? WeightsUrl { get; set; }

Property Value

string