Skip to content

Commit

Permalink
Explicit axis keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
DarnellGranberry authored Nov 20, 2023
1 parent dadfe72 commit 25cb2cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions topaz/commands/train_test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ def main(args):
image_names_train.append(image_names[j])
groups_train.append(groups[j])

targets_train = pd.concat(groups_train, 0)
targets_test = pd.concat(groups_test, 0)
targets_train = pd.concat(groups_train, axis=0)
targets_test = pd.concat(groups_test, axis=0)


## if the image-dir is specified, make the image list files
Expand Down

0 comments on commit 25cb2cb

Please sign in to comment.