DashboardComm

class imagepypelines.DashboardComm[source]

Bases: object

Object to send messages from the pipelines to dashboard(s)

Attributes Summary

clients

class level variable containing a list of all TCPclients that are connected

graphs_msg_cache

cache of pipeline update messages, these are messages that the dashboard needs to interpret the pipeline status messages

total

returns total number of connected dashboards

Methods Summary

connect(name, host, port)

establishes a connection with the Dashboard Chatroom at the given host and port

disconnect(name)

disconnects from an individual dashboard server

disconnect_all()

disconnects from all dashboard servers

read([names])

send delete messages to all dashboard servers

write(msg[, names])

sends the given message to all connected dashboard servers

write_delete(delete_msg)

send delete messages to all dashboard servers

write_error(error_msg)

send error messages to all dashboard servers

write_graph(pipeline_id, graph_msg)

send pipeline graph or task changes to the Dashboard

write_log(log_msg)

write_reset(reset_msg)

send reset messages to all dashboard servers

write_status(status_msg)

send status changes to all Dashboards

Attributes Documentation

clients = {}

class level variable containing a list of all TCPclients that are connected

Type

list of TCPClient

graphs_msg_cache = {'Pipeline#1a9f11': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#1a9f11", "uuid": "04c1c456f5ba46b884cf9d8cdc1a9f11", "source_type": "pipeline", "payload": {"args": ["images"], "block_docs": {"DisplaySafe#0eccb1": {"name": "DisplaySafe", "id": "DisplaySafe#0eccb1", "uuid": "714f8ae1059e4f54853e76baf50eccb1", "args": ["arr"], "types": {"arr": "<class \'numpy.ndarray\'>"}, "shapes": {"arr": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "DisplaySafe", "DOCS": {"class": "normalizes to [0,255] and bins to a displayable bitdepth\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "instantiates the block\\n\\nArgs:\\n name(str,None): the name of this block - how it will show up in the\\n graph.\\n batch_type(str, int): the type of the batch processing for your\\n process function. Either \\"all\\" or \\"each\\". \\"all\\" means that all\\n argument data will be passed into to your function at once,\\n \\"each\\" means that each argument datum will be passed in\\n individually\\n types(:obj:`dict`,None): Dictionary of input types. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n shapes(:obj:`dict`,None): Dictionary of input shapes. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n containers(:obj:`dict`,None): Dictionary of input containers. If arg\\n doesn\'t exist as a key, or if the value is None, then no\\n checking is done. If not provided, then will default to args as\\n keys, None as values.\\n *if batch_type is \\"each\\", then the container is irrelevant and can\\n be safely ignored!*\\n void(bool): Boolean value. By default all blocks return a value or\\n values as output. However, if printing to screen, plotting, or\\n saving data to a file, a block may not have a meaningful output\\n that should be stored in a pipeline\'s output dictionary. In this\\n case, void should be set to True, so that the output of the block\\n is ignored. The associated var key in the pipeline output will\\n contain a value of :obj:`None`. Default is False", "process": "normalizes to given range and cast\\n\\nArgs:\\n arr(:obj:`numpy.ndarray`): array of any shape and type\\n\\nReturns:\\n :obj:`numpy.ndarray`: normalized array of same shape and casted\\n to the given type"}}, "compute_stats#e7ff18": {"name": "compute_stats", "id": "compute_stats#e7ff18", "uuid": "357fab3025254d239b1bbfbbc6e7ff18", "args": ["image"], "types": {"image": "None"}, "shapes": {"image": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "equalization_LUT#fa4a8c": {"name": "equalization_LUT", "id": "equalization_LUT#fa4a8c", "uuid": "011e5ea7d6dc4c198d68f16391fa4a8c", "args": ["image_cdf"], "types": {"image_cdf": "None"}, "shapes": {"image_cdf": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "CompareView#8524a3": {"name": "CompareView", "id": "CompareView#8524a3", "uuid": "a088946f54a2477ca5ca46b39d8524a3", "args": ["image", "image2"], "types": {"image": "<class \'numpy.ndarray\'>", "image2": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]], "image2": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "CompareView", "DOCS": {"class": "Image Viewer that uses matplotlib internally to compare 2 images.\\nNearly always guarenteed to work, but timing will be less accurate\\nespecially for short timeframes\\n\\nThis viewer will work with online sphinx-generated examples\\n\\nAttributes:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n 2) image2\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\nBatch Size:\\n \\"each\\"", "__init__": "Instantiates the Matplotlib Viewer\\n\\nArg:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images. defaults to 500ms\\n close_fig(bool): whether or not to close the matplotlib figure after\\n processing is done. defaults to False", "process": "Displays the image in a matplotlib figure\\n\\nArgs:\\n image (np.ndarray): image\\n image2 (np.ndarray): second image\\n\\nReturns:\\n None"}}, "InputNone#578055": {"name": "InputNone", "id": "InputNone#578055", "uuid": "347b4c64dca14874a0becbf74c578055", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "compare_stats#7c82ae": {"name": "compare_stats", "id": "compare_stats#7c82ae", "uuid": "06d41c1187a9471b95427e175f7c82ae", "args": ["original", "equalized"], "types": {"original": "None", "equalized": "None"}, "shapes": {"original": null, "equalized": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "apply_LUT#50102a": {"name": "apply_LUT", "id": "apply_LUT#50102a", "uuid": "b30c5e39d0f94e7885ddf20d9d50102a", "args": ["image", "lut"], "types": {"image": "None", "lut": "None"}, "shapes": {"image": null, "lut": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}}, "nodes": {"InputNone0121981b3d194d82bdd7793436fab75f-node": {"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node": {"args": ["images"], "outputs": ["hists", "pdfs", "cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compute_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "equalization_LUT5900bdb7fac643199907bd65832a560b-node": {"args": ["cdfs"], "outputs": ["LUTs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "equalization_LUT", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node": {"args": ["images", "LUTs"], "outputs": ["applied"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "apply_LUT", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node": {"args": ["applied"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block"}, "CompareView00b53cb625d54d45a6e88cab4630bbfe-node": {"args": ["images", "safe"], "outputs": ["viewing"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block"}, "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node": {"args": ["applied"], "outputs": ["eq_hists", "eq_pdfs", "eq_cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compute_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node": {"args": ["hists", "eq_hists"], "outputs": ["plotted"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compare_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "imagesb13c82198d284db1bc266d39ab3ace54-node": {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "histsd1bee74980cb4d78a4fa54ccf08f0a9d-node": {"args": ["hists"], "outputs": ["hists"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "hists", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "pdfs2a34304479bb4b44b81d1c2637c3c56c-node": {"args": ["pdfs"], "outputs": ["pdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "pdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "cdfs57a99de3275a4ed4a758db27c5e21acf-node": {"args": ["cdfs"], "outputs": ["cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "cdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "applied94944e2abf3a4faab17228027ac7b426-node": {"args": ["applied"], "outputs": ["applied"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "applied", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "viewing5a4321fb066d4c6db603d5a791029f31-node": {"args": ["viewing"], "outputs": ["viewing"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "viewing", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node": {"args": ["eq_hists"], "outputs": ["eq_hists"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_hists", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node": {"args": ["eq_pdfs"], "outputs": ["eq_pdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_pdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "eq_cdfsef90656afcf443edae32dc5389c96404-node": {"args": ["eq_cdfs"], "outputs": ["eq_cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_cdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "plotted40a94e9e2008471bb5ed687c6f7a85c6-node": {"args": ["plotted"], "outputs": ["plotted"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "plotted", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNone0121981b3d194d82bdd7793436fab75f-node|compute_stats1df35f308b284a31a48bfdbca7bac00e-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node"}, "InputNone0121981b3d194d82bdd7793436fab75f-node|apply_LUT990d55f934e842c68a2453dfcbbfa38c-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node"}, "InputNone0121981b3d194d82bdd7793436fab75f-node|CompareView00b53cb625d54d45a6e88cab4630bbfe-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node"}, "InputNone0121981b3d194d82bdd7793436fab75f-node|imagesb13c82198d284db1bc266d39ab3ace54-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "imagesb13c82198d284db1bc266d39ab3ace54-node"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node|equalization_LUT5900bdb7fac643199907bd65832a560b-node|cdfs:2-->0": {"var_name": "cdfs", "out_index": 2, "in_index": 0, "name": "image_cdf", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "equalization_LUT5900bdb7fac643199907bd65832a560b-node"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node|compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node|hists:0-->0": {"var_name": "hists", "out_index": 0, "in_index": 0, "name": "original", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node|histsd1bee74980cb4d78a4fa54ccf08f0a9d-node|hists:0-->0": {"var_name": "hists", "out_index": 0, "in_index": 0, "name": "hists", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "histsd1bee74980cb4d78a4fa54ccf08f0a9d-node"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node|pdfs2a34304479bb4b44b81d1c2637c3c56c-node|pdfs:1-->0": {"var_name": "pdfs", "out_index": 1, "in_index": 0, "name": "pdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "pdfs2a34304479bb4b44b81d1c2637c3c56c-node"}, "compute_stats1df35f308b284a31a48bfdbca7bac00e-node|cdfs57a99de3275a4ed4a758db27c5e21acf-node|cdfs:2-->0": {"var_name": "cdfs", "out_index": 2, "in_index": 0, "name": "cdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "cdfs57a99de3275a4ed4a758db27c5e21acf-node"}, "equalization_LUT5900bdb7fac643199907bd65832a560b-node|apply_LUT990d55f934e842c68a2453dfcbbfa38c-node|LUTs:0-->1": {"var_name": "LUTs", "out_index": 0, "in_index": 1, "name": "lut", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "equalization_LUT5900bdb7fac643199907bd65832a560b-node", "node_b": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node"}, "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node|DisplaySafec48d3d2df4c8458db1f8902213e55e63-node|applied:0-->0": {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node"}, "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node|compute_statsbfd595f66ef243b0b9bfbce5e734deda-node|applied:0-->0": {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node"}, "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node|applied94944e2abf3a4faab17228027ac7b426-node|applied:0-->0": {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "applied", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "applied94944e2abf3a4faab17228027ac7b426-node"}, "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node|CompareView00b53cb625d54d45a6e88cab4630bbfe-node|safe:0-->1": {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node", "node_b": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node"}, "CompareView00b53cb625d54d45a6e88cab4630bbfe-node|viewing5a4321fb066d4c6db603d5a791029f31-node|viewing:0-->0": {"var_name": "viewing", "out_index": 0, "in_index": 0, "name": "viewing", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "node_b": "viewing5a4321fb066d4c6db603d5a791029f31-node"}, "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node|compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node|eq_hists:0-->1": {"var_name": "eq_hists", "out_index": 0, "in_index": 1, "name": "equalized", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node"}, "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node|eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node|eq_hists:0-->0": {"var_name": "eq_hists", "out_index": 0, "in_index": 0, "name": "eq_hists", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node"}, "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node|eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node|eq_pdfs:1-->0": {"var_name": "eq_pdfs", "out_index": 1, "in_index": 0, "name": "eq_pdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node"}, "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node|eq_cdfsef90656afcf443edae32dc5389c96404-node|eq_cdfs:2-->0": {"var_name": "eq_cdfs", "out_index": 2, "in_index": 0, "name": "eq_cdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_cdfsef90656afcf443edae32dc5389c96404-node"}, "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node|plotted40a94e9e2008471bb5ed687c6f7a85c6-node|plotted:0-->0": {"var_name": "plotted", "out_index": 0, "in_index": 0, "name": "plotted", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "node_b": "plotted40a94e9e2008471bb5ed687c6f7a85c6-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone0121981b3d194d82bdd7793436fab75f-node"}, {"args": ["images"], "outputs": ["hists", "pdfs", "cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compute_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node"}, {"args": ["cdfs"], "outputs": ["LUTs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "equalization_LUT", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "equalization_LUT5900bdb7fac643199907bd65832a560b-node"}, {"args": ["images", "LUTs"], "outputs": ["applied"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "apply_LUT", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node"}, {"args": ["applied"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block", "id": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node"}, {"args": ["images", "safe"], "outputs": ["viewing"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block", "id": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node"}, {"args": ["applied"], "outputs": ["eq_hists", "eq_pdfs", "eq_cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compute_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node"}, {"args": ["hists", "eq_hists"], "outputs": ["plotted"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "compare_stats", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node"}, {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "imagesb13c82198d284db1bc266d39ab3ace54-node"}, {"args": ["hists"], "outputs": ["hists"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "hists", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "histsd1bee74980cb4d78a4fa54ccf08f0a9d-node"}, {"args": ["pdfs"], "outputs": ["pdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "pdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "pdfs2a34304479bb4b44b81d1c2637c3c56c-node"}, {"args": ["cdfs"], "outputs": ["cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "cdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "cdfs57a99de3275a4ed4a758db27c5e21acf-node"}, {"args": ["applied"], "outputs": ["applied"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "applied", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "applied94944e2abf3a4faab17228027ac7b426-node"}, {"args": ["viewing"], "outputs": ["viewing"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "viewing", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "viewing5a4321fb066d4c6db603d5a791029f31-node"}, {"args": ["eq_hists"], "outputs": ["eq_hists"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_hists", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node"}, {"args": ["eq_pdfs"], "outputs": ["eq_pdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_pdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node"}, {"args": ["eq_cdfs"], "outputs": ["eq_cdfs"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "eq_cdfs", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "eq_cdfsef90656afcf443edae32dc5389c96404-node"}, {"args": ["plotted"], "outputs": ["plotted"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "plotted", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "plotted40a94e9e2008471bb5ed687c6f7a85c6-node"}], "links": [{"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "source": "InputNone0121981b3d194d82bdd7793436fab75f-node", "target": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "source": "InputNone0121981b3d194d82bdd7793436fab75f-node", "target": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "source": "InputNone0121981b3d194d82bdd7793436fab75f-node", "target": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone0121981b3d194d82bdd7793436fab75f-node", "node_b": "imagesb13c82198d284db1bc266d39ab3ace54-node", "source": "InputNone0121981b3d194d82bdd7793436fab75f-node", "target": "imagesb13c82198d284db1bc266d39ab3ace54-node", "key": "images:0-->0"}, {"var_name": "cdfs", "out_index": 2, "in_index": 0, "name": "image_cdf", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "equalization_LUT5900bdb7fac643199907bd65832a560b-node", "source": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "target": "equalization_LUT5900bdb7fac643199907bd65832a560b-node", "key": "cdfs:2-->0"}, {"var_name": "hists", "out_index": 0, "in_index": 0, "name": "original", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "source": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "target": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "key": "hists:0-->0"}, {"var_name": "hists", "out_index": 0, "in_index": 0, "name": "hists", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "histsd1bee74980cb4d78a4fa54ccf08f0a9d-node", "source": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "target": "histsd1bee74980cb4d78a4fa54ccf08f0a9d-node", "key": "hists:0-->0"}, {"var_name": "pdfs", "out_index": 1, "in_index": 0, "name": "pdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "pdfs2a34304479bb4b44b81d1c2637c3c56c-node", "source": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "target": "pdfs2a34304479bb4b44b81d1c2637c3c56c-node", "key": "pdfs:1-->0"}, {"var_name": "cdfs", "out_index": 2, "in_index": 0, "name": "cdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "node_b": "cdfs57a99de3275a4ed4a758db27c5e21acf-node", "source": "compute_stats1df35f308b284a31a48bfdbca7bac00e-node", "target": "cdfs57a99de3275a4ed4a758db27c5e21acf-node", "key": "cdfs:2-->0"}, {"var_name": "LUTs", "out_index": 0, "in_index": 1, "name": "lut", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "equalization_LUT5900bdb7fac643199907bd65832a560b-node", "node_b": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "source": "equalization_LUT5900bdb7fac643199907bd65832a560b-node", "target": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "key": "LUTs:0-->1"}, {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node", "source": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "target": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node", "key": "applied:0-->0"}, {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "source": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "target": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "key": "applied:0-->0"}, {"var_name": "applied", "out_index": 0, "in_index": 0, "name": "applied", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "node_b": "applied94944e2abf3a4faab17228027ac7b426-node", "source": "apply_LUT990d55f934e842c68a2453dfcbbfa38c-node", "target": "applied94944e2abf3a4faab17228027ac7b426-node", "key": "applied:0-->0"}, {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node", "node_b": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "source": "DisplaySafec48d3d2df4c8458db1f8902213e55e63-node", "target": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "key": "safe:0-->1"}, {"var_name": "viewing", "out_index": 0, "in_index": 0, "name": "viewing", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "node_b": "viewing5a4321fb066d4c6db603d5a791029f31-node", "source": "CompareView00b53cb625d54d45a6e88cab4630bbfe-node", "target": "viewing5a4321fb066d4c6db603d5a791029f31-node", "key": "viewing:0-->0"}, {"var_name": "eq_hists", "out_index": 0, "in_index": 1, "name": "equalized", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "source": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "target": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "key": "eq_hists:0-->1"}, {"var_name": "eq_hists", "out_index": 0, "in_index": 0, "name": "eq_hists", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node", "source": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "target": "eq_hists0102c2ceb5bd4254a31b4f9ad44c4fba-node", "key": "eq_hists:0-->0"}, {"var_name": "eq_pdfs", "out_index": 1, "in_index": 0, "name": "eq_pdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node", "source": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "target": "eq_pdfs0da2213beab24d4cbe84ec2e53f0d157-node", "key": "eq_pdfs:1-->0"}, {"var_name": "eq_cdfs", "out_index": 2, "in_index": 0, "name": "eq_cdfs", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "node_b": "eq_cdfsef90656afcf443edae32dc5389c96404-node", "source": "compute_statsbfd595f66ef243b0b9bfbce5e734deda-node", "target": "eq_cdfsef90656afcf443edae32dc5389c96404-node", "key": "eq_cdfs:2-->0"}, {"var_name": "plotted", "out_index": 0, "in_index": 0, "name": "plotted", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "node_b": "plotted40a94e9e2008471bb5ed687c6f7a85c6-node", "source": "compare_stats1b1cb7a54329422ba5d707853a5ff1f7-node", "target": "plotted40a94e9e2008471bb5ed687c6f7a85c6-node", "key": "plotted:0-->0"}]}}}', 'Pipeline#2a5969': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#2a5969", "uuid": "b7a42e44e797463a94a2bb97282a5969", "source_type": "pipeline", "payload": {"args": ["images"], "block_docs": {"ImageFFT#1b0810": {"name": "ImageFFT", "id": "ImageFFT#1b0810", "uuid": "b187d73c18684b8691d025ba5b1b0810", "args": ["image"], "types": {"image": "None"}, "shapes": {"image": null}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery", "filtering"], "class_name": "ImageFFT", "DOCS": {"class": "Performs an FFT on each Image channel independently\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "instantiates the fft block", "process": "applies the fft to each channel\'\\n\\nArgs:\\n images(np.ndarray): N channel image"}}, "freq_filter#e293ba": {"name": "freq_filter", "id": "freq_filter#e293ba", "uuid": "90da3e764879480897b6c13f85e293ba", "args": ["src", "kernel"], "types": {"src": "None", "kernel": "None"}, "shapes": {"src": null, "kernel": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "Dimensions#a20c5e": {"name": "Dimensions", "id": "Dimensions#a20c5e", "uuid": "c8de0399c9ac4760a49e07f915a20c5e", "args": ["image"], "types": {"image": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "Dimensions", "DOCS": {"class": "Retrieves the dimensions of the image, including number of channels. If\\n`channels_none_if_2d` is True, then grayscale images will return\\nn_channels = None. Otherwise n_channels will be equal to 1 for grayscale imagery.\\n\\nAttributes:\\n channels_none_if_2d(bool): whether or not to return n_channels = None for\\n grayscale imagery instead of n_channels = 1.\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "Instantiates the object\\n\\nArgs:\\n channels_none_if_2d(bool): whether or not to return n_channels = None for\\n grayscale imagery instead of n_channels = 1.", "process": "Retrieves the height, width, and number of channels in the image.\\n\\nif `channels_none_if_2d` is True, then grayscale images will return\\nn_channels = None, otherwise n_channels = 1 for grayscale images.\\n\\nNotes:\\n assume image channels are the last axis\\n\\nArgs:\\n image(np.ndarray): the input image\\n\\nReturns:\\n (tuple): tuple containing:\\n\\n height(int): number of rows in image\\n width(int): number of columns in image\\n n_channels(int): number of channels in image"}}, "DisplaySafe#f15212": {"name": "DisplaySafe", "id": "DisplaySafe#f15212", "uuid": "a99691802f9b4e4482b79e29fdf15212", "args": ["arr"], "types": {"arr": "<class \'numpy.ndarray\'>"}, "shapes": {"arr": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "DisplaySafe", "DOCS": {"class": "normalizes to [0,255] and bins to a displayable bitdepth\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "instantiates the block\\n\\nArgs:\\n name(str,None): the name of this block - how it will show up in the\\n graph.\\n batch_type(str, int): the type of the batch processing for your\\n process function. Either \\"all\\" or \\"each\\". \\"all\\" means that all\\n argument data will be passed into to your function at once,\\n \\"each\\" means that each argument datum will be passed in\\n individually\\n types(:obj:`dict`,None): Dictionary of input types. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n shapes(:obj:`dict`,None): Dictionary of input shapes. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n containers(:obj:`dict`,None): Dictionary of input containers. If arg\\n doesn\'t exist as a key, or if the value is None, then no\\n checking is done. If not provided, then will default to args as\\n keys, None as values.\\n *if batch_type is \\"each\\", then the container is irrelevant and can\\n be safely ignored!*\\n void(bool): Boolean value. By default all blocks return a value or\\n values as output. However, if printing to screen, plotting, or\\n saving data to a file, a block may not have a meaningful output\\n that should be stored in a pipeline\'s output dictionary. In this\\n case, void should be set to True, so that the output of the block\\n is ignored. The associated var key in the pipeline output will\\n contain a value of :obj:`None`. Default is False", "process": "normalizes to given range and cast\\n\\nArgs:\\n arr(:obj:`numpy.ndarray`): array of any shape and type\\n\\nReturns:\\n :obj:`numpy.ndarray`: normalized array of same shape and casted\\n to the given type"}}, "CompareView#4002dd": {"name": "CompareView", "id": "CompareView#4002dd", "uuid": "fa02cafb7d1e4df1abd0aedbb54002dd", "args": ["image", "image2"], "types": {"image": "<class \'numpy.ndarray\'>", "image2": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]], "image2": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "CompareView", "DOCS": {"class": "Image Viewer that uses matplotlib internally to compare 2 images.\\nNearly always guarenteed to work, but timing will be less accurate\\nespecially for short timeframes\\n\\nThis viewer will work with online sphinx-generated examples\\n\\nAttributes:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n 2) image2\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\nBatch Size:\\n \\"each\\"", "__init__": "Instantiates the Matplotlib Viewer\\n\\nArg:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images. defaults to 500ms\\n close_fig(bool): whether or not to close the matplotlib figure after\\n processing is done. defaults to False", "process": "Displays the image in a matplotlib figure\\n\\nArgs:\\n image (np.ndarray): image\\n image2 (np.ndarray): second image\\n\\nReturns:\\n None"}}, "circular_pass_filter#a61430": {"name": "circular_pass_filter", "id": "circular_pass_filter#a61430", "uuid": "9ed8c037ba5a4a0e9835f9b312a61430", "args": ["shape"], "types": {"shape": "None"}, "shapes": {"shape": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "Unsqueeze#c2e3eb": {"name": "Unsqueeze", "id": "Unsqueeze#c2e3eb", "uuid": "5005196f19bc43c492f5db48f9c2e3eb", "args": ["arr"], "types": {"arr": "<class \'numpy.ndarray\'>"}, "shapes": {"arr": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "Unsqueeze", "DOCS": {"class": "Adds single dimension to array at specified position\\n ", "__init__": "instantiates the block\\n\\nArgs:\\n name(str,None): the name of this block - how it will show up in the\\n graph.\\n batch_type(str, int): the type of the batch processing for your\\n process function. Either \\"all\\" or \\"each\\". \\"all\\" means that all\\n argument data will be passed into to your function at once,\\n \\"each\\" means that each argument datum will be passed in\\n individually\\n types(:obj:`dict`,None): Dictionary of input types. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n shapes(:obj:`dict`,None): Dictionary of input shapes. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n containers(:obj:`dict`,None): Dictionary of input containers. If arg\\n doesn\'t exist as a key, or if the value is None, then no\\n checking is done. If not provided, then will default to args as\\n keys, None as values.\\n *if batch_type is \\"each\\", then the container is irrelevant and can\\n be safely ignored!*\\n void(bool): Boolean value. By default all blocks return a value or\\n values as output. However, if printing to screen, plotting, or\\n saving data to a file, a block may not have a meaningful output\\n that should be stored in a pipeline\'s output dictionary. In this\\n case, void should be set to True, so that the output of the block\\n is ignored. The associated var key in the pipeline output will\\n contain a value of :obj:`None`. Default is False", "process": null}}, "InputNone#c699e3": {"name": "InputNone", "id": "InputNone#c699e3", "uuid": "8e434b378a974db0995c8ada29c699e3", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "ImageIFFT#ca8637": {"name": "ImageIFFT", "id": "ImageIFFT#ca8637", "uuid": "586de0dfb2af453b9559f50194ca8637", "args": ["image"], "types": {"image": "None"}, "shapes": {"image": null}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery", "filtering"], "class_name": "ImageIFFT", "DOCS": {"class": "Performs an IFFT on each Image channel independently\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "instantiates the ifft block", "process": "applies the ifft to each channel\'\\n\\nArgs:\\n images(np.ndarray): N channel image"}}}, "nodes": {"InputNoneb06fc2c4b0214b26bb8228f233a508c8-node": {"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node": {"args": ["images"], "outputs": ["shape"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Dimensions", "class_name": "Dimensions", "batch_type": "each", "display_as": "block"}, "ImageFFTe2e52c81af8547389c3e755765595b70-node": {"args": ["images"], "outputs": ["fft"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "ImageFFT", "class_name": "ImageFFT", "batch_type": "each", "display_as": "block"}, "circular_pass_filter723b71bfdc494b95a7341edde7197741-node": {"args": ["shape"], "outputs": ["circles"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "circular_pass_filter", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node": {"args": ["circles"], "outputs": ["unsqueezed"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Unsqueeze", "class_name": "Unsqueeze", "batch_type": "each", "display_as": "block"}, "freq_filter13b4055b7d714d91a71d1c748134ea0b-node": {"args": ["fft", "unsqueezed"], "outputs": ["filtered"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "freq_filter", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node": {"args": ["filtered"], "outputs": ["ifft"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "ImageIFFT", "class_name": "ImageIFFT", "batch_type": "each", "display_as": "block"}, "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node": {"args": ["ifft"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block"}, "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node": {"args": ["images", "safe"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block"}, "images4c3a1fd8b0824cf89b48c2f7eb0ea975-node": {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "null328041976d954756867d7f831130e562-node": {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNoneb06fc2c4b0214b26bb8228f233a508c8-node|Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node"}, "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node|ImageFFTe2e52c81af8547389c3e755765595b70-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "ImageFFTe2e52c81af8547389c3e755765595b70-node"}, "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node|CompareView06b377c7d4f943d4ad81f08be1c7ca71-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node"}, "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node|images4c3a1fd8b0824cf89b48c2f7eb0ea975-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "images4c3a1fd8b0824cf89b48c2f7eb0ea975-node"}, "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node|circular_pass_filter723b71bfdc494b95a7341edde7197741-node|shape:0-->0": {"var_name": "shape", "out_index": 0, "in_index": 0, "name": "shape", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node", "node_b": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node"}, "ImageFFTe2e52c81af8547389c3e755765595b70-node|freq_filter13b4055b7d714d91a71d1c748134ea0b-node|fft:0-->0": {"var_name": "fft", "out_index": 0, "in_index": 0, "name": "src", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "ImageFFTe2e52c81af8547389c3e755765595b70-node", "node_b": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node"}, "circular_pass_filter723b71bfdc494b95a7341edde7197741-node|Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node|circles:0-->0": {"var_name": "circles", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node", "node_b": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node"}, "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node|freq_filter13b4055b7d714d91a71d1c748134ea0b-node|unsqueezed:0-->1": {"var_name": "unsqueezed", "out_index": 0, "in_index": 1, "name": "kernel", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node", "node_b": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node"}, "freq_filter13b4055b7d714d91a71d1c748134ea0b-node|ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node|filtered:0-->0": {"var_name": "filtered", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "node_b": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node"}, "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node|DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node|ifft:0-->0": {"var_name": "ifft", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node", "node_b": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node"}, "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node|CompareView06b377c7d4f943d4ad81f08be1c7ca71-node|safe:0-->1": {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node", "node_b": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node"}, "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node|null328041976d954756867d7f831130e562-node|null:0-->0": {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "node_b": "null328041976d954756867d7f831130e562-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node"}, {"args": ["images"], "outputs": ["shape"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Dimensions", "class_name": "Dimensions", "batch_type": "each", "display_as": "block", "id": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node"}, {"args": ["images"], "outputs": ["fft"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "ImageFFT", "class_name": "ImageFFT", "batch_type": "each", "display_as": "block", "id": "ImageFFTe2e52c81af8547389c3e755765595b70-node"}, {"args": ["shape"], "outputs": ["circles"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "circular_pass_filter", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node"}, {"args": ["circles"], "outputs": ["unsqueezed"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Unsqueeze", "class_name": "Unsqueeze", "batch_type": "each", "display_as": "block", "id": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node"}, {"args": ["fft", "unsqueezed"], "outputs": ["filtered"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "freq_filter", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node"}, {"args": ["filtered"], "outputs": ["ifft"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "ImageIFFT", "class_name": "ImageIFFT", "batch_type": "each", "display_as": "block", "id": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node"}, {"args": ["ifft"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block", "id": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node"}, {"args": ["images", "safe"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block", "id": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node"}, {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "images4c3a1fd8b0824cf89b48c2f7eb0ea975-node"}, {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "null328041976d954756867d7f831130e562-node"}], "links": [{"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node", "source": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "target": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "ImageFFTe2e52c81af8547389c3e755765595b70-node", "source": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "target": "ImageFFTe2e52c81af8547389c3e755765595b70-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "source": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "target": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "node_b": "images4c3a1fd8b0824cf89b48c2f7eb0ea975-node", "source": "InputNoneb06fc2c4b0214b26bb8228f233a508c8-node", "target": "images4c3a1fd8b0824cf89b48c2f7eb0ea975-node", "key": "images:0-->0"}, {"var_name": "shape", "out_index": 0, "in_index": 0, "name": "shape", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node", "node_b": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node", "source": "Dimensionsbd6d7f4cd2f74393a395030ab28d4999-node", "target": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node", "key": "shape:0-->0"}, {"var_name": "fft", "out_index": 0, "in_index": 0, "name": "src", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "ImageFFTe2e52c81af8547389c3e755765595b70-node", "node_b": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "source": "ImageFFTe2e52c81af8547389c3e755765595b70-node", "target": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "key": "fft:0-->0"}, {"var_name": "circles", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node", "node_b": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node", "source": "circular_pass_filter723b71bfdc494b95a7341edde7197741-node", "target": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node", "key": "circles:0-->0"}, {"var_name": "unsqueezed", "out_index": 0, "in_index": 1, "name": "kernel", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node", "node_b": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "source": "Unsqueezeb62ef092da5a4b43a0f23445f0202c0f-node", "target": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "key": "unsqueezed:0-->1"}, {"var_name": "filtered", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "node_b": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node", "source": "freq_filter13b4055b7d714d91a71d1c748134ea0b-node", "target": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node", "key": "filtered:0-->0"}, {"var_name": "ifft", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node", "node_b": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node", "source": "ImageIFFT7b48f5930f9f4910a1c28dcf2957586e-node", "target": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node", "key": "ifft:0-->0"}, {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node", "node_b": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "source": "DisplaySafe45315133800e40e1b06e3ff8e118b2e8-node", "target": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "key": "safe:0-->1"}, {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "node_b": "null328041976d954756867d7f831130e562-node", "source": "CompareView06b377c7d4f943d4ad81f08be1c7ca71-node", "target": "null328041976d954756867d7f831130e562-node", "key": "null:0-->0"}]}}}', 'Pipeline#62ead7': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#62ead7", "uuid": "145f65564aa642f7bc4fc6ff7d62ead7", "source_type": "pipeline", "payload": {"args": ["images"], "block_docs": {"QuickView#36bd56": {"name": "QuickView", "id": "QuickView#36bd56", "uuid": "6ef5d622a5a54ab992e3cea3b736bd56", "args": ["image"], "types": {"image": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "QuickView", "DOCS": {"class": null, "__init__": "Instantiates the Matplotlib Viewer\\n\\nArg:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images. defaults to 500ms\\n close_fig(bool): whether or not to close the matplotlib figure after\\n processing is done. defaults to False", "process": "Displays the image in a matplotlib figure\\n\\nArgs:\\n image (np.ndarray): image\\n\\nReturns:\\n None"}}, "InputNone#0b7500": {"name": "InputNone", "id": "InputNone#0b7500", "uuid": "1dd0fcc400984e9f83f55b5bb20b7500", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "NumberImage#1e0478": {"name": "NumberImage", "id": "NumberImage#1e0478", "uuid": "d6db076103ef43a68543518a1c1e0478", "args": ["image"], "types": {"image": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "NumberImage", "DOCS": {"class": "Numbers incoming images. Resets the number index before every process\\nrun\\n\\nAttributes:\\n start_at(int): the index to start at for every processing run\\n index(int): The image index. The number that will appear in the corner\\n of the image\\n font_data(dict): dictionary of keyword arguments for cv2.putText\\n\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "Instantiates the object\\n\\nArgs:\\n start_at(int): integer to start counting at", "process": "Adds a number to the corner of an image\\n\\nArgs:\\n img (np.ndarray): image\\n\\nReturns:\\n :obj:`numpy.ndarray`: numbered image"}}}, "nodes": {"InputNone194ddf39ad894ac79e48040dcadc03c0-node": {"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "NumberImage402b8e53e3924d999533919e001627bf-node": {"args": ["images"], "outputs": ["numbered"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "NumberImage", "class_name": "NumberImage", "batch_type": "each", "display_as": "block"}, "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node": {"args": ["numbered"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "QuickView", "class_name": "QuickView", "batch_type": "each", "display_as": "block"}, "null9693565bfe73431790d2603bda79d40f-node": {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNone194ddf39ad894ac79e48040dcadc03c0-node|NumberImage402b8e53e3924d999533919e001627bf-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone194ddf39ad894ac79e48040dcadc03c0-node", "node_b": "NumberImage402b8e53e3924d999533919e001627bf-node"}, "NumberImage402b8e53e3924d999533919e001627bf-node|QuickViewd8e62b8cddb240afacec55ea94cf13d4-node|numbered:0-->0": {"var_name": "numbered", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "NumberImage402b8e53e3924d999533919e001627bf-node", "node_b": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node"}, "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node|null9693565bfe73431790d2603bda79d40f-node|null:0-->0": {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node", "node_b": "null9693565bfe73431790d2603bda79d40f-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone194ddf39ad894ac79e48040dcadc03c0-node"}, {"args": ["images"], "outputs": ["numbered"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "NumberImage", "class_name": "NumberImage", "batch_type": "each", "display_as": "block", "id": "NumberImage402b8e53e3924d999533919e001627bf-node"}, {"args": ["numbered"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "QuickView", "class_name": "QuickView", "batch_type": "each", "display_as": "block", "id": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node"}, {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "null9693565bfe73431790d2603bda79d40f-node"}], "links": [{"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone194ddf39ad894ac79e48040dcadc03c0-node", "node_b": "NumberImage402b8e53e3924d999533919e001627bf-node", "source": "InputNone194ddf39ad894ac79e48040dcadc03c0-node", "target": "NumberImage402b8e53e3924d999533919e001627bf-node", "key": "images:0-->0"}, {"var_name": "numbered", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "NumberImage402b8e53e3924d999533919e001627bf-node", "node_b": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node", "source": "NumberImage402b8e53e3924d999533919e001627bf-node", "target": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node", "key": "numbered:0-->0"}, {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node", "node_b": "null9693565bfe73431790d2603bda79d40f-node", "source": "QuickViewd8e62b8cddb240afacec55ea94cf13d4-node", "target": "null9693565bfe73431790d2603bda79d40f-node", "key": "null:0-->0"}]}}}', 'Pipeline#720b52': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#720b52", "uuid": "e0aaa7d5ce244981a51bd26a0d720b52", "source_type": "pipeline", "payload": {"args": ["images"], "block_docs": {"swap_red_and_blue#f343d5": {"name": "swap_red_and_blue", "id": "swap_red_and_blue#f343d5", "uuid": "33b745ee713246299febe80cc1f343d5", "args": ["image"], "types": {"image": "None"}, "shapes": {"image": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "InputNone#066641": {"name": "InputNone", "id": "InputNone#066641", "uuid": "a747480077b94dc996397a2289066641", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "CompareView#c26768": {"name": "CompareView", "id": "CompareView#c26768", "uuid": "7e2329ec6fc747e08527b2a9e9c26768", "args": ["image", "image2"], "types": {"image": "<class \'numpy.ndarray\'>", "image2": "<class \'numpy.ndarray\'>"}, "shapes": {"image": [[null, null], [null, null, null]], "image2": [[null, null], [null, null, null]]}, "skip_enforcement": false, "batch_type": "each", "tags": ["imagery"], "class_name": "CompareView", "DOCS": {"class": "Image Viewer that uses matplotlib internally to compare 2 images.\\nNearly always guarenteed to work, but timing will be less accurate\\nespecially for short timeframes\\n\\nThis viewer will work with online sphinx-generated examples\\n\\nAttributes:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n 2) image2\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\nBatch Size:\\n \\"each\\"", "__init__": "Instantiates the Matplotlib Viewer\\n\\nArg:\\n pause_for(int): the amount of time in milliseconds to pause\\n between images. defaults to 500ms\\n close_fig(bool): whether or not to close the matplotlib figure after\\n processing is done. defaults to False", "process": "Displays the image in a matplotlib figure\\n\\nArgs:\\n image (np.ndarray): image\\n image2 (np.ndarray): second image\\n\\nReturns:\\n None"}}, "DisplaySafe#1ac247": {"name": "DisplaySafe", "id": "DisplaySafe#1ac247", "uuid": "38bcc016491f48e9b9d0b5e2f21ac247", "args": ["arr"], "types": {"arr": "<class \'numpy.ndarray\'>"}, "shapes": {"arr": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "DisplaySafe", "DOCS": {"class": "normalizes to [0,255] and bins to a displayable bitdepth\\n\\nDefault Enforcement:\\n 1) image\\n type: np.ndarray\\n shapes: [(None,None), (None,None,None)]\\n\\nBatch Size:\\n \\"each\\"", "__init__": "instantiates the block\\n\\nArgs:\\n name(str,None): the name of this block - how it will show up in the\\n graph.\\n batch_type(str, int): the type of the batch processing for your\\n process function. Either \\"all\\" or \\"each\\". \\"all\\" means that all\\n argument data will be passed into to your function at once,\\n \\"each\\" means that each argument datum will be passed in\\n individually\\n types(:obj:`dict`,None): Dictionary of input types. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n shapes(:obj:`dict`,None): Dictionary of input shapes. If arg doesn\'t\\n exist as a key, or if the value is None, then no checking is\\n done. If not provided, then will default to args as keys, None\\n as values.\\n containers(:obj:`dict`,None): Dictionary of input containers. If arg\\n doesn\'t exist as a key, or if the value is None, then no\\n checking is done. If not provided, then will default to args as\\n keys, None as values.\\n *if batch_type is \\"each\\", then the container is irrelevant and can\\n be safely ignored!*\\n void(bool): Boolean value. By default all blocks return a value or\\n values as output. However, if printing to screen, plotting, or\\n saving data to a file, a block may not have a meaningful output\\n that should be stored in a pipeline\'s output dictionary. In this\\n case, void should be set to True, so that the output of the block\\n is ignored. The associated var key in the pipeline output will\\n contain a value of :obj:`None`. Default is False", "process": "normalizes to given range and cast\\n\\nArgs:\\n arr(:obj:`numpy.ndarray`): array of any shape and type\\n\\nReturns:\\n :obj:`numpy.ndarray`: normalized array of same shape and casted\\n to the given type"}}}, "nodes": {"InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node": {"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node": {"args": ["images"], "outputs": ["swapped"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "swap_red_and_blue", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node": {"args": ["swapped"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block"}, "CompareView549edc38406c4e9682d0481ffff6a1ef-node": {"args": ["images", "safe"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block"}, "imagesc2f18a1d86dd445ca8f67923198bec6c-node": {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "nullcbada8fb06924c2890db86f3d8efb057-node": {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node|swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node"}, "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node|CompareView549edc38406c4e9682d0481ffff6a1ef-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "CompareView549edc38406c4e9682d0481ffff6a1ef-node"}, "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node|imagesc2f18a1d86dd445ca8f67923198bec6c-node|images:0-->0": {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "imagesc2f18a1d86dd445ca8f67923198bec6c-node"}, "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node|DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node|swapped:0-->0": {"var_name": "swapped", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node", "node_b": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node"}, "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node|CompareView549edc38406c4e9682d0481ffff6a1ef-node|safe:0-->1": {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node", "node_b": "CompareView549edc38406c4e9682d0481ffff6a1ef-node"}, "CompareView549edc38406c4e9682d0481ffff6a1ef-node|nullcbada8fb06924c2890db86f3d8efb057-node|null:0-->0": {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "node_b": "nullcbada8fb06924c2890db86f3d8efb057-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node"}, {"args": ["images"], "outputs": ["swapped"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "swap_red_and_blue", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node"}, {"args": ["swapped"], "outputs": ["safe"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "DisplaySafe", "class_name": "DisplaySafe", "batch_type": "each", "display_as": "block", "id": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node"}, {"args": ["images", "safe"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "CompareView", "class_name": "CompareView", "batch_type": "each", "display_as": "block", "id": "CompareView549edc38406c4e9682d0481ffff6a1ef-node"}, {"args": ["images"], "outputs": ["images"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "images", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "imagesc2f18a1d86dd445ca8f67923198bec6c-node"}, {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "nullcbada8fb06924c2890db86f3d8efb057-node"}], "links": [{"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node", "source": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "target": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "image", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "source": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "target": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "key": "images:0-->0"}, {"var_name": "images", "out_index": 0, "in_index": 0, "name": "images", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "node_b": "imagesc2f18a1d86dd445ca8f67923198bec6c-node", "source": "InputNone31e2a0a0cb8b40f68602c2f89f7b7957-node", "target": "imagesc2f18a1d86dd445ca8f67923198bec6c-node", "key": "images:0-->0"}, {"var_name": "swapped", "out_index": 0, "in_index": 0, "name": "arr", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node", "node_b": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node", "source": "swap_red_and_blue875ccee02f7b4ba091e92e7bb07bcebf-node", "target": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node", "key": "swapped:0-->0"}, {"var_name": "safe", "out_index": 0, "in_index": 1, "name": "image2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node", "node_b": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "source": "DisplaySafe0ecdfc861bdb4d7494312d8e87de49a1-node", "target": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "key": "safe:0-->1"}, {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "node_b": "nullcbada8fb06924c2890db86f3d8efb057-node", "source": "CompareView549edc38406c4e9682d0481ffff6a1ef-node", "target": "nullcbada8fb06924c2890db86f3d8efb057-node", "key": "null:0-->0"}]}}}', 'Pipeline#733d82': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#733d82", "uuid": "c0dfb7d411124b85a7d462266b733d82", "source_type": "pipeline", "payload": {"args": ["msg"], "block_docs": {"print_all#270503": {"name": "print_all", "id": "print_all#270503", "uuid": "9654c1356ef248b0b67c58b226270503", "args": ["msg"], "types": {"msg": "None"}, "shapes": {"msg": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "InputNone#eafa18": {"name": "InputNone", "id": "InputNone#eafa18", "uuid": "2a9e11c1c4a74ac1b0a9b3f412eafa18", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}}, "nodes": {"InputNone74491e3195004412a48388b42bdadbfc-node": {"args": [], "outputs": ["msg"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "print_all04f8035528a44e6b99eb404516cf2217-node": {"args": ["msg"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "print_all", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "null45b72e0e12b345c0bddef1c0c02bc0bf-node": {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNone74491e3195004412a48388b42bdadbfc-node|print_all04f8035528a44e6b99eb404516cf2217-node|msg:0-->0": {"var_name": "msg", "out_index": 0, "in_index": 0, "name": "msg", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone74491e3195004412a48388b42bdadbfc-node", "node_b": "print_all04f8035528a44e6b99eb404516cf2217-node"}, "print_all04f8035528a44e6b99eb404516cf2217-node|null45b72e0e12b345c0bddef1c0c02bc0bf-node|null:0-->0": {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "print_all04f8035528a44e6b99eb404516cf2217-node", "node_b": "null45b72e0e12b345c0bddef1c0c02bc0bf-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["msg"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone74491e3195004412a48388b42bdadbfc-node"}, {"args": ["msg"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "print_all", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "print_all04f8035528a44e6b99eb404516cf2217-node"}, {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "null45b72e0e12b345c0bddef1c0c02bc0bf-node"}], "links": [{"var_name": "msg", "out_index": 0, "in_index": 0, "name": "msg", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone74491e3195004412a48388b42bdadbfc-node", "node_b": "print_all04f8035528a44e6b99eb404516cf2217-node", "source": "InputNone74491e3195004412a48388b42bdadbfc-node", "target": "print_all04f8035528a44e6b99eb404516cf2217-node", "key": "msg:0-->0"}, {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "print_all04f8035528a44e6b99eb404516cf2217-node", "node_b": "null45b72e0e12b345c0bddef1c0c02bc0bf-node", "source": "print_all04f8035528a44e6b99eb404516cf2217-node", "target": "null45b72e0e12b345c0bddef1c0c02bc0bf-node", "key": "null:0-->0"}]}}}', 'Pipeline#9bcfbc': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#9bcfbc", "uuid": "836bc4fad9c54b9380d4801eae9bcfbc", "source_type": "pipeline", "payload": {"args": ["x", "y"], "block_docs": {"line_plot#d51287": {"name": "line_plot", "id": "line_plot#d51287", "uuid": "dcdfb9a8096c4d2084943d9608d51287", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "line_plot#77c76f": {"name": "line_plot", "id": "line_plot#77c76f", "uuid": "f878dec118704780b0367316ae77c76f", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "line_plot#1cde39": {"name": "line_plot", "id": "line_plot#1cde39", "uuid": "95e11636fee04751ad5df2a2521cde39", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "InputNone#305933": {"name": "InputNone", "id": "InputNone#305933", "uuid": "2756589f217047518b3d1e630b305933", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "InputNone#b9a00b": {"name": "InputNone", "id": "InputNone#b9a00b", "uuid": "b2c92eccb3f94ae3bf3f6eef4cb9a00b", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}}, "nodes": {"InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node": {"args": [], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "InputNone2c25eafc3ce84fc29ca8374481a15b89-node": {"args": [], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node": {"args": ["x", "y"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "line_plot417e17e0834e46aab859c9a6b5342634-node": {"args": ["x", "y"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node": {"args": ["x", "y"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "x7639324af666452a95291796668f9cb4-node": {"args": ["x"], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "x", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "yd31b09d4b26a4b7996bc93b3c6261cb3-node": {"args": ["y"], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "y", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "red914df0e10672455381c5cc92f7fbcd39-node": {"args": ["red"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "red", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "greenbb019e67dfbb46a5a685ed04470fc403-node": {"args": ["green"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "green", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "blue1b83ba85e378486a9ae4bf72f785c9e8-node": {"args": ["blue"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "blue", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node|line_plotc0de7dd26af442f2bc20d0a60ae971d3-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node"}, "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node|line_plot417e17e0834e46aab859c9a6b5342634-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plot417e17e0834e46aab859c9a6b5342634-node"}, "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node|line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node"}, "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node|x7639324af666452a95291796668f9cb4-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "x7639324af666452a95291796668f9cb4-node"}, "InputNone2c25eafc3ce84fc29ca8374481a15b89-node|line_plotc0de7dd26af442f2bc20d0a60ae971d3-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node"}, "InputNone2c25eafc3ce84fc29ca8374481a15b89-node|line_plot417e17e0834e46aab859c9a6b5342634-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plot417e17e0834e46aab859c9a6b5342634-node"}, "InputNone2c25eafc3ce84fc29ca8374481a15b89-node|line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node"}, "InputNone2c25eafc3ce84fc29ca8374481a15b89-node|yd31b09d4b26a4b7996bc93b3c6261cb3-node|y:0-->0": {"var_name": "y", "out_index": 0, "in_index": 0, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "yd31b09d4b26a4b7996bc93b3c6261cb3-node"}, "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node|red914df0e10672455381c5cc92f7fbcd39-node|red:0-->0": {"var_name": "red", "out_index": 0, "in_index": 0, "name": "red", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "node_b": "red914df0e10672455381c5cc92f7fbcd39-node"}, "line_plot417e17e0834e46aab859c9a6b5342634-node|greenbb019e67dfbb46a5a685ed04470fc403-node|green:0-->0": {"var_name": "green", "out_index": 0, "in_index": 0, "name": "green", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plot417e17e0834e46aab859c9a6b5342634-node", "node_b": "greenbb019e67dfbb46a5a685ed04470fc403-node"}, "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node|blue1b83ba85e378486a9ae4bf72f785c9e8-node|blue:0-->0": {"var_name": "blue", "out_index": 0, "in_index": 0, "name": "blue", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "node_b": "blue1b83ba85e378486a9ae4bf72f785c9e8-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node"}, {"args": [], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node"}, {"args": ["x", "y"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node"}, {"args": ["x", "y"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plot417e17e0834e46aab859c9a6b5342634-node"}, {"args": ["x", "y"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node"}, {"args": ["x"], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "x", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "x7639324af666452a95291796668f9cb4-node"}, {"args": ["y"], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "y", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "yd31b09d4b26a4b7996bc93b3c6261cb3-node"}, {"args": ["red"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "red", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "red914df0e10672455381c5cc92f7fbcd39-node"}, {"args": ["green"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "green", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "greenbb019e67dfbb46a5a685ed04470fc403-node"}, {"args": ["blue"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "blue", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "blue1b83ba85e378486a9ae4bf72f785c9e8-node"}], "links": [{"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "source": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "target": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plot417e17e0834e46aab859c9a6b5342634-node", "source": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "target": "line_plot417e17e0834e46aab859c9a6b5342634-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "source": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "target": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "node_b": "x7639324af666452a95291796668f9cb4-node", "source": "InputNonee4fd0f5d42a44b81ad4f6b63133cef05-node", "target": "x7639324af666452a95291796668f9cb4-node", "key": "x:0-->0"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "source": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "target": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plot417e17e0834e46aab859c9a6b5342634-node", "source": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "target": "line_plot417e17e0834e46aab859c9a6b5342634-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "source": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "target": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 0, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "node_b": "yd31b09d4b26a4b7996bc93b3c6261cb3-node", "source": "InputNone2c25eafc3ce84fc29ca8374481a15b89-node", "target": "yd31b09d4b26a4b7996bc93b3c6261cb3-node", "key": "y:0-->0"}, {"var_name": "red", "out_index": 0, "in_index": 0, "name": "red", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "node_b": "red914df0e10672455381c5cc92f7fbcd39-node", "source": "line_plotc0de7dd26af442f2bc20d0a60ae971d3-node", "target": "red914df0e10672455381c5cc92f7fbcd39-node", "key": "red:0-->0"}, {"var_name": "green", "out_index": 0, "in_index": 0, "name": "green", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plot417e17e0834e46aab859c9a6b5342634-node", "node_b": "greenbb019e67dfbb46a5a685ed04470fc403-node", "source": "line_plot417e17e0834e46aab859c9a6b5342634-node", "target": "greenbb019e67dfbb46a5a685ed04470fc403-node", "key": "green:0-->0"}, {"var_name": "blue", "out_index": 0, "in_index": 0, "name": "blue", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "node_b": "blue1b83ba85e378486a9ae4bf72f785c9e8-node", "source": "line_plotfaaf2c08f9e04c588d87bb9b72c32ac8-node", "target": "blue1b83ba85e378486a9ae4bf72f785c9e8-node", "key": "blue:0-->0"}]}}}', 'Pipeline#a10926': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#a10926", "uuid": "6eb30976609040198045c88547a10926", "source_type": "pipeline", "payload": {"args": ["x", "y"], "block_docs": {"line_plot#252b86": {"name": "line_plot", "id": "line_plot#252b86", "uuid": "de309c5936864e6dab40946ed9252b86", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "line_plot#f78ae4": {"name": "line_plot", "id": "line_plot#f78ae4", "uuid": "e3d98011ec2c4b3a9e2f54360bf78ae4", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "InputNone#3971f0": {"name": "InputNone", "id": "InputNone#3971f0", "uuid": "3ed5a68bcfde40c6a2f20b99123971f0", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "line_plot#4e8ea9": {"name": "line_plot", "id": "line_plot#4e8ea9", "uuid": "98472be94408409eb0c7031a4b4e8ea9", "args": ["x", "y"], "types": {"x": "None", "y": "None"}, "shapes": {"x": null, "y": null}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "InputNone#a34569": {"name": "InputNone", "id": "InputNone#a34569", "uuid": "bba3aca99a714bdb912656a283a34569", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}}, "nodes": {"InputNonef331ab55a94342c0b64b6caef80696e4-node": {"args": [], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "InputNone811771921d054f61a4d91f6220107468-node": {"args": [], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "line_plotd1d8560ea008478da73c0b39540f3687-node": {"args": ["x", "y"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "line_plotb32c5a61b9634006b811fb58a176e93a-node": {"args": ["x", "y"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "line_plot92d08c2dba3943739ade9d7014f07c46-node": {"args": ["x", "y"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block"}, "x371f12c9c3ae4b22b8046ae183288dac-node": {"args": ["x"], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "x", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "y070378c0055f408cb385c85fc69668d2-node": {"args": ["y"], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "y", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "redecde31ba140146f9a663ee95736d2a68-node": {"args": ["red"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "red", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "greenf1f6a24b2e0b4eb09d58a5da31df63ee-node": {"args": ["green"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "green", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "blue10fa62ee24eb4552b6dbb088f2e07f50-node": {"args": ["blue"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "blue", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNonef331ab55a94342c0b64b6caef80696e4-node|line_plotd1d8560ea008478da73c0b39540f3687-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plotd1d8560ea008478da73c0b39540f3687-node"}, "InputNonef331ab55a94342c0b64b6caef80696e4-node|line_plotb32c5a61b9634006b811fb58a176e93a-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plotb32c5a61b9634006b811fb58a176e93a-node"}, "InputNonef331ab55a94342c0b64b6caef80696e4-node|line_plot92d08c2dba3943739ade9d7014f07c46-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plot92d08c2dba3943739ade9d7014f07c46-node"}, "InputNonef331ab55a94342c0b64b6caef80696e4-node|x371f12c9c3ae4b22b8046ae183288dac-node|x:0-->0": {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "x371f12c9c3ae4b22b8046ae183288dac-node"}, "InputNone811771921d054f61a4d91f6220107468-node|line_plotd1d8560ea008478da73c0b39540f3687-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plotd1d8560ea008478da73c0b39540f3687-node"}, "InputNone811771921d054f61a4d91f6220107468-node|line_plotb32c5a61b9634006b811fb58a176e93a-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plotb32c5a61b9634006b811fb58a176e93a-node"}, "InputNone811771921d054f61a4d91f6220107468-node|line_plot92d08c2dba3943739ade9d7014f07c46-node|y:0-->1": {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plot92d08c2dba3943739ade9d7014f07c46-node"}, "InputNone811771921d054f61a4d91f6220107468-node|y070378c0055f408cb385c85fc69668d2-node|y:0-->0": {"var_name": "y", "out_index": 0, "in_index": 0, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "y070378c0055f408cb385c85fc69668d2-node"}, "line_plotd1d8560ea008478da73c0b39540f3687-node|redecde31ba140146f9a663ee95736d2a68-node|red:0-->0": {"var_name": "red", "out_index": 0, "in_index": 0, "name": "red", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotd1d8560ea008478da73c0b39540f3687-node", "node_b": "redecde31ba140146f9a663ee95736d2a68-node"}, "line_plotb32c5a61b9634006b811fb58a176e93a-node|greenf1f6a24b2e0b4eb09d58a5da31df63ee-node|green:0-->0": {"var_name": "green", "out_index": 0, "in_index": 0, "name": "green", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "node_b": "greenf1f6a24b2e0b4eb09d58a5da31df63ee-node"}, "line_plot92d08c2dba3943739ade9d7014f07c46-node|blue10fa62ee24eb4552b6dbb088f2e07f50-node|blue:0-->0": {"var_name": "blue", "out_index": 0, "in_index": 0, "name": "blue", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "node_b": "blue10fa62ee24eb4552b6dbb088f2e07f50-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNonef331ab55a94342c0b64b6caef80696e4-node"}, {"args": [], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone811771921d054f61a4d91f6220107468-node"}, {"args": ["x", "y"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plotd1d8560ea008478da73c0b39540f3687-node"}, {"args": ["x", "y"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plotb32c5a61b9634006b811fb58a176e93a-node"}, {"args": ["x", "y"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "line_plot", "class_name": "FuncBlock", "batch_type": "all", "display_as": "block", "id": "line_plot92d08c2dba3943739ade9d7014f07c46-node"}, {"args": ["x"], "outputs": ["x"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "x", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "x371f12c9c3ae4b22b8046ae183288dac-node"}, {"args": ["y"], "outputs": ["y"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "y", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "y070378c0055f408cb385c85fc69668d2-node"}, {"args": ["red"], "outputs": ["red"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "red", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "redecde31ba140146f9a663ee95736d2a68-node"}, {"args": ["green"], "outputs": ["green"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "green", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "greenf1f6a24b2e0b4eb09d58a5da31df63ee-node"}, {"args": ["blue"], "outputs": ["blue"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "blue", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "blue10fa62ee24eb4552b6dbb088f2e07f50-node"}], "links": [{"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plotd1d8560ea008478da73c0b39540f3687-node", "source": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "target": "line_plotd1d8560ea008478da73c0b39540f3687-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "source": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "target": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "source": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "target": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "key": "x:0-->0"}, {"var_name": "x", "out_index": 0, "in_index": 0, "name": "x", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "node_b": "x371f12c9c3ae4b22b8046ae183288dac-node", "source": "InputNonef331ab55a94342c0b64b6caef80696e4-node", "target": "x371f12c9c3ae4b22b8046ae183288dac-node", "key": "x:0-->0"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plotd1d8560ea008478da73c0b39540f3687-node", "source": "InputNone811771921d054f61a4d91f6220107468-node", "target": "line_plotd1d8560ea008478da73c0b39540f3687-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "source": "InputNone811771921d054f61a4d91f6220107468-node", "target": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 1, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "source": "InputNone811771921d054f61a4d91f6220107468-node", "target": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "key": "y:0-->1"}, {"var_name": "y", "out_index": 0, "in_index": 0, "name": "y", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone811771921d054f61a4d91f6220107468-node", "node_b": "y070378c0055f408cb385c85fc69668d2-node", "source": "InputNone811771921d054f61a4d91f6220107468-node", "target": "y070378c0055f408cb385c85fc69668d2-node", "key": "y:0-->0"}, {"var_name": "red", "out_index": 0, "in_index": 0, "name": "red", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotd1d8560ea008478da73c0b39540f3687-node", "node_b": "redecde31ba140146f9a663ee95736d2a68-node", "source": "line_plotd1d8560ea008478da73c0b39540f3687-node", "target": "redecde31ba140146f9a663ee95736d2a68-node", "key": "red:0-->0"}, {"var_name": "green", "out_index": 0, "in_index": 0, "name": "green", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "node_b": "greenf1f6a24b2e0b4eb09d58a5da31df63ee-node", "source": "line_plotb32c5a61b9634006b811fb58a176e93a-node", "target": "greenf1f6a24b2e0b4eb09d58a5da31df63ee-node", "key": "green:0-->0"}, {"var_name": "blue", "out_index": 0, "in_index": 0, "name": "blue", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "node_b": "blue10fa62ee24eb4552b6dbb088f2e07f50-node", "source": "line_plot92d08c2dba3943739ade9d7014f07c46-node", "target": "blue10fa62ee24eb4552b6dbb088f2e07f50-node", "key": "blue:0-->0"}]}}}', 'Pipeline#bc0735': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#bc0735", "uuid": "0d6473a17b254bdaa5827c0578bc0735", "source_type": "pipeline", "payload": {"args": ["msg"], "block_docs": {"InputNone#fa46ea": {"name": "InputNone", "id": "InputNone#fa46ea", "uuid": "80f2ddd801864dcaab9ac5a091fa46ea", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "print_msg#f03751": {"name": "print_msg", "id": "print_msg#f03751", "uuid": "9fed031e81094863a46f216416f03751", "args": ["msg"], "types": {"msg": "None"}, "shapes": {"msg": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}}, "nodes": {"InputNone530e78b6ccc042ef99c2a595f31ad976-node": {"args": [], "outputs": ["msg"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node": {"args": ["msg"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "print_msg", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "nullf32fb448ff5b477ab8228d5708ac87c5-node": {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"InputNone530e78b6ccc042ef99c2a595f31ad976-node|print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node|msg:0-->0": {"var_name": "msg", "out_index": 0, "in_index": 0, "name": "msg", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone530e78b6ccc042ef99c2a595f31ad976-node", "node_b": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node"}, "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node|nullf32fb448ff5b477ab8228d5708ac87c5-node|null:0-->0": {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node", "node_b": "nullf32fb448ff5b477ab8228d5708ac87c5-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["msg"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "InputNone", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "InputNone530e78b6ccc042ef99c2a595f31ad976-node"}, {"args": ["msg"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "print_msg", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node"}, {"args": ["null"], "outputs": ["null"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "null", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "nullf32fb448ff5b477ab8228d5708ac87c5-node"}], "links": [{"var_name": "msg", "out_index": 0, "in_index": 0, "name": "msg", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "InputNone530e78b6ccc042ef99c2a595f31ad976-node", "node_b": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node", "source": "InputNone530e78b6ccc042ef99c2a595f31ad976-node", "target": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node", "key": "msg:0-->0"}, {"var_name": "null", "out_index": 0, "in_index": 0, "name": "null", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node", "node_b": "nullf32fb448ff5b477ab8228d5708ac87c5-node", "source": "print_msgcfe898e6f9504ef495faf7ac55ce9d4c-node", "target": "nullf32fb448ff5b477ab8228d5708ac87c5-node", "key": "null:0-->0"}]}}}', 'Pipeline#c76c25': '{"type": "graph", "name": "Pipeline", "id": "Pipeline#c76c25", "uuid": "99726b8c729547bdb1a7a16e3ac76c25", "source_type": "pipeline", "payload": {"args": ["a", "b"], "block_docs": {"Input1#a0f498": {"name": "Input1", "id": "Input1#a0f498", "uuid": "92024167a6914d289899825c9aa0f498", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "add1#3ab1e0": {"name": "add1", "id": "add1#3ab1e0", "uuid": "dfdb9f5e434948f9bcb4c012ba3ab1e0", "args": ["a", "b"], "types": {"a": "None", "b": "None"}, "shapes": {"a": null, "b": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "Input0#9807cc": {"name": "Input0", "id": "Input0#9807cc", "uuid": "9e747037b33341fb8337ac90839807cc", "args": [], "types": {}, "shapes": {}, "skip_enforcement": false, "batch_type": "all", "tags": [], "class_name": "Input", "DOCS": {"class": "An object to inject data into the graph\\n\\nAttributes:\\n data(any type):\\n loaded(bool): where", "__init__": "instantiates the Input\\n\\nArgs:\\n index(int,None): index of the input into the Pipeline", "process": "returns the loaded data"}}, "subtract1#3151b0": {"name": "subtract1", "id": "subtract1#3151b0", "uuid": "780c7f4469934b8cad343cf17c3151b0", "args": ["a", "b"], "types": {"a": "None", "b": "None"}, "shapes": {"a": null, "b": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}, "average#429cd7": {"name": "average", "id": "average#429cd7", "uuid": "2eb8691197f4490f9839b7d47e429cd7", "args": ["x1", "x2"], "types": {"x1": "None", "x2": "None"}, "shapes": {"x1": null, "x2": null}, "skip_enforcement": false, "batch_type": "each", "tags": [], "class_name": "FuncBlock", "DOCS": {"class": "Block that will run any function you give it, either unfettered through\\nthe __call__ function, or with optional hardcoded parameters for use in a\\npipeline. Typically the FuncBlock is only used in the :obj:`blockify`\\ndecorator method.\\n\\nAttributes:\\n func(function): the function to call internally\\n preset_kwargs(dict): preset keyword arguments, typically used for\\n arguments that are not data to process", "__init__": "instantiates the function block\\n\\nArgs:\\n func (function): the function you desire to turn into a block\\n preset_kwargs (dict): preset keyword arguments, typically used for\\n arguments that are not data to process\\n **block_kwargs: keyword arguments for :obj:`Block` instantiation", "process": null}}}, "nodes": {"Input0cab65252b7344b2e93b536233d372a10-node": {"args": [], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Input0", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "Input17555be807d76400e95204627c847551f-node": {"args": [], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Input1", "class_name": "Input", "batch_type": "all", "display_as": "input"}, "add1b7391f47792b4c579177b9612385d276-node": {"args": ["a", "b"], "outputs": ["a_plus_1", "b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "add1", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "subtract1213cdb507e2c42e3879c2930c250e740-node": {"args": ["a", "b"], "outputs": ["a_minus_1", "b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "subtract1", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "a24644f005cc5427eaa7c81dc11021147-node": {"args": ["a"], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b4de71af6faee4976bd86a441706ca305-node": {"args": ["b"], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "a_plus_1c43b741f568842a7af0ab564db541e93-node": {"args": ["a_plus_1"], "outputs": ["a_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b_plus_17c33488a72384f79b0916a64be291575-node": {"args": ["b_plus_1"], "outputs": ["b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "a_minus_125768b90aba1418f99e0a06ebd116163-node": {"args": ["a_minus_1"], "outputs": ["a_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b_minus_166446177c12e4a189b74e6eb0941fccd-node": {"args": ["b_minus_1"], "outputs": ["b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "averagecf239115e26d4b648acfa13a60bc5608-node": {"args": ["a_plus_1", "a_minus_1"], "outputs": ["average_a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node": {"args": ["b_plus_1", "b_minus_1"], "outputs": ["average_b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block"}, "a1af9f737c72042cb9ccacfb873cd92df-node": {"args": ["a"], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b4c3ced3953e34d3397a2cddfd3091afe-node": {"args": ["b"], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "a_plus_154b2e445dc0140e89791c78a0d8a31df-node": {"args": ["a_plus_1"], "outputs": ["a_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node": {"args": ["b_plus_1"], "outputs": ["b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "a_minus_1726aff79f9d84619845123c03f9297a2-node": {"args": ["a_minus_1"], "outputs": ["a_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "b_minus_11a98d74d81104140ac98d0c901442617-node": {"args": ["b_minus_1"], "outputs": ["b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "average_aed737dd020744e35900435a37a8b4a8d-node": {"args": ["average_a"], "outputs": ["average_a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average_a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}, "average_b539239d5df3e46b1b13fca066c932b7b-node": {"args": ["average_b"], "outputs": ["average_b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average_b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf"}}, "edges": {"Input0cab65252b7344b2e93b536233d372a10-node|add1b7391f47792b4c579177b9612385d276-node|a:0-->0": {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "add1b7391f47792b4c579177b9612385d276-node"}, "Input0cab65252b7344b2e93b536233d372a10-node|subtract1213cdb507e2c42e3879c2930c250e740-node|a:0-->0": {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "subtract1213cdb507e2c42e3879c2930c250e740-node"}, "Input0cab65252b7344b2e93b536233d372a10-node|a24644f005cc5427eaa7c81dc11021147-node|a:0-->0": {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "a24644f005cc5427eaa7c81dc11021147-node"}, "Input0cab65252b7344b2e93b536233d372a10-node|a1af9f737c72042cb9ccacfb873cd92df-node|a:0-->0": {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "a1af9f737c72042cb9ccacfb873cd92df-node"}, "Input17555be807d76400e95204627c847551f-node|add1b7391f47792b4c579177b9612385d276-node|b:0-->1": {"var_name": "b", "out_index": 0, "in_index": 1, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "add1b7391f47792b4c579177b9612385d276-node"}, "Input17555be807d76400e95204627c847551f-node|subtract1213cdb507e2c42e3879c2930c250e740-node|b:0-->1": {"var_name": "b", "out_index": 0, "in_index": 1, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "subtract1213cdb507e2c42e3879c2930c250e740-node"}, "Input17555be807d76400e95204627c847551f-node|b4de71af6faee4976bd86a441706ca305-node|b:0-->0": {"var_name": "b", "out_index": 0, "in_index": 0, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "b4de71af6faee4976bd86a441706ca305-node"}, "Input17555be807d76400e95204627c847551f-node|b4c3ced3953e34d3397a2cddfd3091afe-node|b:0-->0": {"var_name": "b", "out_index": 0, "in_index": 0, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "b4c3ced3953e34d3397a2cddfd3091afe-node"}, "add1b7391f47792b4c579177b9612385d276-node|a_plus_1c43b741f568842a7af0ab564db541e93-node|a_plus_1:0-->0": {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "a_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "a_plus_1c43b741f568842a7af0ab564db541e93-node"}, "add1b7391f47792b4c579177b9612385d276-node|b_plus_17c33488a72384f79b0916a64be291575-node|b_plus_1:1-->0": {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "b_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "b_plus_17c33488a72384f79b0916a64be291575-node"}, "add1b7391f47792b4c579177b9612385d276-node|averagecf239115e26d4b648acfa13a60bc5608-node|a_plus_1:0-->0": {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "x1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "averagecf239115e26d4b648acfa13a60bc5608-node"}, "add1b7391f47792b4c579177b9612385d276-node|average1c6c76f1ccb94ffcb8ac96b6c558f35f-node|b_plus_1:1-->0": {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "x1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node"}, "add1b7391f47792b4c579177b9612385d276-node|a_plus_154b2e445dc0140e89791c78a0d8a31df-node|a_plus_1:0-->0": {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "a_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "a_plus_154b2e445dc0140e89791c78a0d8a31df-node"}, "add1b7391f47792b4c579177b9612385d276-node|b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node|b_plus_1:1-->0": {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "b_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|a_minus_125768b90aba1418f99e0a06ebd116163-node|a_minus_1:0-->0": {"var_name": "a_minus_1", "out_index": 0, "in_index": 0, "name": "a_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "a_minus_125768b90aba1418f99e0a06ebd116163-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|b_minus_166446177c12e4a189b74e6eb0941fccd-node|b_minus_1:1-->0": {"var_name": "b_minus_1", "out_index": 1, "in_index": 0, "name": "b_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "b_minus_166446177c12e4a189b74e6eb0941fccd-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|averagecf239115e26d4b648acfa13a60bc5608-node|a_minus_1:0-->1": {"var_name": "a_minus_1", "out_index": 0, "in_index": 1, "name": "x2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "averagecf239115e26d4b648acfa13a60bc5608-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|average1c6c76f1ccb94ffcb8ac96b6c558f35f-node|b_minus_1:1-->1": {"var_name": "b_minus_1", "out_index": 1, "in_index": 1, "name": "x2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|a_minus_1726aff79f9d84619845123c03f9297a2-node|a_minus_1:0-->0": {"var_name": "a_minus_1", "out_index": 0, "in_index": 0, "name": "a_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "a_minus_1726aff79f9d84619845123c03f9297a2-node"}, "subtract1213cdb507e2c42e3879c2930c250e740-node|b_minus_11a98d74d81104140ac98d0c901442617-node|b_minus_1:1-->0": {"var_name": "b_minus_1", "out_index": 1, "in_index": 0, "name": "b_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "b_minus_11a98d74d81104140ac98d0c901442617-node"}, "averagecf239115e26d4b648acfa13a60bc5608-node|average_aed737dd020744e35900435a37a8b4a8d-node|average_a:0-->0": {"var_name": "average_a", "out_index": 0, "in_index": 0, "name": "average_a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "averagecf239115e26d4b648acfa13a60bc5608-node", "node_b": "average_aed737dd020744e35900435a37a8b4a8d-node"}, "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node|average_b539239d5df3e46b1b13fca066c932b7b-node|average_b:0-->0": {"var_name": "average_b", "out_index": 0, "in_index": 0, "name": "average_b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "node_b": "average_b539239d5df3e46b1b13fca066c932b7b-node"}}, "node-link": {"directed": true, "multigraph": true, "graph": {}, "nodes": [{"args": [], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Input0", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "Input0cab65252b7344b2e93b536233d372a10-node"}, {"args": [], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "Input1", "class_name": "Input", "batch_type": "all", "display_as": "input", "id": "Input17555be807d76400e95204627c847551f-node"}, {"args": ["a", "b"], "outputs": ["a_plus_1", "b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "add1", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "add1b7391f47792b4c579177b9612385d276-node"}, {"args": ["a", "b"], "outputs": ["a_minus_1", "b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "subtract1", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "subtract1213cdb507e2c42e3879c2930c250e740-node"}, {"args": ["a"], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a24644f005cc5427eaa7c81dc11021147-node"}, {"args": ["b"], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b4de71af6faee4976bd86a441706ca305-node"}, {"args": ["a_plus_1"], "outputs": ["a_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a_plus_1c43b741f568842a7af0ab564db541e93-node"}, {"args": ["b_plus_1"], "outputs": ["b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b_plus_17c33488a72384f79b0916a64be291575-node"}, {"args": ["a_minus_1"], "outputs": ["a_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a_minus_125768b90aba1418f99e0a06ebd116163-node"}, {"args": ["b_minus_1"], "outputs": ["b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b_minus_166446177c12e4a189b74e6eb0941fccd-node"}, {"args": ["a_plus_1", "a_minus_1"], "outputs": ["average_a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "averagecf239115e26d4b648acfa13a60bc5608-node"}, {"args": ["b_plus_1", "b_minus_1"], "outputs": ["average_b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average", "class_name": "FuncBlock", "batch_type": "each", "display_as": "block", "id": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node"}, {"args": ["a"], "outputs": ["a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a1af9f737c72042cb9ccacfb873cd92df-node"}, {"args": ["b"], "outputs": ["b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b4c3ced3953e34d3397a2cddfd3091afe-node"}, {"args": ["a_plus_1"], "outputs": ["a_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a_plus_154b2e445dc0140e89791c78a0d8a31df-node"}, {"args": ["b_plus_1"], "outputs": ["b_plus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_plus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node"}, {"args": ["a_minus_1"], "outputs": ["a_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "a_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "a_minus_1726aff79f9d84619845123c03f9297a2-node"}, {"args": ["b_minus_1"], "outputs": ["b_minus_1"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "b_minus_1", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "b_minus_11a98d74d81104140ac98d0c901442617-node"}, {"args": ["average_a"], "outputs": ["average_a"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average_a", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "average_aed737dd020744e35900435a37a8b4a8d-node"}, {"args": ["average_b"], "outputs": ["average_b"], "validation_time": null, "processing_time": null, "avg_time_per_datum": null, "num_in": null, "n_batches": null, "pid": null, "status": "not started", "name": "average_b", "class_name": "Leaf", "batch_type": "all", "display_as": "leaf", "id": "average_b539239d5df3e46b1b13fca066c932b7b-node"}], "links": [{"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "add1b7391f47792b4c579177b9612385d276-node", "source": "Input0cab65252b7344b2e93b536233d372a10-node", "target": "add1b7391f47792b4c579177b9612385d276-node", "key": "a:0-->0"}, {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "subtract1213cdb507e2c42e3879c2930c250e740-node", "source": "Input0cab65252b7344b2e93b536233d372a10-node", "target": "subtract1213cdb507e2c42e3879c2930c250e740-node", "key": "a:0-->0"}, {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "a24644f005cc5427eaa7c81dc11021147-node", "source": "Input0cab65252b7344b2e93b536233d372a10-node", "target": "a24644f005cc5427eaa7c81dc11021147-node", "key": "a:0-->0"}, {"var_name": "a", "out_index": 0, "in_index": 0, "name": "a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input0cab65252b7344b2e93b536233d372a10-node", "node_b": "a1af9f737c72042cb9ccacfb873cd92df-node", "source": "Input0cab65252b7344b2e93b536233d372a10-node", "target": "a1af9f737c72042cb9ccacfb873cd92df-node", "key": "a:0-->0"}, {"var_name": "b", "out_index": 0, "in_index": 1, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "add1b7391f47792b4c579177b9612385d276-node", "source": "Input17555be807d76400e95204627c847551f-node", "target": "add1b7391f47792b4c579177b9612385d276-node", "key": "b:0-->1"}, {"var_name": "b", "out_index": 0, "in_index": 1, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "subtract1213cdb507e2c42e3879c2930c250e740-node", "source": "Input17555be807d76400e95204627c847551f-node", "target": "subtract1213cdb507e2c42e3879c2930c250e740-node", "key": "b:0-->1"}, {"var_name": "b", "out_index": 0, "in_index": 0, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "b4de71af6faee4976bd86a441706ca305-node", "source": "Input17555be807d76400e95204627c847551f-node", "target": "b4de71af6faee4976bd86a441706ca305-node", "key": "b:0-->0"}, {"var_name": "b", "out_index": 0, "in_index": 0, "name": "b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "Input17555be807d76400e95204627c847551f-node", "node_b": "b4c3ced3953e34d3397a2cddfd3091afe-node", "source": "Input17555be807d76400e95204627c847551f-node", "target": "b4c3ced3953e34d3397a2cddfd3091afe-node", "key": "b:0-->0"}, {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "a_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "a_plus_1c43b741f568842a7af0ab564db541e93-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "a_plus_1c43b741f568842a7af0ab564db541e93-node", "key": "a_plus_1:0-->0"}, {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "b_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "b_plus_17c33488a72384f79b0916a64be291575-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "b_plus_17c33488a72384f79b0916a64be291575-node", "key": "b_plus_1:1-->0"}, {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "x1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "averagecf239115e26d4b648acfa13a60bc5608-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "averagecf239115e26d4b648acfa13a60bc5608-node", "key": "a_plus_1:0-->0"}, {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "x1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "key": "b_plus_1:1-->0"}, {"var_name": "a_plus_1", "out_index": 0, "in_index": 0, "name": "a_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "a_plus_154b2e445dc0140e89791c78a0d8a31df-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "a_plus_154b2e445dc0140e89791c78a0d8a31df-node", "key": "a_plus_1:0-->0"}, {"var_name": "b_plus_1", "out_index": 1, "in_index": 0, "name": "b_plus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "add1b7391f47792b4c579177b9612385d276-node", "node_b": "b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node", "source": "add1b7391f47792b4c579177b9612385d276-node", "target": "b_plus_14f9b3c99340c4a25ad247ba43e29bf5d-node", "key": "b_plus_1:1-->0"}, {"var_name": "a_minus_1", "out_index": 0, "in_index": 0, "name": "a_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "a_minus_125768b90aba1418f99e0a06ebd116163-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "a_minus_125768b90aba1418f99e0a06ebd116163-node", "key": "a_minus_1:0-->0"}, {"var_name": "b_minus_1", "out_index": 1, "in_index": 0, "name": "b_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "b_minus_166446177c12e4a189b74e6eb0941fccd-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "b_minus_166446177c12e4a189b74e6eb0941fccd-node", "key": "b_minus_1:1-->0"}, {"var_name": "a_minus_1", "out_index": 0, "in_index": 1, "name": "x2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "averagecf239115e26d4b648acfa13a60bc5608-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "averagecf239115e26d4b648acfa13a60bc5608-node", "key": "a_minus_1:0-->1"}, {"var_name": "b_minus_1", "out_index": 1, "in_index": 1, "name": "x2", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "key": "b_minus_1:1-->1"}, {"var_name": "a_minus_1", "out_index": 0, "in_index": 0, "name": "a_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "a_minus_1726aff79f9d84619845123c03f9297a2-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "a_minus_1726aff79f9d84619845123c03f9297a2-node", "key": "a_minus_1:0-->0"}, {"var_name": "b_minus_1", "out_index": 1, "in_index": 0, "name": "b_minus_1", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "subtract1213cdb507e2c42e3879c2930c250e740-node", "node_b": "b_minus_11a98d74d81104140ac98d0c901442617-node", "source": "subtract1213cdb507e2c42e3879c2930c250e740-node", "target": "b_minus_11a98d74d81104140ac98d0c901442617-node", "key": "b_minus_1:1-->0"}, {"var_name": "average_a", "out_index": 0, "in_index": 0, "name": "average_a", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "averagecf239115e26d4b648acfa13a60bc5608-node", "node_b": "average_aed737dd020744e35900435a37a8b4a8d-node", "source": "averagecf239115e26d4b648acfa13a60bc5608-node", "target": "average_aed737dd020744e35900435a37a8b4a8d-node", "key": "average_a:0-->0"}, {"var_name": "average_b", "out_index": 0, "in_index": 0, "name": "average_b", "same_type_for_all_datums": "unknown", "n_datums": 0, "datum_type": "NoneType", "data_stored_in": "str", "node_a": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "node_b": "average_b539239d5df3e46b1b13fca066c932b7b-node", "source": "average1c6c76f1ccb94ffcb8ac96b6c558f35f-node", "target": "average_b539239d5df3e46b1b13fca066c932b7b-node", "key": "average_b:0-->0"}]}}}'}

cache of pipeline update messages, these are messages that the dashboard needs to interpret the pipeline status messages

total

returns total number of connected dashboards

Methods Documentation

classmethod connect(name, host, port)[source]

establishes a connection with the Dashboard Chatroom at the given host and port

Parameters
  • name (str) – human readable name of

  • host (str) – ip address for the dashboard

  • port (int) – port on host for the dashboard

classmethod disconnect(name)[source]

disconnects from an individual dashboard server

classmethod disconnect_all()[source]

disconnects from all dashboard servers

read(names=None)[source]

send delete messages to all dashboard servers

write(msg, names=None)[source]

sends the given message to all connected dashboard servers

Parameters
  • msg (str) – a string to send

  • names (tuple(str)) – iterable of names specifying a whitelist

write_delete(delete_msg)[source]

send delete messages to all dashboard servers

write_error(error_msg)[source]

send error messages to all dashboard servers

write_graph(pipeline_id, graph_msg)[source]

send pipeline graph or task changes to the Dashboard

write_log(log_msg)[source]
write_reset(reset_msg)[source]

send reset messages to all dashboard servers

write_status(status_msg)[source]

send status changes to all Dashboards