Class OperationDto
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
Operation
Gets or sets the operation type (e.g., "conv3x3", "skip", "max_pool").
[JsonProperty("operation")]
public string Operation { get; set; }
Property Value
ToNode
Gets or sets the destination node index.
[JsonProperty("toNode")]
public int ToNode { get; set; }