Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ga27kuh committed Dec 21, 2019
1 parent ea969c4 commit ff35f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_scannet.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def main(args):
# dataset_test = ScannetDataset(args.data_path, get_transform(train=False), data_split='test')

# Choose subset of all validation images
indices = torch.randperm(len(dataset)).tolist()
indices = torch.randperm(len(dataset_valid)).tolist()
dataset_valid = torch.utils.data.Subset(dataset_valid, indices[:-100])

# # split the dataset in train and test set
Expand Down

0 comments on commit ff35f8e

Please sign in to comment.