GraphPackage interface

Defines the graph of modules making up the machine learning solution.

Properties

edges

The list of edges making up the graph.

graphParameters

The collection of global parameters for the graph, given as a global parameter name to GraphParameter map. Each parameter here has a 1:1 match with the global parameters values map declared at the WebServiceProperties level.

nodes

The set of nodes making up the graph, provided as a nodeId to GraphNode map

Property Details

edges

The list of edges making up the graph.

edges?: GraphEdge[]

Property Value

graphParameters

The collection of global parameters for the graph, given as a global parameter name to GraphParameter map. Each parameter here has a 1:1 match with the global parameters values map declared at the WebServiceProperties level.

graphParameters?: {[propertyName: string]: GraphParameter}

Property Value

{[propertyName: string]: GraphParameter}

nodes

The set of nodes making up the graph, provided as a nodeId to GraphNode map

nodes?: {[propertyName: string]: GraphNode}

Property Value

{[propertyName: string]: GraphNode}