Model YAML:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | models:
- name: python_modelA
driver: PythonModelDriver
args: ./src/gs_lesson5_modelA.py
inputs: inputA
outputs: outputA
- name: python_modelB
driver: PythonModelDriver
args: ./src/gs_lesson5_modelB.py
inputs: inputB
outputs: outputB
connections:
- input: outputA # Connection between model A output & model B input
output: inputB
- input: ./Input/input.txt # Connection between file and model A input
output: inputA
- input: outputB # Connection between model B output and file
output: ./output.txt
|