Kedro simple project run error: ModuleNotFoundError followed by ValueError
I am trying to setup a simple python ML project in Kedro. It is very simple, one pipeline of three nodes, a data loading node, a model computing node and a model evaluating node that just prints the accuracy. This is just to learn to use Kedro for an upcoming project.
Despite the simplicity I am struggling to make this work. Basically my kedro run outputs
ModuleNotFoundError: No module named 'kedro_mnist.pipelines.'
followed by
KeyError: 'pipeline'
The above exception was the direct cause...