Table of Contents

Class OperationDto

Namespace
AiDotNet.AutoML
Assembly
AiDotNet.dll

Data transfer object for a single operation in the architecture.

public class OperationDto
Inheritance
OperationDto
Inherited Members

Properties

FromNode

Gets or sets the source node index.

[JsonProperty("fromNode")]
public int FromNode { get; set; }

Property Value

int

Operation

Gets or sets the operation type (e.g., "conv3x3", "skip", "max_pool").

[JsonProperty("operation")]
public string Operation { get; set; }

Property Value

string

ToNode

Gets or sets the destination node index.

[JsonProperty("toNode")]
public int ToNode { get; set; }

Property Value

int