Nok Lam Chan

Results 588 comments of Nok Lam Chan

One more, when worked with CST they often have a large catalog. A few things that I think is useful - `catalog.list()` - not many people is aware that this...

I did some more research and I couldn't find any auto-completion feature for `catalog.load("` (Hit Tab). The autocompletion only works for `catalog.` (`__dir__`) or `catalog["` (_ipython_completion or inherit the dict...

found a nicer solution to use `_repr_pretty` instead of `__repr__`. IMO overriding `__repr__` isn't a big problem, but it's not consistent of what it should do. I think the full...

I have the same issue, is there any known fix for this?

Thanks! I am playing around with the tutorial and run into similar issues. This post help me to solve some of the problem. On the other hand I had some...

Linked one interesting PR opened by our community earlier [Configurable Versioning](https://github.com/kedro-org/kedro/issues/1871). I think this is interesting because we don't have much thought about sub-classing `Version`, at the moment this class...

@ondrejzacha Thanks a lot for the PR! I am glad that someone is using this for interactive workflow and get it a try. Please let me know if you have...

@ondrejzacha I personally think this is a good change, and is a step towards more efficient pipeline re-run beyond a single session run. I do find that the leaky definition...

It may be obvious, but can I ask why node name need to be unique? I feel like they exists for different purposes, I would like to map them out...

This is my understanding: - `node._unique_key` = `node.name` + inputs + outputs This definition is a bit leaky, because I will think combination of (func, inputs + outputs) is already...