From 53d0da373f28e9550977a641921d8a60b2d3d1c9 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Mon, 22 Jun 2020 00:07:53 +0300 Subject: [PATCH] Removed old example --- examples/automation/controller_example.py | 58 ----------------------- 1 file changed, 58 deletions(-) delete mode 100644 examples/automation/controller_example.py diff --git a/examples/automation/controller_example.py b/examples/automation/controller_example.py deleted file mode 100644 index 7158a5b5..00000000 --- a/examples/automation/controller_example.py +++ /dev/null @@ -1,58 +0,0 @@ -pipeline_node = { - "step1": { - # identify the node, so that we code reference outputs, use only alphanumeric characters - "node_name": "step1", - # parent node, to be executed before this step - "parent_node": None, - # the experiment/task id to clone & execute - "base_task_id": "gafghafh", - # preferred queue name/id to use for execution - "queue": None, - # preferred docker image (override experiment request) - "docker": None, - # parameter overrides - "parameter_override": {"arg": 123, }, - # task definition overrides, currently not supported - "task_override": None, - }, - "step2": { - # identify the node, so that we code reference outputs, use only alphanumeric characters - "node_name": "step2", - # parent node, to be executed before this step - "parent_node": "step1", - # the experiment/task id to clone & execute - "base_task_id": "123456aa", - # preferred queue name/id to use for execution - "queue": "2xgpu", - # preferred docker image (override experiment request) - "docker": None, - # parameter overrides - "parameter_override": { - # plug the output of pipeline node `step1` artifact named `my_data` into the Task parameter `url` - "url": "@step1:artifacts/my_data", - # plug the output of pipeline node `step1` parameter named `arg` into the Task parameter `arg` - "arg": "@step1:parameters/arg", - }, - # task definition overrides, currently not supported - "task_override": None, - }, - "step3": { - # identify the node, so that we code reference outputs, use only alphanumeric characters - "node_name": "step3", - # parent node, to be executed before this step - "parent_node": "step2", - # the experiment/task id to clone & execute - "base_task_id": "zzcc1244", - # preferred queue name/id to use for execution - "queue": "2xGPUS", - # preferred docker image (override experiment request) - "docker": None, - # parameter overrides - "parameter_override": { - # plug the output of pipeline node `step2` last output model into the Task parameter url - "model_url": "@step2:models/output/-1", - }, - # task definition overrides, currently not supported - "task_override": None, - }, -}