-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffd950c
commit 8d7258f
Showing
49 changed files
with
5,107 additions
and
1,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 12 additions & 13 deletions
25
docs/tutorials/complete_applications/scenario_management_overview/src/config_01.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
[TAIPY] | ||
|
||
[DATA_NODE.input] | ||
scope = "SCENARIO:SCOPE" | ||
default_data = "21:int" | ||
[DATA_NODE.historical_temperature] | ||
|
||
[DATA_NODE.output] | ||
scope = "SCENARIO:SCOPE" | ||
[DATA_NODE.date_to_forecast] | ||
|
||
[TASK.double] | ||
inputs = [ "input:SECTION",] | ||
function = "__main__.double:function" | ||
outputs = [ "output:SECTION",] | ||
skippable = "False:bool" | ||
[DATA_NODE.predictions] | ||
|
||
[PIPELINE.my_pipeline] | ||
tasks = [ "double:SECTION",] | ||
[TASK.predict] | ||
function = "__main__.predict:function" | ||
inputs = [ "historical_temperature:SECTION", "date_to_forecast:SECTION",] | ||
outputs = [ "predictions:SECTION",] | ||
skippable = "False:bool" | ||
|
||
[SCENARIO.my_scenario] | ||
pipelines = [ "my_pipeline:SECTION",] | ||
tasks = [ "predict:SECTION",] | ||
additional_data_nodes = [] | ||
|
||
[SCENARIO.my_scenario.comparators] | ||
|
||
[SCENARIO.my_scenario.sequences] |
12 changes: 5 additions & 7 deletions
12
docs/tutorials/complete_applications/scenario_management_overview/src/config_02.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
[TAIPY] | ||
|
||
[DATA_NODE.input] | ||
scope = "SCENARIO:SCOPE" | ||
default_data = "21:int" | ||
|
||
[DATA_NODE.output] | ||
scope = "SCENARIO:SCOPE" | ||
|
||
[TASK.double] | ||
inputs = [ "input:SECTION",] | ||
function = "__main__.double:function" | ||
inputs = [ "input:SECTION",] | ||
outputs = [ "output:SECTION",] | ||
skippable = "False:bool" | ||
|
||
[PIPELINE.my_pipeline] | ||
tasks = [ "double:SECTION",] | ||
|
||
[SCENARIO.my_scenario] | ||
pipelines = [ "my_pipeline:SECTION",] | ||
tasks = [ "double:SECTION",] | ||
additional_data_nodes = [] | ||
|
||
[SCENARIO.my_scenario.comparators] | ||
|
||
[SCENARIO.my_scenario.sequences] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletions
16
docs/tutorials/complete_applications/scenario_management_overview/src/config_08.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,30 @@ | ||
[TAIPY] | ||
|
||
[DATA_NODE.input] | ||
scope = "SCENARIO:SCOPE" | ||
default_data = "21:int" | ||
|
||
[DATA_NODE.intermediate] | ||
scope = "SCENARIO:SCOPE" | ||
|
||
[DATA_NODE.output] | ||
scope = "SCENARIO:SCOPE" | ||
|
||
[TASK.double] | ||
inputs = [ "input:SECTION",] | ||
function = "__main__.double:function" | ||
inputs = [ "input:SECTION",] | ||
outputs = [ "intermediate:SECTION",] | ||
skippable = "False:bool" | ||
|
||
[TASK.add] | ||
inputs = [ "intermediate:SECTION",] | ||
function = "__main__.add:function" | ||
inputs = [ "intermediate:SECTION",] | ||
outputs = [ "output:SECTION",] | ||
skippable = "False:bool" | ||
|
||
[PIPELINE.my_pipeline] | ||
tasks = [ "double:SECTION", "add:SECTION",] | ||
|
||
[SCENARIO.multiply_scenario] | ||
pipelines = [ "my_pipeline:SECTION",] | ||
frequency = "MONTHLY:FREQUENCY" | ||
tasks = [ "double:SECTION", "add:SECTION",] | ||
additional_data_nodes = [] | ||
name = "my_scenario" | ||
|
||
[SCENARIO.multiply_scenario.comparators] | ||
output = [ "__main__.compare_function:function",] | ||
|
||
[SCENARIO.multiply_scenario.sequences] |
Oops, something went wrong.