torch.tx.ExpressionGraph
export interface ExpressionGraph {
nodes: GraphNode[];
edges: GraphEdge[];
/** The root node of the expression (final output) */
root: number;
}Structured graph representation of an expression
export interface ExpressionGraph {
nodes: GraphNode[];
edges: GraphEdge[];
/** The root node of the expression (final output) */
root: number;
}Structured graph representation of an expression