pipeline.objects.model.Model
GraphNode - class
pipeline.objects.graph.GraphNode(
model: Any,
*,
name: str = "",
local_id: str = ""
)
Description
A class generated from pipeline_model
for containing the wrapped model, it's metadata, and reference IDs for use in the Graph
object.
Parameters
model
(Any
) - base model class wrapped bypipeline_model
name
(str
, optional) - name of the modellocal_id
(str
) - ID for the model used by theGraph
object
Functions
from_schema(cls, schema: ModelGet) -> Model
from_schema(cls, schema: ModelGet) -> Model
Description
Returns a Model
object from a ModelGet
schema. Typically used in conjunction with remote API access.
Parameters
schema
, (ModelGet
) - theModelGet
schema containing the remote model information.
Updated about 1 year ago