Alexander Johns
02/15/2023, 6:19 PMsrc/<my_project>/extras
├── __init__.py
└── datasets
├── __init__.py
└── <my_custom_dataset>.py
catalog entry:
raw_custom_dataset:
type: <my_project>.extras.datasets.<my_custom_dataset>.<MyCustomDataSet>
filepath: 01_raw/folder/*
when I run the node keep getting the following error:
An exception occurred when parsing config for DataSet 'raw_custom_dataset':
Class '<my_project>.extras.datasets.<my_custom_dataset>.<MyCustomDataSet>' not found or one of
its dependencies has not been installed.
Kedro =0.18.3Deepyaman Datta
02/15/2023, 6:50 PMfrom <my_project>.extras.datasets.<my_custom___dataset> import <MyCustomDataSet>
?Alexander Johns
02/15/2023, 7:13 PMDeepyaman Datta
02/15/2023, 11:15 PMAlexander Johns
02/15/2023, 11:19 PMdatajoely
02/16/2023, 10:26 AMDeepyaman Datta
02/16/2023, 2:24 PMdatajoely
02/16/2023, 2:26 PMDeepyaman Datta
02/16/2023, 2:27 PMdatajoely
02/16/2023, 2:55 PMAlexander Johns
02/16/2023, 2:59 PMDeepyaman Datta
02/16/2023, 3:13 PM__init__.py
should need a versionPraneeth Nooli
02/21/2023, 7:26 AMdatajoely
02/21/2023, 9:57 AMPraneeth Nooli
02/21/2023, 1:34 PMdatajoely
02/21/2023, 1:49 PMfrom a.b.c import CustomDataSet
Praneeth Nooli
02/21/2023, 3:37 PMdatajoely
02/21/2023, 3:37 PM