noklam
10/04/2022, 1:53 PMTESSA_BEIJLOOS
10/04/2022, 1:57 PMTESSA_BEIJLOOS
10/04/2022, 1:57 PMnoklam
10/04/2022, 2:10 PMnoklam
10/04/2022, 2:11 PMTESSA_BEIJLOOS
10/04/2022, 2:16 PMnoklam
10/04/2022, 2:18 PMfrom pathlib import Path
Path('certifai\\data\\09_tracking\\test_attributes_best_model.json').iterdir()
noklam
10/04/2022, 2:18 PMrohan_ahire
10/05/2022, 4:16 PMdatajoely
10/05/2022, 4:18 PMrohan_ahire
10/05/2022, 4:21 PMnoklam
10/05/2022, 4:24 PMrafael.gildin
10/08/2022, 6:50 PMToniMaroni
10/10/2022, 7:52 AMrafael.gildin
10/10/2022, 1:14 PMdatajoely
10/11/2022, 1:10 PMdatajoely
10/11/2022, 1:10 PMToniMaroni
10/12/2022, 12:51 PMdatajoely
10/12/2022, 1:53 PMMichaelB
10/12/2022, 2:59 PMAllen Ma
10/18/2022, 2:02 AMThiago Poletto
10/18/2022, 11:40 AMdatajoely
10/18/2022, 11:49 AMThiago Poletto
10/18/2022, 11:56 AMnoestl
10/18/2022, 4:53 PMnoklam
10/18/2022, 5:08 PMeliaspd
10/18/2022, 7:40 PMongeiver
10/18/2022, 8:01 PMpython
from kedro.pipeline import Pipeline, node, pipeline
def create_pipeline(**kwargs) -> Pipeline:
return pipeline(
[
node(),
node(),
]
)
I have a "Module is not callable" lint error due to the use of pipeline()
(without a capital letter).
The message disappears when I replace pipeline()
by Pipeline()
.
What is the difference between these 2? and why are we importing both?noklam
10/18/2022, 8:25 PMnoklam
10/18/2022, 8:26 PMnoklam
10/18/2022, 8:26 PM