Brandon Meek
Brandon Meek
## Description It always annoys me that I can't collapse and expand non-modular pipelines. ## Context I usually like to add a static image view to the `README.md` of my...
## Description In response to this [ticket](https://github.com/kedro-org/kedro/issues/2749) ## Development notes Can now unpack dictionaries in the `inputs` argument of a node, example below. _unpack_params added to `kedro/kedro/pipeline/node.py`, this function iterates...
## Description I'm always frustrated when creating a new Kedro project because I generally want all of the features _except_ PySpark. ## Context Most of the `new project tools` available...
## Description If [PR](https://github.com/kedro-org/kedro/pull/3905) is merged, it will affect the behavior of showing `parameters` in kedro-viz ## Context The unpacked parameters won't show up, nor will the parent dictionary ##...
## Description Closes [714](https://github.com/kedro-org/kedro-plugins/issues/714) ## Development notes Added PyTorchDataset to use pytorch's recommended save and load methods. Added tests to `kedro-datasets/tests/kedro_datasets_experimental/pytorch/test_pytorch_dataset.py` ## Checklist - [X] Updated the documentation to reflect...
## Description Pickle has known [security issues](https://www.synopsys.com/blogs/software-security/python-pickling.html#:~:text=process%20of%20unpickling.-,Dangers%20of%20Python%20pickling,data%20received%20over%20the%20network.), as of version 1.6 PyTorch now uses a [zip file-based](https://pytorch.org/tutorials/beginner/saving_loading_models.html#:~:text=.eval()-,NOTE,-The%201.6%20release) format instead of pickle. ## Context I think we should support the preferred...
## Description As a Kedro user I have always wanted to be able to define modular pipelines in a config file. ## Context I believe that doing so will reduce...