Created
November 18, 2021 00:32
-
-
Save ashemag/62150698fbfd59cb72dc78e85ae4c07d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
name: Download/Process Nifty Data | |
inputs: | |
- {name: experiment_name, type: String, description: 'Experiment name'} | |
- {name: data_filename, type: String, description: 'Name of data in GCP'} | |
outputs: | |
- {name: result, type: string} | |
implementation: | |
container: | |
image: gcr.io/<image_name>:latest | |
command: [python, components/data_handler/data_handler.py, | |
'--experiment-name', {inputValue: experiment_name}, | |
'--data_filename', {inputValue: data_filename}, | |
] | |
fileOutputs: | |
result: /result_path.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment