Skip to content
Snippets Groups Projects
Commit 16939e8e authored by Benjamin Paul Jaeger's avatar Benjamin Paul Jaeger
Browse files

Update documentation

parent 2d0db095
No related branches found
No related tags found
2 merge requests!69Add z0callback option,!60WIP: Select training folds so they are equally represented in the predicted data
Pipeline #12655 failed
......@@ -361,7 +361,7 @@ class MixedCV(CrossValidator):
def select_training_slices(self, fold_i, for_predicting = False):
"""
Returns array of arrays with integers corresponding
Returns array with integers corresponding
to the data slices used in training fold_i.
If 'for_predicting' is set to True only one slice
is returned for each fold so that the folds are equally represented
......@@ -390,7 +390,7 @@ class MixedCV(CrossValidator):
for sl in slices:
if sl not in exclusive_slices and sl in uniq_el(all_slices_for_folds[i:]):
exclusive_slices.append(sl)
return exclusive_slices[fold_i]
return [exclusive_slices[fold_i]]
def select_training(self, df, fold_i, for_predicting = False):
"""
......@@ -399,7 +399,7 @@ class MixedCV(CrossValidator):
"""
selected = np.zeros(len(df), dtype='bool')
slices = self.select_training_slices(fold_i, for_predicting = for_predicting)
for slice_i in np.array(slices).flatten():
for slice_i in slices:
selected = selected | self.select_slice(df, slice_i)
return selected
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment