Skip to content
Snippets Groups Projects
Commit 6a9efe04 authored by Simon Will's avatar Simon Will
Browse files

Fix simple bug in checking a condition

parent e4b5a4be
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ def get_feedback_segments(config_basename):
train_segment_2.append(piece)
elif piece.split == 'dev':
dev.append(piece)
elif piece.split('test'):
elif piece.split == 'test':
test.append(piece)
return smallest_usage_count, train_segment_1, train_segment_2, dev, test
......
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