Eluard Camota
12/20/2023, 6:57 AMKedroSession, but it gives me an error saying that Data for MemoryDataset has not been saved yet. Based from my Logs, the data is already saved in my MemoryDataset before loading it using session.load_context().catalog.load("memory_data_set")Takieddine Kadiri
12/20/2023, 9:45 AMSession.load_context().catalog.load("memory_data_set") will create a new catalog object using your catalog configs, that’s why you didn’t find your dataset in it.
If your dataset is a free outputs, you can get it through the session run results results = session.run(..) results.get(‘your_dataset_name’)
Otherwise, what are you trying to achieve with this ?Iñigo Hidalgo
12/20/2023, 10:36 AMEluard Camota
12/20/2023, 1:35 PM