Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ngreenwald committed Oct 9, 2020
2 parents 59a03e4 + 7cbb95a commit 0b5b170
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions caliban_toolbox/dataset_splitter.py
Expand Up @@ -133,6 +133,8 @@ def split(self, input_dict, split_counts=None, split_proportions=None, min_size=

# randomize index so that we can take sequentially larger splits
index = np.arange(N_batches)

# randomize index so that we can take sequentially larger splits
permuted_index = np.random.RandomState(seed=self.seed).permutation(index)

split_dict = {}
Expand Down

0 comments on commit 0b5b170

Please sign in to comment.