Is this normal that i can't saw dataset created wi...
# questions
a
Is this normal that i can't saw dataset created with factory in catalog when running in jupyter notebook ?
d
Can you see it when you do a normal kedro run?
My hunch is that it’s not correctly configured in the first place
Or can you see it with the resolve CLI command?
a
They’re not materialised unless you load them or check for their existence. Trying
catalog.exists("dataset_name")
and then try
catalog.list()
a
Thank you ! It works !