Hi, I’m trying to use Jupyter notebook.
When I run these command the kernel dies:
Xdataset = c3.Dataset.fromPython(df_train.drop(“target”, axis=1))
ydataset = c3.Dataset.fromPython(df_train.loc[:, [“target”]])
Do you know what I’m getting wrong?
df_train is a pandas dataframe with shape of (832428,125)
thanks