GraphPackageResponse

data class GraphPackageResponse(val edges: List<GraphEdgeResponse>? = null, val graphParameters: Map<String, GraphParameterResponse>? = null, val nodes: Map<String, GraphNodeResponse>? = null)

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

Constructors

Link copied to clipboard
constructor(edges: List<GraphEdgeResponse>? = null, graphParameters: Map<String, GraphParameterResponse>? = null, nodes: Map<String, GraphNodeResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The list of edges making up the graph.

Link copied to clipboard

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.

Link copied to clipboard

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