Giovanna Cavali
08/27/2024, 5:43 PMYury Fedotov
08/27/2024, 7:20 PMElena Khaustova
08/27/2024, 7:40 PMGiovanna Cavali
08/27/2024, 8:54 PMNok Lam Chan
08/28/2024, 10:06 AM# catalog.yml
my_dataset:
path: my_path/data.csv
my_enriched_dataset:
path: my_path/data.csv
Then you can have a node
node(do_something, inputs=my_dataset, ouputs=my_enriched_dataset)
Kedro is fine with this, but as @Yury Fedotov pointed out, this violates the reproducibility principle, so you cannot expect re-running kedro run
would give you the same result.