DhruvK
07/23/2021, 5:47 PMdatajoely
07/23/2021, 5:47 PMgit init
will initialise the folder and stop giving the warningdatajoely
07/23/2021, 5:47 PMDhruvK
07/23/2021, 5:48 PMDhruvK
07/23/2021, 5:48 PMDhruvK
07/23/2021, 5:49 PMdatajoely
07/23/2021, 5:50 PMdatajoely
07/23/2021, 5:53 PMdatajoely
07/23/2021, 5:53 PMdatajoely
07/23/2021, 5:53 PMDhruvK
07/23/2021, 6:04 PMDhruvK
07/23/2021, 6:56 PMDhruvK
07/23/2021, 6:56 PMDhruvK
07/23/2021, 6:56 PMDhruvK
07/23/2021, 6:56 PMwaylonwalker
07/24/2021, 12:53 AMsrc/pandas
directory. I'ts trying to import DataFrame
from your project. The easiest fix is going to be to render a new template with a different name that is unique to your project and does not overlap any other libraries that you have installed. You can manually rename it, but without knowledge of everywhere that variable gets rendered from the template it is going to be difficult to change.Anish Shah @ WANDB
07/26/2021, 6:25 PMheader: None
for a Pandas dataset from the Data Catalog? I can't coerce the None type needed to pass into the read_csv
functiondatajoely
07/26/2021, 6:48 PMload_args
key
load_args:
header: None
Anish Shah @ WANDB
07/26/2021, 6:51 PMheader: None
i get the error
DataSetError: Failed while loading data from data set CSVDataSet(filepath=DATASET.txt, load_args={'delimiter': \+\+\+\$\+\+\+ , 'encoding': unicode_escape, 'header': None}, protocol=file, save_args={'index': False}).
header must be integer or list of integers
I figure its because the dataset loader doesn't coerce None into None object (I could be wrong though)datajoely
07/26/2021, 6:53 PMdatajoely
07/26/2021, 6:56 PMAnish Shah @ WANDB
07/26/2021, 6:56 PMdatajoely
07/26/2021, 6:56 PMjcasanuevam
07/27/2021, 10:17 AMdatajoely
07/27/2021, 10:45 AMdatajoely
07/27/2021, 10:47 AMfrom pathlib import Path
from kedro.framework.session import KedroSession
from kedro.framework.session.session import _activate_session
current_dir = Path.cwd() # this points to 'notebooks/' folder
project_path = current_dir.parent # point back to the root of the project
session = KedroSession.create("<your-kedro-project-package-name>", project_path)
_activate_session(session)
context = session.load_context()
datajoely
07/27/2021, 10:47 AMdatajoely
07/27/2021, 10:58 AMdatajoely
07/27/2021, 10:58 AMjcasanuevam
07/27/2021, 11:00 AM