hi team - is it possible to assign a kedro viz lay...
# questions
n
hi team - is it possible to assign a kedro viz layer to a memory dataset?
h
Someone will reply to you shortly. In the meantime, this might help:
m
Yes, you'll have to define the datasets you want the layer for in the catalog.yml. If you want it for all memory datasets created by default you can also override the default dataset pattern so the layer is always included: https://docs.kedro.org/en/stable/data/kedro_dataset_factories.html#how-to-override-the-default-dataset-creation-with-dataset-factories
🆒 1
n
okay got it. my next question would then be whether i can store a numpy.ndarray in the catalog and if so which dataset type would i use?
d
do you want to save it between runs?
if you do then
pickle.PickleDataset
if not
MemoryDataset
n
ah okay cool, will try those. thank you!
@Marie Cordes FYI
🥳 1