Zach Lawless
07/10/2024, 8:13 PMprompts: list[str]
)
◦ An integer for the number times to call one prompt, also stored in the global parameters yml (variations: int
)
• Ideally the output of this node is n_prompts x m_variation
images, knowing that this could be dynamic. An example catalog entry might be prompt_1_var_1.jpg
I feel like I knew how to do this in the past with Jinja2 configuration, but I know that's not the latest and greatest and I am just now dipping my toes back in to Kedro after a year or so awaymarrrcin
07/11/2024, 7:21 AMn_prompts x m_variations
and use PartitionedDataset
for saving it.
https://docs.kedro.org/en/stable/data/partitioned_and_incremental_datasets.html#partitioned-dataset-saveZach Lawless
07/11/2024, 1:19 PM