I have the following code where I like to do a train/test split on a Dask dataframe
df = dd.read_csv(csv_filename, sep=',', encoding="latin-1",
names=cols, header=0, dtype='str')
But when I try to do slices like
for train, test in cv.split(X, y):
df.fit(X[train], y[train])
it fails with the error
KeyError: '[11639 11641 11642 ..., 34997 34998 34999] not in index'
Any ideas?